summaryrefslogtreecommitdiff
path: root/editors/patch.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* libbb: introduce and use xrename and rename_or_warn.Denis Vlasenko2008-02-171-4/+1
|
* add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko2007-10-111-1/+1
| | | | | EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so
* update Glenn McGrath's email addressDenis Vlasenko2007-09-211-1/+1
|
* don't pass argc in getopt32, it's superfluousDenis Vlasenko2007-08-181-1/+1
| | | | | | | | (add/remove: 0/0 grow/shrink: 12/131 up/down: 91/-727) Total: -636 bytes text data bss dec hex filename 773469 1058 11092 785619 bfcd3 busybox_old 772644 1058 11092 784794 bf99a busybox_unstripped
* patch: fix -p -1 handlingDenis Vlasenko2007-08-061-3/+5
| | | | | checkstack.pl: add blackfin (by Alex Landau <landau_alex@yahoo.com>)
* patch: fix bad line ending handling ("Nguyen Thai Ngoc Duy" <pclouds@gmail.com>)Denis Vlasenko2007-08-011-3/+3
|
* usage.c: remove reference to busybox.hDenis Vlasenko2007-05-261-4/+2
| | | | | *: s/include "busybox.h"/include "libbb.h"
* style fixes. No code changesDenis Vlasenko2007-04-121-1/+3
|
* libbb: add xunlink()Denis Vlasenko2007-04-051-6/+3
| | | | patch: do not try to delete same file twice
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-0/+1
| | | | no preceding prototype
* diff: comment - explain what happens when hunk fails to applyDenis Vlasenko2006-12-171-2/+3
|
* patch: fix double-free (bug 1120)Denis Vlasenko2006-12-171-0/+1
|
* passwd: rework:Denis Vlasenko2006-11-301-0/+2
| | | | | | | | | * do not make backup copy by copying (just retain old file) * correctly fall back to /etc/passwd if user is not in shadow * fix bug with overlong passwd entries * be permissive on some kinds of failures * reduce stack usage * code size: -500 bytes
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-4/+4
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-4/+4
|
* bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko2006-10-121-7/+7
| | | | Renaming...
* small style fixesDenis Vlasenko2006-10-121-3/+3
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-1/+1
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-1/+1
| | | | | | | | 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.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-6/+6
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Patch to fix bug 868, and some related cleanup while I was in the area.Rob Landley2006-05-071-18/+6
| | | | | | A tab is now taken as the end of filename if it's there, but if it isn't (because the timestamp isn't there) we continue with the existing untruncated line as the filename.
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* changed strange mix signed<->unsigned"Vladimir N. Oleynik"2006-01-311-4/+4
|
* clean up yet more annoying signed/unsigned mismatches and fixupEric Andersen2006-01-301-1/+1
| | | | yet more incorrect types
* - correct boilerplateBernhard Reutner-Fischer2005-10-271-2/+2
| | | | - use bb_xgetlarg for the patch_level to catch invalid arguments.
* - do not use bb_xgetularg10_bnd as a lower value of -1 doesn't work due to loweBernhard Reutner-Fischer2005-10-101-20/+6
| | | | | | being unsigned. - minor correction: use stdin only when no file was given via -i. - use shorter boilerplate.
* change strange depend to libbb.h, but require busybox.h"Vladimir N. Oleynik"2005-10-061-1/+0
|
* Patch -i support from Berhnard Fischer.Rob Landley2005-09-011-9/+19
|
* Update my email address, document some of my tasks in the AUTHORS fileGlenn L McGrath2004-04-251-1/+1
|
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-3/+3
|
* New applet: patch, applies a unified diffGlenn L McGrath2003-06-221-0/+290