From: Jeffrey Altman Date: Sun, 14 Nov 2010 05:00:22 +0000 (-0500) Subject: Windows: ktc_ListTokensEx stub assignment error X-Git-Tag: upstream/1.8.0_pre1^2~4526 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=9266a08d8c77376c95085b16af492f9b055873a4;p=packages%2Fo%2Fopenafs.git Windows: ktc_ListTokensEx stub assignment error Improper use of == instead of the intended = within ktc_ListTokensEx. Change-Id: Id8b49ef91d83000c0685a37bab4a2ca44fc037b4 Reviewed-on: http://gerrit.openafs.org/3304 Tested-by: BuildBot Reviewed-by: Simon Wilkinson Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- diff --git a/src/auth/ktc_nt.c b/src/auth/ktc_nt.c index 0342f973a..bf7170a9b 100644 --- a/src/auth/ktc_nt.c +++ b/src/auth/ktc_nt.c @@ -983,7 +983,7 @@ ForgetOneLocalToken(struct ktc_principal *aserver) int ktc_ListTokensEx(int prevIndex, int *newIndex, char **cellName) { - *cellName == NULL; + *cellName = NULL; return KTC_PIOCTLFAIL; }