From d6f037f7625eacf39af6e2f114be16188d75230a Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Thu, 31 Jan 2013 19:27:29 -0700 Subject: [PATCH] If points are already claimed, mention the answer is correct. --- packages/00common/src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/00common/src/common.c b/packages/00common/src/common.c index 67e0703..cc2bea0 100644 --- a/packages/00common/src/common.c +++ b/packages/00common/src/common.c @@ -237,7 +237,7 @@ cgi_fail(int err) case ERR_NOTEAM: cgi_result(409, "No such team", "

There is no team with that hash.

"); case ERR_CLAIMED: - cgi_result(409, "Already claimed", "

Your team has already claimed these points.

"); + cgi_result(409, "Already claimed", "

That is the correct answer, but your team has already claimed these points.

"); default: cgi_result(409, "Failure", "

Failure code: %d

", err); }