Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-11 | fix verbose output; remove commented-out includes. | Denis Vlasenko | |
2007-01-11 | ipv6-ization efforts continue. Few bugs are found, | Denis Vlasenko | |
unknown number likely introduced... | |||
2006-11-27 | style cleanup: return(a) -> return a, part 1 | Denis Vlasenko | |
2006-10-26 | xconnect is non-conforming to "xfunc like libc" rule. Fixing | Denis Vlasenko | |
2006-10-05 | eject: -T fix | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-06-03 | - No options should set the current system time. | Bernhard Reutner-Fischer | |
Shaun Jackman writes: A bug introduced in svn 11946 broke rdate. It no longer sets the current system time when no options are specified. The options have the opposite sense from what one might think, and, oddly enough, -ps is intentionally a no-op. Quoth rdate(8) from the BSD System Manager's Manual: -p Do not set, just print the remote time -s Do not print the time. | |||
2006-05-27 | Consolidate #include <sys/time.h> so libbb.h does it. | Rob Landley | |
2006-01-25 | just whitespace | Tim Riker | |
2005-10-28 | bb_opt_complementally for rdate applet. Add losed record to ↵ | "Vladimir N. Oleynik" | |
util-linux/Makefile.in for switch_root applet | |||
2005-10-28 | Rob Sullivan sent in some cleanups, which I beat on slightly. | Rob Landley | |
2004-01-18 | Stephane Billiart writes: | Eric Andersen | |
bb_lookup_port now takes 3 parameters but rdate has not been modified accordingly and fails to compile in the current CVS version. The modification below fixes the problem. Now, RFC868 allows both UDP and TCP implementations of the time protocol so this may not work if someone defines a udp time service other than 37 but who would do that? | |||
2003-12-20 | Change interface to bb_lookup_host, dont try and set port inside this | Glenn L McGrath | |
function as there is no gracefull way of handling failures. Rename bb_getport to bb_lookup_port, allow a default port to be specified so it always returns a correct value. Modify ftpgetput/rdate/wget to use the new interface. wget/rdate now use etc/services with a falback default value. | |||
2003-12-19 | Patch from Fillod Stephane: | Eric Andersen | |
* The "rdate.patch" file makes rdate to NOT settimeofday if the date to be set equals current date. This prevents the system from experiencing nasty time discontinuities caused by sub-second changes, with a protocol that has only over second resolution. Depending on your taste, the "fprintf(stderr..." may be removed. | |||
2003-11-03 | Fix rdate and ftpget/ftpput so they compile with the new xconnect. | Eric Andersen | |
I have checked rdate. Someone should also check ftpget/ftpput to be sure they still work. | |||
2003-10-31 | Rework wget, the xconnect interface, and its various clients | Eric Andersen | |
in order to fix the problems with round robin DNS reported by Andrew Flegg: http://busybox.net/lists/busybox/2003-October/009579.html This removes the ipv6 specific xconnect dns lookups. I do not see why that would need to be special cased for ipv6 as was done, but that will just have to be tested. So IPV6 people -- please test this change! -Erik | |||
2003-10-09 | Patch from Steven Scholz, fix some warnings | Glenn L McGrath | |
2003-09-15 | fix function prototype | Eric Andersen | |
2003-09-12 | Remove final \n | Eric Andersen | |
2003-09-12 | Teach rdate to timeout in 10 seconds to avoid blocking forever | Eric Andersen | |
with odd or broken networking setups | |||
2003-07-22 | Very minor rdate updates | Eric Andersen | |
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-07-03 | A patch from Bart Visscher <magick@linux-fan.com> to add an | Eric Andersen | |
xconnect helper routine which does: -address and port resolving -tries to connect to all resolved addresses until connected -uses getaddrinfo, so works for IPv6 too This patch also ports rdate, telnet, and wget to use the new xconnect function. Thanks Bart! | |||
2001-10-01 | Use port 37 by default. | Matt Kraai | |
2001-07-30 | Rework option handling to save space. | Matt Kraai | |
2001-05-16 | Add xgethostbyname and herror_msg* functions. | Matt Kraai | |
2001-03-21 | A nice patch from Larry Doolittle that adds -Wshadow and | Eric Andersen | |
cleans up most of the now-revealed problems. | |||
2001-03-19 | Size optimization for rdate from Vladimir | Eric Andersen | |
2001-03-09 | A cleanup patch from Jeff Garzik to static-ify a number of | Eric Andersen | |
namespace polluting things that really should be static. | |||
2001-03-09 | Patchs from Jeff Garzik <jgarzik@mandrakesoft.com> to cleanup | Eric Andersen | |
warnings with glibc 2.2 and use always use xfopen -Erik | |||
2001-02-20 | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | |
header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik | |||
2001-02-14 | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | |
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||
2001-01-31 | Removed trailing \n from error_msg{,_and_die} messages. | Matt Kraai | |
2001-01-27 | Fix header file usage -- there were many unnecessary header files included in | Eric Andersen | |
busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik | |||
2001-01-23 | #define -> static const int. Also got rid of some big static buffers. | Mark Whitley | |
2001-01-18 | Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to | Matt Kraai | |
Vladimir N. Oleynik. | |||
2000-12-18 | Change calls to error_msg.* and strerror to use perror_msg.*. | Matt Kraai | |
2000-12-07 | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | |
compliant with the style guide. Everybody rebuild your tags file! | |||
2000-12-01 | Stop using TRUE and FALSE for exit status. | Matt Kraai | |
2000-10-26 | Silence a warning, | Eric Andersen | |
2000-09-25 | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | |
-Erik | |||
2000-09-21 | Fix a potential warning | Eric Andersen | |
2000-08-21 | Oops. Forgot to commit rdate.c. | Eric Andersen | |
-Erik |