Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stat: fix option -Z segv (bug 1454) | Denis Vlasenko | 2007-08-09 | 1 | -1/+1 |
| | |||||
* | audit small applets and mark some of them as NOFORK. | Denis Vlasenko | 2007-04-10 | 1 | -3/+2 |
| | | | | | Put big scary warnings in relevant places. | ||||
* | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | 2006-10-20 | 1 | -1/+1 |
| | |||||
* | Replace current verbose GPL stuff in libbb/*.c with one-line GPL boilerplate. | "Robert P. J. Day" | 2006-07-10 | 1 | -14/+1 |
| | |||||
* | Make certain clients of bb_make_directory default to honoring | Eric Andersen | 2004-10-13 | 1 | -1/+8 |
| | | | | the user's umask | ||||
* | Patch from Michael Tokarev: | Eric Andersen | 2004-10-08 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Scenario: touch x -- creates plain file name `x' mkdir x -- exits successefully libbb/make_directory.c, bb_make_directory(), contains the following code: if (mkdir(path, 0777) < 0) { /* If we failed for any other reason than the directory * already exists, output a diagnostic and return -1.*/ if (errno != EEXIST) { fail_msg = "create"; umask(mask); break; } /* Since the directory exists, don't attempt to change * permissions if it was the full target. Note that * this is not an error conditon. */ if (!c) { umask(mask); return 0; } } The assumption that EEXIST error is due to that the *directory* already exists is wrong: any file type with that name will cause this error to be returned. Proper way IMHO will be is to stat() the path and check whenever this is really a directory. Below (attached) is a patch to fix this issue. | ||||
* | Larry Doolittle writes: | Eric Andersen | 2004-04-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry | ||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -46/+72 |
| | |||||
* | Dont need a seperate function | Glenn L McGrath | 2002-11-24 | 1 | -19/+13 |
| | |||||
* | When making parent directories set permissions based on the base parent tree ↵ | Glenn L McGrath | 2002-11-24 | 1 | -8/+26 |
| | | | | rather than the new directory to be created. | ||||
* | Dont try and make the "/" directory | Glenn L McGrath | 2002-10-19 | 1 | -2/+2 |
| | |||||
* | Fail straight away rather than recursively printing error messages :) | Glenn L McGrath | 2002-09-28 | 1 | -1/+1 |
| | |||||
* | Fix error messages conditions, and make them the same as GNU mkdir. | Glenn L McGrath | 2002-09-22 | 1 | -2/+2 |
| | |||||
* | Dont return an error if the directory already existed | Glenn L McGrath | 2002-08-24 | 1 | -3/+7 |
| | |||||
* | Fix warning | Glenn L McGrath | 2002-08-24 | 1 | -0/+1 |
| | |||||
* | Rewrite, its smaller | Glenn L McGrath | 2002-08-23 | 1 | -30/+22 |
| | |||||
* | Canonicalize dirname(3) behavior. | Matt Kraai | 2001-08-24 | 1 | -3/+7 |
| | |||||
* | Fix a memory leak if parent directory creation failed. | Matt Kraai | 2001-08-24 | 1 | -4/+4 |
| | |||||
* | make_directory used mode as if it were an signed entity, but in fact | Eric Andersen | 2001-08-02 | 1 | -1/+1 |
| | | | | | it was a mode_t which is unsigned. Fix it to be signed... -Erik | ||||
* | stdlib.h defined free(), which this needs | Eric Andersen | 2001-06-22 | 1 | -0/+1 |
| | |||||
* | Rewrote mkdir (and touched lots of things in the process). | Matt Kraai | 2001-06-21 | 1 | -0/+66 |