commit 9d894e72fc04756ec21b6e8da734e60f4252e6fa
parent 180c7ba97f74acece4fb321d249f06c2abae4f73
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 6 Jul 2026 10:57:47 +0200
-improve message if client existed
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/challenger/challenger-admin.c b/src/challenger/challenger-admin.c
@@ -207,7 +207,7 @@ run (void *cls,
(unsigned long long) row_id);
else
fprintf (stdout,
- "Client added. Client ID is: %llu\n",
+ "Client already exists with ID: %llu\n",
(unsigned long long) row_id);
goto cleanup;
}
@@ -224,7 +224,7 @@ run (void *cls,
goto cleanup;
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Client with this CLIENT_REDIRECT_URI already exists.\n");
+ "Client with this CLIENT_REDIRECT_URI and different secret already exists.\n");
global_ret = EXIT_FAILURE;
goto cleanup;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT: