Age | Commit message (Collapse) | Author | |
---|---|---|---|
1996-12-21 | vnd driver has disklabel support now; use it | Theo de Raadt | |
1996-12-21 | use opendev() | Theo de Raadt | |
1996-12-21 | indent nice | Theo de Raadt | |
1996-12-20 | Add back "optional" keyword that got nuked in merge of FreeBSD mods. | Todd C. Miller | |
1996-12-20 | Add readdisklabel support for BSD disklabels. I got tired of the amiga RDB | Niklas Hallqvist | |
only requirement, now you can partition with disklabel(8) -r instead. However I have not done in-kernel writedisklabel support yet. | |||
1996-12-20 | constrain bufcache on sun4m too | Theo de Raadt | |
1996-12-20 | initialize name; is this the right hack? | Theo de Raadt | |
1996-12-20 | add fs type arg to newfs | kstailey | |
1996-12-20 | config-dependent heck no | Theo de Raadt | |
1996-12-20 | actually explain what -u does | Theo de Raadt | |
1996-12-20 | correct defines/includes | Michael Shalayeff | |
1996-12-20 | add missing #ifdef COMPAT_10 | Thomas Graichen | |
1996-12-20 | add fs type arg to newfs | kstailey | |
1996-12-20 | Nevermind, curses problem was caused by a busted lib on threadway. | Jason Downs | |
1996-12-20 | support four letter device names | Jason Downs | |
1996-12-19 | Create include/ss. | etheisen | |
1996-12-19 | gid games | Theo de Raadt | |
1996-12-19 | setgid games, not setuid games. closes a neat set of holes | Theo de Raadt | |
1996-12-19 | toast shell escape code | Theo de Raadt | |
1996-12-19 | avoid oflows, thanks also to todd | Theo de Raadt | |
1996-12-19 | netbsd fix to problem found by m4@nts.umn.edu | Theo de Raadt | |
1996-12-19 | repair; david@mono.org | Theo de Raadt | |
1996-12-19 | sync to 2.3b3 | Michael Shalayeff | |
1996-12-19 | do SIOCGIFADDR | Michael Shalayeff | |
1996-12-19 | do SIOCGIFADDR in ether_ioctl | Michael Shalayeff | |
1996-12-19 | treat only ether II type packets for ipx. | Michael Shalayeff | |
1996-12-19 | Really set column to 0 when outputting a carriage return... | Thorsten Lockert | |
1996-12-19 | make mode/group on /usr/src/ consistent with mtree/special | Todd C. Miller | |
1996-12-19 | sync with mtree/special | Todd C. Miller | |
1996-12-18 | Conditionalize GCC and ANSI/ISO C dependencies | Niklas Hallqvist | |
1996-12-18 | Up limit of available user file descriptors (e.g. for redirections) to 32 | Niklas Hallqvist | |
1996-12-18 | Make pccom compile. This stull really needs to be merged into the | Todd C. Miller | |
normal com driver. | |||
1996-12-18 | Back out strcpy() -> strncpy() change. Not needed as the array is malloc'd | Todd C. Miller | |
with enough space. Guess that's why I didn't commit this before ;-) | |||
1996-12-18 | Use strncpy() instead of strcpy() where useful, check strdup() | Todd C. Miller | |
ret val, and pass -Wall. | |||
1996-12-18 | make commented-out stuff secure just in case anyone uncomments it. | Todd C. Miller | |
1996-12-18 | rnd -> random | Todd C. Miller | |
1996-12-18 | todd is under post-exam stress relief | Theo de Raadt | |
1996-12-18 | support getting multiple files at once, e.g | michaels | |
"ftp host:pub/tst/test /pub/tst/test2 /pub/tst" will get files "test", then "test2" and then the cd to "pub/tst" on the same host and become interactive without closing/reopening connection each time. (needs leading '/' on every path but the first, as the rest are relative to the first. (a feauture, really)) | |||
1996-12-17 | missing unsigned caused bad sign-extension | Niklas Hallqvist | |
1996-12-17 | rnd -> random doncha know | Todd C. Miller | |
1996-12-17 | Add traditional handling of all upper-case input | Thorsten Lockert | |
1996-12-17 | Fix oversight in column handling with OCRNL enabled | Thorsten Lockert | |
1996-12-17 | Reset output column when outputting \r with ONLCR | Thorsten Lockert | |
1996-12-17 | Fix typo | Thorsten Lockert | |
1996-12-17 | Get TAB expansion right | Thorsten Lockert | |
1996-12-17 | NFS attribute cache timeout mount param | dm | |
1996-12-17 | strncpy that strerror, found by oliver@secnet.com | Theo de Raadt | |
1996-12-17 | use snprintf when storing the string from strerror(). Who knows how | Todd C. Miller | |
long it could be esp. when locales come into the picture. | |||
1996-12-17 | if pathname given is a valid directory, cd to it at remote, also | michaels | |
assume empty pathname means cd to '/', like ncftp (?). | |||
1996-12-16 | Implement more tty flags for better portability from other systems: | Thorsten Lockert | |
XCASE - canonical input/output processing IUCLC - translate uppercase to lowercase on input OLCUC - translate lowercase to uppercase on output OCRNL - translate carriage return to newline on output ONOCR - do not output carriage return at column 0 ONLRET - newline performs carriage return function In addition the tty compatibility interface supports LCASE properly. Look at termios(4) for a more complete description of the above flags. |