From 15a2537a79ea242ed3d96c5208d567503430cfc8 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Wed, 13 Apr 2016 19:34:00 -0500 Subject: [PATCH] lib/ntlm: double quote backslash in error tables The error string missing @ or \ in name must have the backslash double quoted as missing @ or \\\\ in name because of how compile_et parses the input and generates its output. Otherwise, when compiling the generated ntlm_err.c a warning will be produced because of invalid quoting of a space. Change-Id: I994d3eb896098914702e418a0ef5cad783d16a5a --- lib/ntlm/ntlm_err.et | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ntlm/ntlm_err.et b/lib/ntlm/ntlm_err.et index a202e954c..fd39aa31f 100644 --- a/lib/ntlm/ntlm_err.et +++ b/lib/ntlm/ntlm_err.et @@ -14,7 +14,7 @@ error_code RAND, "Random generator failed" error_code AUTH, "NTLM authentication failed" error_code TIME_SKEW, "Client time skewed to server" error_code OEM, "Client set OEM string" -error_code MISSING_NAME_SEPARATOR, "missing @ or \\ in name" +error_code MISSING_NAME_SEPARATOR, "missing @ or \\\\ in name" error_code MISSING_BUFFER, "missing expected buffer" error_code INVALID_APOP, "Invalid APOP response" error_code INVALID_CRAM_MD5, "Invalid CRAM-MD5 response"