Module: sip-router
Branch: janakj/postgres
Commit: 4af0aa101d874f48d4f1f28681d060de4740361a
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4af0aa1…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Thu Dec 4 18:12:33 2008 +0000
- fix a bunch of doxygen errors (mostly in modules, some in the core)
- credits belongs to Frederick Bullik, frederick dot bullik at 1und1 dot de
git-svn-id:
https://openser.svn.sourceforge.net/svnroot/openser/trunk@5299
689a6050-402a-0410-94f2-e92a70836424
---
modules/db_postgres/km_dbase.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/modules/db_postgres/km_dbase.c b/modules/db_postgres/km_dbase.c
index 4ef3343..0f88315 100644
--- a/modules/db_postgres/km_dbase.c
+++ b/modules/db_postgres/km_dbase.c
@@ -107,7 +107,7 @@ void db_postgres_close(db_con_t* _h)
/*!
* \brief Submit_query, run a query
- * \param _h database connection
+ * \param _con database connection
* \param _s query string
* \return 0 on success, negative on failure
*/
@@ -296,7 +296,7 @@ int db_postgres_fetch_result(const db_con_t* _con, db_res_t** _res,
const int nr
/*!
* \brief Free database and any old query results
- * \param _h database connection
+ * \param _con database connection
*/
static void free_query(const db_con_t* _con)
{
@@ -332,7 +332,7 @@ int db_postgres_free_result(db_con_t* _con, db_res_t* _r)
/*!
* \brief Query table for specified rows
- * \param _con structure representing database connection
+ * \param _h structure representing database connection
* \param _k key names
* \param _op operators
* \param _v values of the keys that must match
@@ -340,6 +340,7 @@ int db_postgres_free_result(db_con_t* _con, db_res_t* _r)
* \param _n nmber of key=values pairs to compare
* \param _nc number of columns to return
* \param _o order by the specified column
+ * \param _r result set
* \return 0 on success, negative on failure
*/
int db_postgres_query(const db_con_t* _h, const db_key_t* _k, const db_op_t* _op,