aboutsummaryrefslogtreecommitdiff
path: root/libbb/messages.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Port over the last of the tinylogin appletsEric Andersen2002-06-231-0/+36
| | | | -Erik
* Major rework of the directory structure and the entire build system.Eric Andersen2001-10-241-2/+3
| | | | -Erik
* Patch from vodz:Eric Andersen2001-07-121-0/+3
| | | | | | | Changed email address cmdedit API change optimizations for traceroute and md5sum added a new shared create_icmp_socket() function
* Fix a segfault in lash, hush, and cmdedit. Each of these usedEric Andersen2001-05-111-0/+3
| | | | | | xgetcwd, but did not check the return for a NULL, and then continued to call strlen on the NULL when the cwd had been removed from under it. -Erik
* These messages can be .rodata, so make them even more const.Eric Andersen2001-04-301-12/+12
| | | | -Erik
* libbb.h now includes ../busybox.h. This way, files in libbb that haveMark Whitley2001-04-251-1/+1
| | | | | BB_[FEATURE] #defines won't be ignored. Credit to Magnus Damm for spotting this.
* Move messages.c to libbb. Make each string in messages.c be its own .o file.Eric Andersen2001-04-251-0/+61
This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik