aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_postgres_lib.h2
-rw-r--r--src/postgres/postgres.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_postgres_lib.h b/src/include/gnunet_postgres_lib.h
index 12c0110b5..559793daf 100644
--- a/src/include/gnunet_postgres_lib.h
+++ b/src/include/gnunet_postgres_lib.h
@@ -101,7 +101,7 @@ GNUNET_POSTGRES_exec_ (PGconn *dbh, const char *sql, const char *filename, int l
101 * @param dbh database handle 101 * @param dbh database handle
102 * @param name name for the prepared SQL statement 102 * @param name name for the prepared SQL statement
103 * @param sql SQL code to prepare 103 * @param sql SQL code to prepare
104 * @param nparams number of parameters in sql 104 * @param nparms number of parameters in sql
105 * @param filename filename for error reporting 105 * @param filename filename for error reporting
106 * @param line code line for error reporting 106 * @param line code line for error reporting
107 * @return GNUNET_OK on success 107 * @return GNUNET_OK on success
diff --git a/src/postgres/postgres.c b/src/postgres/postgres.c
index 40bda2436..100145289 100644
--- a/src/postgres/postgres.c
+++ b/src/postgres/postgres.c
@@ -96,7 +96,7 @@ GNUNET_POSTGRES_exec_ (PGconn * dbh, const char *sql, const char *filename,
96 * @param dbh database handle 96 * @param dbh database handle
97 * @param name name for the prepared SQL statement 97 * @param name name for the prepared SQL statement
98 * @param sql SQL code to prepare 98 * @param sql SQL code to prepare
99 * @param nparams number of parameters in sql 99 * @param nparms number of parameters in sql
100 * @param filename filename for error reporting 100 * @param filename filename for error reporting
101 * @param line code line for error reporting 101 * @param line code line for error reporting
102 * @return GNUNET_OK on success 102 * @return GNUNET_OK on success
@@ -158,7 +158,7 @@ GNUNET_POSTGRES_connect (const struct GNUNET_CONFIGURATION_Handle * cfg,
158 * Delete the row identified by the given rowid (qid 158 * Delete the row identified by the given rowid (qid
159 * in postgres). 159 * in postgres).
160 * 160 *
161 * @param database handle 161 * @param dbh database handle
162 * @param stmt name of the prepared statement 162 * @param stmt name of the prepared statement
163 * @param rowid which row to delete 163 * @param rowid which row to delete
164 * @return GNUNET_OK on success 164 * @return GNUNET_OK on success