1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

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 42d846ff87)
This commit is contained in:
Simo Sorce 2007-06-05 12:58:18 +00:00 committed by Gerald (Jerry) Carter
parent 454de808a2
commit 34bc0e1883

View File

@ -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)