diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-05-17 15:11:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-05-17 15:11:44 +0000 |
commit | 360d5cf4dc7ef71cd7e4bd549c95cd5a2bff2689 (patch) | |
tree | e82812f3137360ed4a8b77d26c1ff54cb226208e | |
parent | 6f8a7dff35190bc47b003b9378f50f31b230872e (diff) | |
download | glibc-360d5cf4dc7ef71cd7e4bd549c95cd5a2bff2689.tar.gz glibc-360d5cf4dc7ef71cd7e4bd549c95cd5a2bff2689.tar.xz glibc-360d5cf4dc7ef71cd7e4bd549c95cd5a2bff2689.zip |
* sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
pid changed. * include/rpc/key_prot.h: Mark all _internal functions as hidden. * include/rpc/xdr.h: Mark all _internal functions as hidden.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | sunrpc/key_call.c | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 51b8b6436c..ca6fda1385 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-05-17 Jakub Jelinek <jakub@redhat.com> + + * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if + pid changed. + 2006-05-15 Ulrich Drepper <drepper@redhat.com> * include/rpc/pmap_prot.h: Mark all functions as hidden. @@ -14,7 +19,7 @@ * iconv/gconv_int.h: Mark __gconv_lock as hidden. - * include/rpc/key_prot.h: Maek all _internal functions as hidden. + * include/rpc/key_prot.h: Mark all _internal functions as hidden. * include/rpc/auth.h: Mark xdr_des_block_internal and xdr_opaque_auth_internal as hidden. @@ -22,7 +27,7 @@ * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as hidden. - * include/rpc/xdr.h: Make all _internal functions as hidden. + * include/rpc/xdr.h: Mark all _internal functions as hidden. * misc/getusershell.c (okshells): Don't use static initializers, do it dynamically. diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c index 63293aefa5..611c37256c 100644 --- a/sunrpc/key_call.c +++ b/sunrpc/key_call.c @@ -400,6 +400,7 @@ getkeyserv_handle (int vers) /* if pid has changed, destroy client and rebuild */ if (kcp->client != NULL && kcp->pid != __getpid ()) { + auth_destroy (kcp->client->cl_auth); clnt_destroy (kcp->client); kcp->client = NULL; } |