diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-05-06 15:05:46 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-05-06 15:05:46 +0000 |
commit | 399643b49e9564eead88548fa78e9bf259d8b3c3 (patch) | |
tree | e56d0a96160f1cdc7ab74c1b6bcc62bba4d95c48 /src/datastore/plugin_datastore_postgres.c | |
parent | b9362adab3bced778d54c4c83d6fdd9305ce52c7 (diff) |
fix
Diffstat (limited to 'src/datastore/plugin_datastore_postgres.c')
-rw-r--r-- | src/datastore/plugin_datastore_postgres.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/datastore/plugin_datastore_postgres.c b/src/datastore/plugin_datastore_postgres.c index cb077f06a8..30a6c20da8 100644 --- a/src/datastore/plugin_datastore_postgres.c +++ b/src/datastore/plugin_datastore_postgres.c @@ -525,7 +525,8 @@ postgres_plugin_put (void *cls, static void process_result (struct Plugin *plugin, PluginDatumProcessor proc, void *proc_cls, - PGresult *res) + PGresult *res, + int line) { int iret; enum GNUNET_BLOCK_Type type; @@ -541,7 +542,7 @@ process_result (struct Plugin *plugin, PGRES_TUPLES_OK, "PQexecPrepared", "select", - __LINE__)) + line)) { #if DEBUG_POSTGRES GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, @@ -800,7 +801,7 @@ postgres_plugin_get_key (void *cls, paramFormats, 1); process_result (plugin, proc, proc_cls, - ret); + ret, __LINE__); } @@ -839,7 +840,7 @@ postgres_plugin_get_zero_anonymity (void *cls, paramFormats, 1); process_result (plugin, proc, proc_cls, - ret); + ret, __LINE__); } @@ -961,7 +962,7 @@ postgres_plugin_get_replication (void *cls, NULL, NULL, NULL, 1); process_result (plugin, &repl_proc, &rc, - ret); + ret, __LINE__); } @@ -994,7 +995,7 @@ postgres_plugin_get_expiration (void *cls, 1); process_result (plugin, proc, proc_cls, - ret); + ret, __LINE__); } |