fli4l
  1. fli4l

busybox

Public
AuthorCommitMessageCommit dateIssues
Eric AndersenEric Andersen
97310d02539Brian Pomerantz writes:I've noticed a bug in the "autowidth" feature more, and is probably in others. The call to the function get_terminal_width_height() passes in a file descriptor but that file descriptor is never used, instead the ioctl() is called with 0. In more_main() the call to get_terminal_width_height() passes 0 as the file descriptor instead of fileno(cin). This isn't a problem when you more a file (e....
Robert GrieblRobert Griebl
6bb80870b83Some corrections from vodz:- Make -u/-l mutually exclusive - Minor size reduction
Robert GrieblRobert Griebl
c8685ead577The utc variable was not modified according to the -u/-l command lineparameters.
Eric AndersenEric Andersen
bfb51574ae1Tito noticed a printf that should have been a bb_error_msg.
Manuel Novoa IIIManuel Novoa III
539fa95e0d3Oops..got a bit to aggressive with size optimization and global replace. :-(
Eric AndersenEric Andersen
1daa0c60971As noted in a patch from Kendrick Hamilton, rmmod was onlyhalf way converted, and still used the old delete_module(), call rather than a syscall, in one spot.
Eric AndersenEric Andersen
9e458f5b7a3Add missing ELFCLASSM for m68k
Eric AndersenEric Andersen
16451a07b44Only use R_68K_GOTOFF if it is defined
Eric AndersenEric Andersen
06d4ec2a4b9Fix broken arg parsing (was not passing pointer to items so p, argc, and argvwere only modified locally). Fix error reporting to properly describe why ioctls fail.
Eric AndersenEric Andersen
16767e23772Patch from vodz to fix the dynamic vars patch, which I should not have checked in. Vladimir writes:Your patch have many problem. 1. You always added + time(). This cannot reset RANDOM=value for debuging with replay sequential. 2. Hmm. I examine bash 2.04 source. This pseudorandom generator use low bits of counter value. You use high bits. This make bad pseudorandom values after have 0-value. For example, if + time() do remove, your generator always return 0 after first generate 0. 3. Memory ...
Eric AndersenEric Andersen
ca65ca7d450Oops. Using the wrong variable was a rather stupidthing for me to do.
Eric AndersenEric Andersen
c7bda1ce659Remove trailing whitespace. Update copyright to include 2004.
Manuel Novoa IIIManuel Novoa III
8854004b410I redid route.
Eric AndersenEric Andersen
63a1a7aaa52Update docs for start_stop_daemon to match reality. Updatethe reality a bit to better match debian behavior.
Eric AndersenEric Andersen
55c704c119cFix some doc generation problems
Eric AndersenEric Andersen
ed43806c3b3Hideki IWAMOTO writes:Current `tr' implementation has a problem, if `plain char' is signed. [current cvs version] >echo a | _install/usr/bin/tr '\0' '\377' Segmentation fault (core dumped) [patched version] >echo a | _install/usr/bin/tr '\0' '\377' a
Eric AndersenEric Andersen
d20d37559f6Fix some goofy formatting
Eric AndersenEric Andersen
3cac0c7d7ffAdd prototypes for safe_strtol and friends
Eric AndersenEric Andersen
08f59e32c18Fix awk entry, which was not showing up in BusyBox.txt for some reason
Eric AndersenEric Andersen
ef02f82bcf6Paul Mundt, lethal at linux-sh dot org writes:Here's a follow-up replacement to the patch I sent earlier, this adjusts some of the semantics of the dynamic variable setting. Namely, dynamic vars can hook a set handler (which RANDOM uses to adjust the seed). They'll only lose their dynamic status if they're unset. I've used the same approach that bash does to come up with the random number, mostly just for consistency. For example: $ ech...
Glenn L McGrathGlenn L McGrath
b7b3bda3ba0Patch from Thomas Frohlich to fix an option ordering bug of mine.
Glenn L McGrathGlenn L McGrath
c66ebe4200aWhen displaying the size in 1kB blocks round up if an odd number ofblocks
Glenn L McGrathGlenn L McGrath
44c0e17dbe0Patch by Seth W.Klein, the -l switch was reversed
Manuel Novoa IIIManuel Novoa III
7d0c51919ceIn spite of the feature freeze, check in a complete rework of route whichfixes some bugs, adds some error checking, and removes _lots_ of bloat. Text size on i386... old new ipv6 5425 3523 no ipv6 3143 2193
Eric AndersenEric Andersen
2715fa147a3Note that /proc must be mounted for filesystem type autodetectionto work. Without /proc mounted, one must explicitly specify the type of every filesystem being mounted.
Eric AndersenEric Andersen
21d308601ebDavid Anders (prpplague) submitted this patch to allow login to workwhen the device nodes are symlinks on a read only file system.
Manuel Novoa IIIManuel Novoa III
1117c5281b4Fix broken sort order flags.
Manuel Novoa IIIManuel Novoa III
948d4907a0dMy bug. :-(
Eric AndersenEric Andersen
2479445562aFix/eliminate use of atol
Glenn L McGrathGlenn L McGrath
c4db0833a6cPatch from Matt Kraai to fix debian bug number 231994.There was an extra blank line preceding the first directory.
Glenn L McGrathGlenn L McGrath
a89bbfb2579Woops, how did that get in there
Manuel Novoa IIIManuel Novoa III
adab517f76bDon't build these support functions for uClibc, as it always suppliesversions.
Glenn L McGrathGlenn L McGrath
db6ee81c994Patch from John Powers, adds multicast (rfc2090) and timeout (rfc2349)options
Glenn L McGrathGlenn L McGrath
ec58bce3638Patch from duane no-name, optionally request additional items
Glenn L McGrathGlenn L McGrath
3f79300e37dPatch by Andrew Victor,In arpping.h, fix structure alignment of "struct arpMsg". GCC can insert padding in the structure which causes udhcpd to send an invalid ARP packet on the network. It will then not receive a valid reply, which can cause it to assign an IP address that's already in use on the network. (With kernels before 2.4.20, the "struct ethhdr" in linux/if_ether.h wasn't marked as packed. This is also an ...
Glenn L McGrathGlenn L McGrath
0226596dcb2Fix a typo, patch by Andrew Victor
Glenn L McGrathGlenn L McGrath
1bdc5d87f4ePatch from Tony J.White to allow paths to be configured
Glenn L McGrathGlenn L McGrath
bd5d84ddca8Patch by Denis Vlasenko to add forground support.
Glenn L McGrathGlenn L McGrath
fbe984e1c9bFix debugging output, patch by Hideki IWAMOTO
Glenn L McGrathGlenn L McGrath
c45146cf244Patch by Felipe Kellermann to fix a compiler compatability problem
Glenn L McGrathGlenn L McGrath
3d752f7ab2ePatch from Steven Scholz to fix compiler warnings
Glenn L McGrathGlenn L McGrath
fca056f6912New applet, eject, by Peter Willis
Glenn L McGrathGlenn L McGrath
95ed8d9f35cClose bracket in description from Peter Willis's eject applet
Glenn L McGrathGlenn L McGrath
d2b860fecb7Patch from Vernon Sauder.The off_t type is not a consistent size; it depends on the kernel options (something about large file support). Therefore, the format string for printing an address is not always the same.
Glenn L McGrathGlenn L McGrath
bbf2ce36d84Fix a compile error identiefied by Steven Scholz.Declare variables first for compatability.
Glenn L McGrathGlenn L McGrath
e84152e9e17Check file has execute permission for the current user, minor formating
Glenn L McGrathGlenn L McGrath
d5d5e54290dQuick fix for tftp truncation bug
Glenn L McGrathGlenn L McGrath
d1daf8b6f4dPatch from Denis Dowling to fix a ocuple of usage entries
Glenn L McGrathGlenn L McGrath
10b781345f5Fix option handling, -i or -t must be given, if both ignore the -t.Use bb_getopt_ulflags.
Eric AndersenEric Andersen
d8746cdc40bJoe.C, joe at numa dot com dot tw writes:Hi, When downloading files over slow network (e.g. wireless/ internet) using IE, sometimes it will stop downloading and show error message 'connection closed' when the download is almost complete. This is because IE can't handle server close connection properly. Apache http_main.c fix this problem by close the connection after client close the connection. This patch do exactly the same thing....