>From 140967f598f545f19f2a607daada39f5c39534b3 Mon Sep 17 00:00:00 2001 From: George Popoff Date: Wed, 11 Oct 2017 14:38:48 +0300 Subject: [PATCH 6/8] add terminating null to kerberos name variable --- wine/include/ntsecapi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wine/include/ntsecapi.h b/wine/include/ntsecapi.h index 3193b10..f7c8a54 100644 --- a/wine/include/ntsecapi.h +++ b/wine/include/ntsecapi.h @@ -349,7 +349,7 @@ typedef enum _POLICY_NOTIFICATION_INFORMATION_CLASS static const WCHAR MICROSOFT_KERBEROS_NAME_W[] = { 'K','e','r','b','e','r','o','s',0 }; #endif #else /* UNICODE */ -#define MICROSOFT_KERBEROS_NAME_A "Kerberos" +static const char MICROSOFT_KERBEROS_NAME_A[] = { 'K','e','r','b','e','r','o','s',0 }; #endif #define KERB_TICKET_FLAGS_reserved 0x80000000 -- 2.10.4