diff options
author | Kozlov Dmitry <dima@server> | 2010-12-27 15:25:38 +0300 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-12-27 15:25:38 +0300 |
commit | 2b34d862111f1fd84cdb9d744ac34c1c933f34da (patch) | |
tree | 1e758ddc96689793e1c4c1b55cf3671bb05f2884 /accel-pptpd/logs/log_pgsql.c | |
parent | ccaeb500e38d82c37568292d7850b66691793626 (diff) | |
download | accel-ppp-2b34d862111f1fd84cdb9d744ac34c1c933f34da.tar.gz accel-ppp-2b34d862111f1fd84cdb9d744ac34c1c933f34da.zip |
implemented partial config reload via SIGUSR1 signal or cli
Diffstat (limited to 'accel-pptpd/logs/log_pgsql.c')
-rw-r--r-- | accel-pptpd/logs/log_pgsql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accel-pptpd/logs/log_pgsql.c b/accel-pptpd/logs/log_pgsql.c index fcaa193c..af67e0b0 100644 --- a/accel-pptpd/logs/log_pgsql.c +++ b/accel-pptpd/logs/log_pgsql.c @@ -287,7 +287,7 @@ static void __init init(void) opt = conf_get_opt("log-pgsql", "conninfo"); if (!opt) return; - conf_conninfo = opt; + conf_conninfo = _strdup(opt); opt = conf_get_opt("log-pgsql", "connect-inteval"); if (opt && atoi(opt) > 0) @@ -295,7 +295,7 @@ static void __init init(void) opt = conf_get_opt("log-pgsql", "log-query"); if (opt) - conf_query = opt; + conf_query = _strdup(opt); else { opt = conf_get_opt("log-pgsql", "log-table"); if (!opt || strlen(opt) > 32) |