summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2013-06-03 10:30:56 -0600
committerEduardo Chappa <chappa@washington.edu>2013-06-03 10:30:56 -0600
commite4b35478c8b3ce7352a74b2fea0e067f068daf18 (patch)
tree0b8a97debddc8210c6696c252c26f03703b606fa /web
parenta46157ba61f2c65f88b42abb31db60c4a714f87b (diff)
downloadalpine-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/alpined.d/stubs.c b/web/src/alpined.d/stubs.c
index 299c7c8..10b7991 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);
}