Have claim.cgi look in $STATE/tokens.db again

This commit is contained in:
Neale Pickett 2012-05-30 18:10:04 -06:00
parent 6326001669
commit 1e49d8114d
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,8 @@ main(int argc, char *argv[])
if (p) p += 1;
/* Now we can check to see if it's valid */
if (! anchored_search(package_path("%s/tokens.txt", category), token, 0)) {
if ((! anchored_search(package_path("%s/tokens.txt", category), token, 0)) &&
(! anchored_search(state_path("tokens.db"), token, 0))) {
cgi_result(409, "No such token", "<p>This token has not been issued.</p>");
}