Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix buffer overflow | guido | 1997-03-10 | 1 | -2/+3 |
| | |||||
* | This is a funny one: df for a device that was not mounted used to fail | guido | 1997-03-10 | 1 | -2/+2 |
| | | | | for root only. | ||||
* | Fix buffer overflow (probably unexploitable). | guido | 1997-03-10 | 1 | -2/+2 |
| | |||||
* | Make mv more robust. A race has been fixed, as well as an extra warning | guido | 1997-03-08 | 1 | -10/+28 |
| | | | | | added when sbits are cleared. Fixes PR 1351 and 1377 (I hope). | ||||
* | Typo fix. | mpp | 1997-03-07 | 1 | -2/+2 |
| | |||||
* | Acitvate chio(1). | joerg | 1997-03-06 | 1 | -2/+2 |
| | |||||
* | This commit was generated by cvs2svn to compensate for changes in r23449, | joerg | 1997-03-06 | 5 | -0/+966 |
|\ | | | | | | | which included commits to RCS files with non-trunk default branches. | ||||
| * | Import Jason Thorpe's contribution for an updated SCSI media changer | joerg | 1997-03-06 | 5 | -0/+966 |
| | | | | device (now, finally!). | ||||
* | Big usernames fixes | ache | 1997-03-04 | 1 | -4/+5 |
| | |||||
* | Use MAXLOGNAME-1 for width because MAXLOGNAME includes NUL | ache | 1997-03-03 | 1 | -3/+3 |
| | |||||
* | Add a missing period in the -o option description. | mpp | 1997-02-25 | 1 | -3/+10 |
| | | | | | | Document the depreciated -g option. Inspired by: OpenBSD PR# 119 | ||||
* | Revert $FreeBSD$ to $Id$ | peter | 1997-02-22 | 269 | -269/+269 |
| | |||||
* | Use the .Bx macro in the HISTORY section. | mpp | 1997-02-19 | 1 | -1/+2 |
| | |||||
* | Add history section. Follows chflags(2). | obrien | 1997-02-19 | 1 | -0/+4 |
| | |||||
* | Include <ufs/ufs/ufsmount.h>. | jkh | 1997-02-17 | 1 | -0/+1 |
| | |||||
* | Fix a expansion bug that caused the result of `echo $((1 << 30))` | steve | 1997-02-16 | 1 | -2/+5 |
| | | | | | | to get truncated. Submitted by: bde | ||||
* | Sweep through the tree fixing mmap() usage: | alex | 1997-01-16 | 1 | -1/+1 |
| | | | | | | | | | | | | - Use MAP_FAILED instead of the constant -1 to indicate failure (required by POSIX). - Removed flag arguments of '0' (required by POSIX). - Fixed code which expected an error return of 0. - Fixed code which thought any address with the high bit set was an error. - Check for failure where no checks were present. Discussed with: bde | ||||
* | Make the long-awaited change from $Id$ to $FreeBSD$ | jkh | 1997-01-14 | 269 | -269/+269 |
| | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. | ||||
* | Sort cross references. | wosch | 1997-01-13 | 5 | -13/+13 |
| | |||||
* | Minor mdoc cleanup. | mpp | 1997-01-11 | 1 | -2/+4 |
| | |||||
* | Add a blurb describing the fact that ls will print the | mpp | 1997-01-11 | 1 | -2/+8 |
| | | | | | | | year in place of the hour/minute fields if the time is more than 6 months in the past or future. Also some minor mdoc cleanup. | ||||
* | Make ls include the year when displaying times that are more than | mpp | 1997-01-11 | 1 | -2/+6 |
| | | | | | | 6 months into the future. Closes PR# 1657. Submitted by: Sakari Jalowaara <sja.home.tekla.fi> | ||||
* | Fix a problem that caused some foreground pipelines to die with: | steve | 1997-01-06 | 1 | -3/+2 |
| | | | | | | tcsetpgrp failed, errno=1 Discovered and Reviewed by: joerg | ||||
* | Make sh(1) think and be in the same place at the same time. This closes | steve | 1997-01-04 | 1 | -15/+11 |
| | | | | PR#2331: strange output of sh's pwd on symlinked directories. | ||||
* | add some string examples, eg. test "" -o "" | wosch | 1996-12-28 | 1 | -12/+16 |
| | |||||
* | Use strcoll instead of strcmp for file names comparation | ache | 1996-12-28 | 1 | -3/+3 |
| | | | | Should be in 2.2 | ||||
* | Fix handling of -o and -a operators in the 3 argument case. | steve | 1996-12-25 | 1 | -2/+2 |
| | | | | Submitted by: Tom Rush <tarush@mindspring.com> | ||||
* | With these changes sh(1)'s trap command should be POSIX-compliant, | steve | 1996-12-24 | 1 | -49/+107 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | while remaining (becoming :) compatible with other popular shells. Specifically these changes include: 1) Implement 'trap -l' to get a list of valid signals names. This is useful if you wanted to do something like reset all signal handlers to there defaults values, in which case something like this will do the trick. trap `trap -l` 2) Reformat the output of 'trap' so it can be saved and later eval'd to restore the saved settings. 3) Allow the use of signal names as well as signal numbers. 4) Fix trap handling of SIGCHLD so that commands like the following (albeit, contrived) won't cause sh(1) to recurse ad infinitum. trap uname 0 20 5) Make variables static that are used only in trap.c. 6) Minor 'style(9) police' mods. | ||||
* | Oops, it needs little more caulk to get it right. | steve | 1996-12-23 | 1 | -2/+2 |
| | |||||
* | Apply a little dab of bit caulk to keep those beggars | steve | 1996-12-23 | 1 | -6/+2 |
| | | | | | | from leaking out. Noticed by: bde | ||||
* | Don't use _POSIX_PATH_MAX to limit the size of the path, instead | steve | 1996-12-23 | 1 | -3/+3 |
| | | | | | | use 'getcwd(NULL, 0)' just as pwd(1) does. Suggested by: bde | ||||
* | Make sh(1) a little braver in the face of adversity. sh(1) | steve | 1996-12-21 | 4 | -169/+21 |
| | | | | | | | now handles the getpwd() init problem the same way as bash and ksh do. Also while I was in here, I cleaned up the format a little, removed some unnnecessary #if SYMLINKS cruft, and changed the pwd builtin to use getcwd(3) as Joerg suggested. | ||||
* | This doesn't change any behavior, but may be a slight | steve | 1996-12-21 | 1 | -2/+2 |
| | | | | | | optimization. (num-- > 0) --> (--num >= 0). Obtained from: NetBSD | ||||
* | Remove extra #undef. | steve | 1996-12-21 | 1 | -2/+1 |
| | |||||
* | Fix a problem caused by finger failure on my part. The builtin | steve | 1996-12-21 | 1 | -3/+7 |
| | | | | | | | | getopts should now work as expected. This fix was in the NetBSD code that I was merging from but missed getting into FreeBSD's version because of 'drain bamage' on my part. Submitted by: NetBSD, joerg | ||||
* | Merge in NetBSD mods and -Wall cleaning. | steve | 1996-12-14 | 43 | -491/+908 |
| | | | | Obtained from: NetBSD, me | ||||
* | -Wall cleaning. | steve | 1996-12-14 | 10 | -26/+26 |
| | |||||
* | Cleanup man page and -Wall cleaning. | steve | 1996-12-14 | 4 | -16/+27 |
| | |||||
* | -Wall cleaning and implement -p commandline option. | steve | 1996-12-14 | 2 | -23/+61 |
| | | | | -p mod obtained from: NetBSD | ||||
* | Merge Lite2 mods, and -Wall cleaning. Unimplemented undelete(2) | steve | 1996-12-14 | 2 | -38/+113 |
| | | | | | cruft is protected by a #ifdef (BSD4_4_LITE) that should be removed when this is supported by the kernel. | ||||
* | -Wall cleaning. | steve | 1996-12-14 | 41 | -99/+105 |
| | |||||
* | Merge Lite2 mods, cleanup man page, and -Wall cleaning. | steve | 1996-12-14 | 2 | -9/+9 |
| | |||||
* | Cleanup man page and -Wall cleaning. | steve | 1996-12-14 | 2 | -6/+6 |
| | |||||
* | Merge Lite2 mods, and -Wall cleaning. undelete(2) cruft | steve | 1996-12-14 | 7 | -19/+63 |
| | | | | | | not yet implemented is protected by a define (BSD4_4_LITE) that should be removed when this call is supported by the kernel. | ||||
* | Merge Lite2 mods, and -Wall cleaning. | steve | 1996-12-14 | 2 | -57/+122 |
| | |||||
* | Merge Lite2 mods, -Wall cleaning, and show usage if | steve | 1996-12-14 | 2 | -12/+22 |
| | | | | | | incorrectly called. Incorrect usage mod obtained from: NetBSD | ||||
* | Merge Lite2 mods, cleanup man page, and -Wall cleaning. | steve | 1996-12-14 | 2 | -9/+9 |
| | |||||
* | Merge Lite2 mods, fix incorrect default string, cleanup | steve | 1996-12-14 | 3 | -13/+16 |
| | | | | use of .Nm macros, and -Wall cleaning. | ||||
* | Merge Lite2 mods and -Wall cleaning. | steve | 1996-12-14 | 5 | -20/+26 |
| | |||||
* | Cleanup man page and -Wall cleaning. | steve | 1996-12-14 | 2 | -5/+6 |
| |