Module: sip-router Branch: master Commit: c54925a1e06d1817e7cdc32a2c0f1d78a442a66e URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c54925a1e06d1817e7cdc32a2c0f1d78a442a66e
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: Thu Aug 18 10:31:43 2011 +0200 srdb1: fixed c&p error related to DB_CAP_INSERT_UPDATE --- lib/srdb1/db.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/srdb1/db.c b/lib/srdb1/db.c index 443e03d..b50b156 100644 --- a/lib/srdb1/db.c +++ b/lib/srdb1/db.c @@ -137,7 +137,7 @@ int db_check_api(db_func_t* dbf, char *mname) } if (dbf->insert_delayed) { - dbf->cap |= DB_CAP_INSERT_UPDATE; + dbf->cap |= DB_CAP_INSERT_DELAYED; } if (dbf->affected_rows) { _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
