diff options
| author | Nalin Dahyabhai <nalin@fedoraproject.org> | 2010-07-07 20:56:07 +0000 |
|---|---|---|
| committer | Nalin Dahyabhai <nalin@fedoraproject.org> | 2010-07-07 20:56:07 +0000 |
| commit | 45b591b3ebc37a00ae8dc5c9b5f91fcd3eb5ea2a (patch) | |
| tree | faa351d3ca0090c3c1b9f131821e6d2dd1f78f45 | |
| parent | 8b8653b9bef2878f44d5d3af87edff7ba09123a6 (diff) | |
- fix parsing of the pidfile option in the KDC (upstream #6750)krb5-1_8_2-3_fc14
| -rw-r--r-- | krb5-1.8.2-getoptP.patch | 13 | ||||
| -rw-r--r-- | krb5.spec | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/krb5-1.8.2-getoptP.patch b/krb5-1.8.2-getoptP.patch new file mode 100644 index 0000000..76bc035 --- /dev/null +++ b/krb5-1.8.2-getoptP.patch @@ -0,0 +1,13 @@ +Don't try to parse the pidfile name as a port number. RT#6750 + +diff -up krb5/src/kdc/main.c krb5/src/kdc/main.c +--- krb5/src/kdc/main.c 2010-07-07 14:18:30.000000000 -0400 ++++ krb5/src/kdc/main.c 2010-07-07 14:18:32.000000000 -0400 +@@ -728,6 +728,7 @@ initialize_realms(krb5_context kcontext, + break; + case 'P': + pid_file = optarg; ++ break; + case 'p': + if (default_udp_ports) + free(default_udp_ports); @@ -49,6 +49,7 @@ Patch70: krb5-trunk-kpasswd_tcp2.patch Patch71: krb5-1.8-dirsrv-accountlock.patch Patch72: krb5-1.7.1-24139.patch Patch73: krb5-1-8-gss-noexp.patch +Patch74: krb5-1.8.2-getoptP.patch License: MIT URL: http://web.mit.edu/kerberos/www/ @@ -188,6 +189,7 @@ ln -s NOTICE LICENSE %patch71 -p1 -b .dirsrv-accountlock %patch72 -p1 -b .24139 %patch73 -p0 -b .gss-noexp +%patch74 -p1 -b .getoptP gzip doc/*.ps sed -i -e '1s!\[twoside\]!!;s!%\(\\usepackage{hyperref}\)!\1!' doc/api/library.tex @@ -642,6 +644,7 @@ exit 0 * Wed Jul 7 2010 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-3 - tell krb5kdc and kadmind to create pid files, since they can - add logrotate configuration files for krb5kdc and kadmind (#462658) +- fix parsing of the pidfile option in the KDC (upstream #6750) * Mon Jun 21 2010 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-2 - libgssapi: pull in patch from svn to stop returning context-expired errors |
