summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.13.0-getopt.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-11-13 16:32:56 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-11-13 16:32:56 +0000
commit767577e50498061f6adb28dd91f791afae25401c (patch)
tree7d74dd3585035d06db87462bc1bd256f6b3e090b /package/busybox/busybox-1.13.0-getopt.patch
parentbe4f829719800b261f76ce5d7b492cf4097fbe27 (diff)
downloadbuildroot-novena-767577e50498061f6adb28dd91f791afae25401c.tar.gz
buildroot-novena-767577e50498061f6adb28dd91f791afae25401c.zip
busybox: add 1.13.x, mark older as deprecated
Diffstat (limited to 'package/busybox/busybox-1.13.0-getopt.patch')
-rw-r--r--package/busybox/busybox-1.13.0-getopt.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.13.0-getopt.patch b/package/busybox/busybox-1.13.0-getopt.patch
new file mode 100644
index 000000000..489c75b75
--- /dev/null
+++ b/package/busybox/busybox-1.13.0-getopt.patch
@@ -0,0 +1,22 @@
+--- busybox-1.13.0/libbb/getopt32.c Thu Oct 30 08:41:34 2008
++++ busybox-1.13.0-getopt/libbb/getopt32.c Wed Nov 12 23:04:01 2008
+@@ -515,6 +515,19 @@
+ }
+ }
+
++ /* In case getopt32 was already called:
++ * reset the libc getopt() function, which keeps internal state.
++ * run_nofork_applet_prime() does this, but we might end up here
++ * also via gunzip_main() -> gzip_main(). Play safe.
++ */
++#ifdef __GLIBC__
++ optind = 0;
++#else /* BSD style */
++ optind = 1;
++ /* optreset = 1; */
++#endif
++ /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */
++
+ pargv = NULL;
+
+ /* Note: just "getopt() <= 0" will not work well for