code before decl
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15699 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
8372d9c2bf
commit
34c6f19bb4
|
@ -1331,6 +1331,7 @@ SWITCH_DECLARE(void) switch_cache_db_status(switch_stream_handle_t *stream)
|
||||||
key = (char *) var;
|
key = (char *) var;
|
||||||
|
|
||||||
if ((dbh = (switch_cache_db_handle_t *) val)) {
|
if ((dbh = (switch_cache_db_handle_t *) val)) {
|
||||||
|
char *needle = "pass=\"";
|
||||||
time_t diff = 0;
|
time_t diff = 0;
|
||||||
|
|
||||||
diff = now - dbh->last_used;
|
diff = now - dbh->last_used;
|
||||||
|
@ -1344,7 +1345,6 @@ SWITCH_DECLARE(void) switch_cache_db_status(switch_stream_handle_t *stream)
|
||||||
|
|
||||||
/* sanitize password */
|
/* sanitize password */
|
||||||
memset(cleankey_str, 0, sizeof(cleankey_str));
|
memset(cleankey_str, 0, sizeof(cleankey_str));
|
||||||
char *needle = "pass=\"";
|
|
||||||
pos1 = strstr(key, needle) + strlen(needle);
|
pos1 = strstr(key, needle) + strlen(needle);
|
||||||
pos2 = strstr(pos1, "\"");
|
pos2 = strstr(pos1, "\"");
|
||||||
strncpy(cleankey_str, key, pos1-key);
|
strncpy(cleankey_str, key, pos1-key);
|
||||||
|
|
Loading…
Reference in New Issue