Module: kamailio Branch: master Commit: 459346a86e276f2507d030b34cd277b3178078af URL: https://github.com/kamailio/kamailio/commit/459346a86e276f2507d030b34cd277b3178078af
Author: Olle E. Johansson <[email protected]> Committer: Olle E. Johansson <[email protected]> Date: 2016-04-21T22:13:50+02:00 auth_db Add note about version number synchronization with uri_db --- Modified: modules/auth_db/auth_db_mod.c --- Diff: https://github.com/kamailio/kamailio/commit/459346a86e276f2507d030b34cd277b3178078af.diff Patch: https://github.com/kamailio/kamailio/commit/459346a86e276f2507d030b34cd277b3178078af.patch --- diff --git a/modules/auth_db/auth_db_mod.c b/modules/auth_db/auth_db_mod.c index 3f22f4f..4d7267b 100644 --- a/modules/auth_db/auth_db_mod.c +++ b/modules/auth_db/auth_db_mod.c @@ -36,6 +36,7 @@ MODULE_VERSION +/* Note: If this is changed, please also change version in the uri_db module */ #define TABLE_VERSION 6 /* @@ -98,7 +99,7 @@ static cmd_export_t cmds[] = { {"www_authenticate", (cmd_function)www_authenticate, 2, auth_fixup, 0, REQUEST_ROUTE}, {"www_authenticate", (cmd_function)www_authenticate2, 3, auth_fixup, 0, -REQUEST_ROUTE}, + REQUEST_ROUTE}, {"proxy_authorize", (cmd_function)proxy_authenticate, 2, auth_fixup, 0, REQUEST_ROUTE}, {"proxy_authenticate", (cmd_function)proxy_authenticate, 2, auth_fixup, 0, @@ -363,21 +364,24 @@ int parse_aaa_pvs(char *definition, pv_elem_t **pv_def, int *cnt) pve->text.s = sep + 1; pve->text.len = end - pve->text.s; trim(&pve->text); - if (pve->text.len == 0) + if (pve->text.len == 0) { goto parse_error; + } /* set pv spec */ pv.s = p; pv.len = sep - p; trim(&pv); - if (pv.len == 0) + if (pv.len == 0) { goto parse_error; + } } else { /* no pv, only column name */ pve->text.s = p; pve->text.len = end - pve->text.s; trim(&pve->text); - if (pve->text.len == 0) + if (pve->text.len == 0) { goto parse_error; + } /* create an avp definition for the spec parser */ pv.s = (char*)pkg_malloc(pve->text.len + 7); if (pv.s == NULL) { @@ -403,10 +407,12 @@ int parse_aaa_pvs(char *definition, pv_elem_t **pv_def, int *cnt) pve = 0; /* go to the end */ p = end; - if (*p==';') + if (*p==';') { p++; - if (*p==0) + } + if (*p==0) { break; + } } return 0; _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
