commit 299b4422fde37deb3d0bf3d8d63c0f790893c9ed parent 77f74fbef5bd6a50f68e61b1642f1701a926abf3 Author: Florian Dold <florian.dold@gmail.com> Date: Thu, 1 Feb 2018 03:46:21 +0100 proper return code for insert Diffstat:
| M | src/backenddb/plugin_merchantdb_postgres.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c @@ -2991,7 +2991,7 @@ postgres_enable_tip_reserve (void *cls, if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS != qs) { /* UUID already exists, we are done! */ - return qs; + return GNUNET_DB_STATUS_SUCCESS_NO_RESULTS; } }