diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-12-19 12:03:18 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-12-19 12:03:18 +0000 |
commit | 5de518dcc84af0f9aa5dcff0f6b237661326b704 (patch) | |
tree | e1b9eb8c133253bec9549b990e0a771cf0ebacd8 | |
parent | 6a660d870211e75ce64be7ce66fa433e419afc84 (diff) | |
download | busybox-w32-5de518dcc84af0f9aa5dcff0f6b237661326b704.tar.gz busybox-w32-5de518dcc84af0f9aa5dcff0f6b237661326b704.tar.bz2 busybox-w32-5de518dcc84af0f9aa5dcff0f6b237661326b704.zip |
Allow escaped 8 bit characters in bb_opt_complementaly
git-svn-id: svn://busybox.net/trunk/busybox@8131 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | libbb/getopt_ulflags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/getopt_ulflags.c b/libbb/getopt_ulflags.c index 371fdab26..42e83c413 100644 --- a/libbb/getopt_ulflags.c +++ b/libbb/getopt_ulflags.c | |||
@@ -83,7 +83,7 @@ bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...) | |||
83 | { | 83 | { |
84 | unsigned long flags = 0; | 84 | unsigned long flags = 0; |
85 | int c = 0; | 85 | int c = 0; |
86 | const char *s; | 86 | const unsigned char *s; |
87 | t_complementaly *complementaly; | 87 | t_complementaly *complementaly; |
88 | t_complementaly *on_off; | 88 | t_complementaly *on_off; |
89 | va_list p; | 89 | va_list p; |