From: Russ Allbery Date: Tue, 1 Dec 2009 00:53:57 +0000 (-0800) Subject: Remove incorrect return call in shutdown_icl() introduced by b7198421 X-Git-Tag: debian/1.4.11+dfsg-6~1 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=8598f0fbeb27552df0b5244a66159058cd7f0ca1;p=packages%2Fo%2Fopenafs.git Remove incorrect return call in shutdown_icl() introduced by b7198421 --- diff --git a/debian/changelog b/debian/changelog index fc086c9f5..e841526f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ openafs (1.4.11+dfsg-6) unstable; urgency=low - [2d6c0390] Add array bounds checking in h_Enumerate - [70f6a328] Check for (hostFlags & HOSTDELETED) after h_Lock_r - [c7a59397] Avoid IHandle leak when failing to attach volume + * Remove incorrect return call in shutdown_icl() introduced by b7198421. * Do not attempt to build the kernel module with DKMS if the appropriate Linux headers aren't installed. Based on code from the common DKMS postinst script (which we'll just use once it's reliably available). diff --git a/src/afs/afs_call.c b/src/afs/afs_call.c index 0b6011d55..5308d11b5 100644 --- a/src/afs/afs_call.c +++ b/src/afs/afs_call.c @@ -3448,5 +3448,4 @@ shutdown_icl(void) afs_icl_LogFree(logp); afs_icl_LogFree(logp); } - return 0; }