From 471b5c4c8363c2126d555f83612c4d22ca65a12d Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Fri, 29 Apr 2005 20:57:19 +0000 Subject: [PATCH] STABLE14-windows-fix-kfw-dependency-20050429 if KFW was not installed, pioctl calls could crash (cherry picked from commit 2a46337042e9aee6ddb3152f8edd892db7ebdeb4) --- src/sys/pioctl_nt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sys/pioctl_nt.c b/src/sys/pioctl_nt.c index 05c150999..74ab76279 100644 --- a/src/sys/pioctl_nt.c +++ b/src/sys/pioctl_nt.c @@ -246,8 +246,9 @@ IsKrb5Available() hKrb5DLL = 0; return FALSE; } + return TRUE; } - return TRUE; + return FALSE; } static BOOL -- 2.39.5