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 /pith | |
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 'pith')
-rw-r--r-- | pith/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pith/ldap.c b/pith/ldap.c index d40641e4..a007873a 100644 --- a/pith/ldap.c +++ b/pith/ldap.c @@ -778,7 +778,7 @@ try_password_again: */ switch(args){ case 0: - snprintf(filter, sizeof(filter), filt_format); + snprintf(filter, sizeof(filter), "%s", filt_format); break; case 1: snprintf(filter, sizeof(filter), filt_format, scp); |