Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove y.tab.h from the beforedepend target. Also add a | steve | 1997-05-21 | 1 | -2/+3 |
| | | | | | | rule that shows the dependency of arith_lex.[co] on y.tab.h. Suggested by: Bruce Evans <bde@zeta.org.au> | ||||
* | Add explicit y.tab.h rule so that 'make depend clean all' does | steve | 1997-05-19 | 1 | -2/+4 |
| | | | | not fail with an "don't know how to make y.tab.h" error. | ||||
* | Use the __unused attribute where warranted. | steve | 1997-05-19 | 11 | -47/+47 |
| | |||||
* | Miscellaneous sorting and addition of rules for object files that | steve | 1997-05-19 | 1 | -11/+25 |
| | | | | | | depend on generated headers. Reviewed by: Bruce Evans <bde@zeta.org.au> | ||||
* | Ensure string termination after strncpy(). | joerg | 1997-05-09 | 1 | -2/+3 |
| | | | | | PR: 2997 Submitted by: Philippe Charnier <charnier@xp11.frmug.org> | ||||
* | Revise the section that explains how to protect parts of an $ENV script | steve | 1997-05-07 | 1 | -20/+12 |
| | | | | | | from being executed in non-interactive mode. Suggested and Reviewed by: Brian Somers <brian@freebsd.org> | ||||
* | Don't source $ENV unless this is an interactive shell. | steve | 1997-05-05 | 1 | -2/+2 |
| | |||||
* | Fixed overflow for attempts to seek to offsets > ULONG_MAX. See the | bde | 1997-04-30 | 1 | -2/+2 |
| | | | | | | OpenBSD version for more complete fixes. E.g., to seek to offsets > INT_MAX using a block size of 1, block numbers need to be off_t's instead of u_long's. | ||||
* | Enable whiteout code since we now have the lite2 support for them. | dfr | 1997-04-29 | 4 | -8/+8 |
| | |||||
* | Dynamically adjust size of displayed username to the longest username which | jkh | 1997-04-29 | 5 | -145/+254 |
| | | | | | | | appears, not the longest _maximum_ username (this should probably also go into 2.2, for the day when we bump up the username length there too). Submitted-By: Terry Lambert <terry@lambert.org> | ||||
* | Change spelling of ECBDIC to EBCDIC. Closes PR #3402 | steve | 1997-04-28 | 1 | -2/+2 |
| | | | | Submitted by: h-nokubi@nmit.mt.nec.co.jp | ||||
* | Turn on the new type builtin. | steve | 1997-04-28 | 1 | -1/+2 |
| | |||||
* | Sync with NetBSD's revision 1.29 of this file. | steve | 1997-04-28 | 1 | -27/+55 |
| | | | | Obtained from: NetBSD | ||||
* | Remove an extra semicolon and nuke register keyword usage. | steve | 1997-04-28 | 1 | -7/+7 |
| | |||||
* | Fix redirection of unopened file descriptors and nuke register | steve | 1997-04-28 | 1 | -9/+27 |
| | | | | | | keyword usage. Obtained from: NetBSD | ||||
* | Revert changes from rev 1.16 to 1.17 for now. Closes PR 2879. | steve | 1997-04-28 | 1 | -49/+29 |
| | |||||
* | mdoc-ify and cleanup UNIMPLEMENTED messages. Closes PR 2880. | steve | 1997-04-28 | 1 | -735/+587 |
| | |||||
* | Reorder declarations slightly. | steve | 1997-04-28 | 1 | -3/+3 |
| | |||||
* | Avoid a possible NULL pointer dereference, nuke register usage, | steve | 1997-04-28 | 1 | -6/+5 |
| | | | | | | and remove an unnecessary reset. Obtained from: NetBSD | ||||
* | Nuke register keyword usage, #if -> #ifdef, and avoid void * | steve | 1997-04-28 | 2 | -13/+13 |
| | | | | | | arithmetic. Obtained from: NetBSD | ||||
* | Nuke register keyword usage, rename pread to preadfd, and open | steve | 1997-04-28 | 1 | -7/+9 |
| | | | | | | input files FD_CLOEXEC. Obtained from: NetBSD | ||||
* | When NO_HISTORY is defined and the history command is used | steve | 1997-04-28 | 1 | -3/+16 |
| | | | | | | show an error message. Inspired by: NetBSD | ||||
* | Add a type builtin and nuke register keyword usage. | steve | 1997-04-28 | 2 | -5/+81 |
| | | | | Obtained from: NetBSD | ||||
* | Nuke register keyword usage and #if -> #ifdef. | steve | 1997-04-28 | 14 | -65/+65 |
| | | | | Obtained from: NetBSD | ||||
* | Shamelessly pilfer most of NetBSD's Makefile so that the | steve | 1997-04-28 | 1 | -28/+16 |
| | | | | | | | | problem with 'make -j n' and no .depend file goes away. I think Bruce mentioned this somewhere on one of the mailing lists. Obtained from: NetBSD | ||||
* | When "-c" is specified, don't pad the command with spaces if it is | jdp | 1997-04-16 | 1 | -2/+5 |
| | | | | | the last field on the line. "ps -axlc" was needlessly wrapping around on 80-character windows. | ||||
* | Fix typo in comment; Document in an example that years beyond 1999 | danny | 1997-04-16 | 2 | -4/+4 |
| | | | | are handled; fix typo in same example. | ||||
* | Provide examples of how to remove file names that begin with | mpp | 1997-04-09 | 1 | -1/+8 |
| | | | | | | | | a dash in non-getopt implementations. E.g.: rm /home/mpp/-filename rm ./-filename Requested by: bde | ||||
* | Improve the wording in the NOTES section. Closes PR# 3223. | mpp | 1997-04-08 | 1 | -13/+12 |
| | |||||
* | Fix several problems with mkdir: | mpp | 1997-04-01 | 1 | -29/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Fix mkdir -p to exit with the proper exit status and issue an error message if it was unable to create all of the specified directories and they did not previously exist. POSIX says: The mkdir utility shall exit with one of the following values: 0 All the specified directories were created successfully or the -p option was specified and all the specified directories now exist. E.g. % mkdir -p /var/mkdir mkdir: /var/mkdir: Permission denied % touch /tmp/file % mkdir -p /tmp/file/dir mkdir: /tmp/file: Not a directory Previously the above examples would exit with a zero exit status and no error message. Something like the following run as a normal user will still not produce an error: % id uid=629(mpp) gid=629(mpp).... % mkdir -p /usr/local/etc % ls -ld /usr/local/etc drwxr-xr-x 4 bin bin 512 Dec 26 14:55 /usr/local/etc/ 2) Cleaned up the mode handling to be more efficient when multiple directories are being created. 3) Fixed a problem where directories could be created with the wrong mode if the the -p option was specified and the build() routine returned and error. It would leave the umask set incorrectly at this point. 4) Removed an unused variable. Closes PR# 2304. | ||||
* | compare return value from getopt against -1 rather than EOF, per the final | imp | 1997-03-29 | 1 | -1/+1 |
| | | | | posix standard on the topic. | ||||
* | compare return value from getopt against -1 rather than EOF, per the final | imp | 1997-03-28 | 21 | -44/+44 |
| | | | | posix standard on the topic. | ||||
* | make usage() and SYNOPSIS agree with each other and add missing options | obrien | 1997-03-26 | 2 | -4/+4 |
| | | | | documented in the DESCRIPTION section. | ||||
* | Use mkstemp rather than mktemp to prevent races. | imp | 1997-03-24 | 1 | -4/+8 |
| | | | | Obtained from: OpenBSD | ||||
* | Merged from Lite2. The -t option is now handled better. The only visible | bde | 1997-03-13 | 1 | -104/+37 |
| | | | | change should be that the usage message now actually matches the man page. | ||||
* | Merged from Lite2. The man page no longer attempts to list all the | bde | 1997-03-13 | 1 | -21/+28 |
| | | | | | | vfs types. Fixed ordering of FreeBSD `k' option in synopsis. | ||||
* | Merge from Lite2. Straightforward changes. | bde | 1997-03-13 | 1 | -2/+7 |
| | |||||
* | Correct the self reference in the description of the "tabs" option. | mpp | 1997-03-12 | 1 | -2/+2 |
| | | | | | | It should really refer to "oxtabs". Obtained from: NetBSD-bugs mailing list PR# 3320 | ||||
* | 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 |
| |