diff options
author | Eduardo Chappa <chappa@washington.edu> | 2013-06-03 10:30:56 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2013-06-03 10:30:56 -0600 |
commit | e4b35478c8b3ce7352a74b2fea0e067f068daf18 (patch) | |
tree | 0b8a97debddc8210c6696c252c26f03703b606fa /web | |
parent | a46157ba61f2c65f88b42abb31db60c4a714f87b (diff) | |
download | alpine-e4b35478c8b3ce7352a74b2fea0e067f068daf18.tar.xz |
* Changes to configure.ac to add -lkrb5 to the link
* Changes to avoud errors in compilation when -Wformat-security is used
* Remove RFC files from source code
Diffstat (limited to 'web')
-rw-r--r-- | web/src/alpined.d/stubs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/alpined.d/stubs.c b/web/src/alpined.d/stubs.c index 299c7c81..10b79914 100644 --- a/web/src/alpined.d/stubs.c +++ b/web/src/alpined.d/stubs.c @@ -105,7 +105,7 @@ panic(message) { in_panic = 1; - syslog(LOG_ERR, message); /* may not work, but try */ + syslog(LOG_ERR, "%s", message); /* may not work, but try */ #if 0 if(ps_global) @@ -147,7 +147,7 @@ exceptional_exit(message, ev) char *message; int ev; { - syslog(LOG_ALERT, message); + syslog(LOG_ALERT, "%s", message); exit(ev); } |