summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2007-06-05 12:58:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:09 -0500
commit34bc0e188369af89f4e1680edf9766c568b8a5a8 (patch)
tree9ab435046a6fa6a5f3e2039b02552fdb79949eb3 /source3
parent454de808a2a56f106c0d211c7da323829f14942d (diff)
downloadsamba-34bc0e188369af89f4e1680edf9766c568b8a5a8.tar.gz
samba-34bc0e188369af89f4e1680edf9766c568b8a5a8.tar.bz2
samba-34bc0e188369af89f4e1680edf9766c568b8a5a8.zip
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)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
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)