From 34bc0e188369af89f4e1680edf9766c568b8a5a8 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 5 Jun 2007 12:58:18 +0000 Subject: r23356: We missed to add the 'c' character to the list of valid ones for shell escaping. I hate this kind of bugs more than how Jeremy hates off by ones :( Simo. (This used to be commit 42d846ff870f93b7eaca316f04c12104330bbca8) --- source3/lib/util_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 1439ac6fcd..52cdbfcedd 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -2622,7 +2622,7 @@ size_t utf16_len_n(const void *src, size_t n) of characters. UNIX charset format. *******************************************************************/ -#define INCLUDE_LIST "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabdefghijklmnopqrstuvwxyz_/ \t.," +#define INCLUDE_LIST "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_/ \t.," #define INSIDE_DQUOTE_LIST "$`\n\"\\" char *escape_shell_string(const char *src) -- cgit