aboutsummaryrefslogtreecommitdiff
path: root/coreutils/expr.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-09-02move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as oneGlenn L McGrath14-37/+50
constant. Vodz last_patch_107
2003-09-01Fix compile error and reducing size for libbb/get_console.c to previous size.Glenn L McGrath2-47/+29
Vodz last_patch106
2003-09-01Allow one to detect and handle the case where no lease could be obtainedGlenn L McGrath1-0/+1
via DHCP. (Just add a section "failed" to your script.) Patch by Steven Scholz
2003-08-31"insmod caches the symbolname in a variable before modifying it and usesGlenn L McGrath1-3/+12
the cached value afterwards." - Jean Wolter
2003-08-30save a couple of bytesGlenn L McGrath1-1/+1
2003-08-30The default behaviour for run-parts is corrected to continue if an errorGlenn L McGrath1-2/+3
is encountered in a script. Patch by Philip Blundell
2003-08-30handle GPLONLY symbolsGlenn L McGrath1-3/+21
2003-08-30"Without this patch, udhcpcd output may be buffered and delayed forGlenn L McGrath1-0/+2
for minutes if stdout is not a tty." -vda@
2003-08-30Fix the substitution print subcommand, it should only print if itsGlenn L McGrath1-2/+1
own substitution matched, not previous ones. e.g echo fooba | sed -n 's/foo//;s/bar/found/p' shouldnt print anything
2003-08-29Remove some unwanted code, patch from Holger Schurig, confirmed by vodzGlenn L McGrath1-4/+0
2003-08-29"Due to a wrong format parameter in a printf httpd does not work whenGlenn L McGrath1-1/+8
compiled for with CONFIG_LFS (large file support). The attached patch suggested by Vladimir fixes that." - Steven Scholz
2003-08-29"A little patch for the strings applet of the busybox development treeGlenn L McGrath1-6/+3
that substitutes two lines of code with a libbb function saving a couple of bytes." - Tito
2003-08-29Logic error, patch by Matteo CroceGlenn L McGrath1-1/+1
2003-08-29Remove stray '\n'Glenn L McGrath2-3/+3
2003-08-29Remove unused filesGlenn L McGrath3-136/+0
2003-08-29Help for date -I when CONFIG_FEATURE_DATE_ISOFMT is enabled.Glenn L McGrath1-1/+11
Patch by Steven Scholz
2003-08-29Change make to $(MAKE), patch by Hideki IWAMOTOGlenn L McGrath1-3/+3
2003-08-29Substitute busybox for uClibc, patch by Hideki IWAMOTOGlenn L McGrath1-1/+1
2003-08-29* Since busybox binary is unnecessary, deleted it from prerequisites.Glenn L McGrath1-2/+3
* Changed so that not only links but /bin/busybox might be deleted. * When double quoted PREFIX is defined by `.config' is used, `make uninstall' does not work correctly. When default PREFIX `pwd`/_install defined by Rules.mak is used, similarly it does not work correctly. Changed $$PREFIX into $(PREFIX) in order to fix this. Patch by Hideki IWAMOTO
2003-08-29Fix for compiling with ipv6Glenn L McGrath1-8/+8
2003-08-29"This function was not updating the argc and argv pointers to reflectGlenn L McGrath1-0/+2
the arguments it consumed, which means the calling function encountered them as well. As a result, a command like "ip -6 addr" was yielding a usage error." - Philip Blundell
2003-08-29label's dont work in v4 tunnels, patch by Eric SpakmanGlenn L McGrath1-1/+1
2003-08-29Vodz, last patch 105Glenn L McGrath2-75/+67
Busybox "mount" applet unsupport "user" option and result: must have _BB_SUID_NEVER applet option (my bug). Last patch have reducing 216 bytes for "su" applet also.
2003-08-29Vodz, last patch 104Glenn L McGrath1-5/+1
2003-08-29vodz, last patch 103Glenn L McGrath2-136/+114
2003-08-29Correct logic in determining size of block to download, as pointed outGlenn L McGrath1-2/+2
by Junio C Hamano
2003-08-28"Typo and/or thinko: scanning till the end of NUL terminated stringGlenn L McGrath1-1/+1
should check the byte pointed at not the pointer itself." -junkio@
2003-08-28"When the initial request by wget is responded by a 3XX redirectGlenn L McGrath1-2/+5
response sent in chunked transfer encoding, the code path to resubmit the request to the redirected URL forgets to reset got_clen and chunked variables in the loop. If the redirected URL does not use chunked transfer encoding, this causes the code that slurps the body of the response to incorrectly try to parse out the chunk length which does not exist." - junkio@ ----------------------------------------------------------------------
2003-08-28"When the filesize is known from content-length header, safe_fread isGlenn L McGrath1-13/+15
always told to read sizeof(buf). This waits until the underlying fread() to time-out for the last part of the downloaded body. Fix this by sending the number of remaining bytes to read when known." - junkio@ I reworked the logic in his patch
2003-08-28*** empty log message ***Glenn L McGrath1-1/+1
2003-08-28Dont unlink when testing !Glenn L McGrath4-43/+45
Always preserve creation date Disable the -p option its for modification date Remove some cpio header debugging noise Syncronise file listing behaviour with upstream.
2003-08-26Removed some debug printfsRobert Griebl1-4/+0
2003-08-26Syncronise some build files with busybox-cvs-20030819Glenn L McGrath5-45/+159
2003-08-26Woops, depend on SHA1 not the optionGlenn L McGrath1-1/+1
2003-08-26SHA1 options depend on SHA1Glenn L McGrath1-0/+1
2003-08-26Fix overflow for machines greater than 4GB, return unsigned int to avoidGlenn L McGrath1-5/+6
a cast and for greater accuracy.
2003-08-22"staywithu" writes:Eric Andersen2-5/+5
In BusyBox v1.00-pre2, commands like ls, df with -h option report a wrong file size for files larger than 4GBtye!! For example, when I execute 'ls -l', it reports -rw-r--r-- 1 root root 5368709120 Aug 17 2003 large_stream.tp when I execute 'ls -lh', I expect that -rw-r--r-- 1 root root 5.0G Aug 17 2003 large_stream.tp but it reports -rw-r--r-- 1 root root 1.0G Aug 17 2003 large_stream.tp I fixed this bug that... Line 31 in libbb/human_readable.c and line 275 include/libbb.h const char *make_human_readable_str(unsigned long size => const char *make_human_readable_str(unsigned long long size It's OK!
2003-08-22trivial doc fixEric Andersen1-2/+3
2003-08-22Fixup 'make clean' to properly clean the _install directoryEric Andersen1-5/+5
2003-08-19TypoGlenn L McGrath1-1/+1
2003-08-14Change hardlink handling for tar to work the same way as cpioGlenn L McGrath2-44/+46
2003-08-14Fix a bug reported by junkio@cox.net involving the mode_chars index.Manuel Novoa III1-1/+6
2003-08-13Patch from Paul Mundt (lethal) adding sh64 insmod support for busyboxEric Andersen1-10/+72
2003-08-13Rewrite timescmd() function to avoid the use of floating point and toManuel Novoa III1-16/+24
correct a bug in the seconds display where something like 65 seconds would be output as "1m65.000000s".
2003-08-13Remove unnecessary pointer dereference.Manuel Novoa III1-1/+1
2003-08-12fix style sheet so site doesn't look like crap with IEEric Andersen1-1/+0
2003-08-09Adjust Erik's change, as I don't claim copyright of the applet.Manuel Novoa III1-2/+0
2003-08-08Move shell descriptions to the config systemEric Andersen1-30/+0
2003-08-08Use the new 'select' option to make the shell configEric Andersen1-38/+27
much less evil and far more obvious. -Erik
2003-08-08Begin using the new "select" option. Good stuff!Eric Andersen1-8/+30