diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-05-31 07:28:04 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-05-31 07:28:04 +0000 |
commit | abf69d676ffd2dacee5fc141a023c669ba87e08a (patch) | |
tree | 0e4097a492a84beb5ea4b571ccbce12f5a2cb48d /package/busybox/busybox-1.10.2-semicolon.patch | |
parent | 00141805cb4594176704b9b6a57e3faf31d6f546 (diff) |
busybox: 1.10.2 patches
Diffstat (limited to 'package/busybox/busybox-1.10.2-semicolon.patch')
-rw-r--r-- | package/busybox/busybox-1.10.2-semicolon.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.10.2-semicolon.patch b/package/busybox/busybox-1.10.2-semicolon.patch new file mode 100644 index 000000000..852bde1d7 --- /dev/null +++ b/package/busybox/busybox-1.10.2-semicolon.patch @@ -0,0 +1,22 @@ +--- busybox-1.10.2/networking/interface.c Sat Apr 19 05:50:27 2008 ++++ busybox-1.10.2-semicolon/networking/interface.c Thu May 15 21:40:04 2008 +@@ -223,7 +223,7 @@ + char *pos; + unsigned int i; + +- if (!buff); ++ if (!buff) + buff = xmalloc(sizeof(struct sockaddr) * 3 + 1); + pos = buff; + for (i = 0; i < sizeof(struct sockaddr); i++) { +--- busybox-1.10.2/networking/isrv_identd.c Sat Apr 19 05:50:27 2008 ++++ busybox-1.10.2-semicolon/networking/isrv_identd.c Thu May 15 21:40:04 2008 +@@ -113,7 +113,7 @@ + strncpy(bogouser, argv[optind], sizeof(bogouser)); + + /* Daemonize if no -f and no -i and no -w */ +- if (!(opt & OPT_fiw)); ++ if (!(opt & OPT_fiw)) + bb_daemonize_or_rexec(0, argv); + + /* Where to log in inetd modes? "Classic" inetd |