aboutsummaryrefslogtreecommitdiff
path: root/src/psycstore
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2016-09-30 20:54:52 +0000
committerDaniel Golle <daniel@makrotopia.org>2016-09-30 20:54:52 +0000
commitcbd6dae60208189651500e61dc0810dbcc148c65 (patch)
tree4bc2383d8ef4aac20919669f262483ee947e5028 /src/psycstore
parente37772c47c60fd35de5858242d0f2109aabcd9d8 (diff)
downloadgnunet-cbd6dae60208189651500e61dc0810dbcc148c65.tar.gz
gnunet-cbd6dae60208189651500e61dc0810dbcc148c65.zip
psycstore: fix puckish copy&paste in postgres plugin
Diffstat (limited to 'src/psycstore')
-rw-r--r--src/psycstore/plugin_psycstore_postgres.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/psycstore/plugin_psycstore_postgres.c b/src/psycstore/plugin_psycstore_postgres.c
index 8db3c1a61..1111da895 100644
--- a/src/psycstore/plugin_psycstore_postgres.c
+++ b/src/psycstore/plugin_psycstore_postgres.c
@@ -667,12 +667,12 @@ postgres_membership_store (void *cls,
667 GNUNET_PQ_query_param_end 667 GNUNET_PQ_query_param_end
668 }; 668 };
669 669
670 ret = GNUNET_PQ_exec_prepared (plugin->dbh, "insert_slave_key", params); 670 ret = GNUNET_PQ_exec_prepared (plugin->dbh, "insert_membership", params);
671 if (GNUNET_OK != 671 if (GNUNET_OK !=
672 GNUNET_POSTGRES_check_result (plugin->dbh, 672 GNUNET_POSTGRES_check_result (plugin->dbh,
673 ret, 673 ret,
674 PGRES_COMMAND_OK, 674 PGRES_COMMAND_OK,
675 "PQexecPrepared", "insert_slave_key")) 675 "PQexecPrepared", "insert_membership"))
676 { 676 {
677 return GNUNET_SYSERR; 677 return GNUNET_SYSERR;
678 } 678 }