summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1996-12-21vnd driver has disklabel support now; use itTheo de Raadt
1996-12-21use opendev()Theo de Raadt
1996-12-21indent niceTheo de Raadt
1996-12-20Add back "optional" keyword that got nuked in merge of FreeBSD mods.Todd C. Miller
1996-12-20Add readdisklabel support for BSD disklabels. I got tired of the amiga RDBNiklas Hallqvist
only requirement, now you can partition with disklabel(8) -r instead. However I have not done in-kernel writedisklabel support yet.
1996-12-20constrain bufcache on sun4m tooTheo de Raadt
1996-12-20initialize name; is this the right hack?Theo de Raadt
1996-12-20add fs type arg to newfskstailey
1996-12-20config-dependent heck noTheo de Raadt
1996-12-20actually explain what -u doesTheo de Raadt
1996-12-20correct defines/includesMichael Shalayeff
1996-12-20add missing #ifdef COMPAT_10Thomas Graichen
1996-12-20add fs type arg to newfskstailey
1996-12-20Nevermind, curses problem was caused by a busted lib on threadway.Jason Downs
1996-12-20support four letter device namesJason Downs
1996-12-19Create include/ss.etheisen
1996-12-19gid gamesTheo de Raadt
1996-12-19setgid games, not setuid games. closes a neat set of holesTheo de Raadt
1996-12-19toast shell escape codeTheo de Raadt
1996-12-19avoid oflows, thanks also to toddTheo de Raadt
1996-12-19netbsd fix to problem found by m4@nts.umn.eduTheo de Raadt
1996-12-19repair; david@mono.orgTheo de Raadt
1996-12-19sync to 2.3b3Michael Shalayeff
1996-12-19do SIOCGIFADDRMichael Shalayeff
1996-12-19do SIOCGIFADDR in ether_ioctlMichael Shalayeff
1996-12-19treat only ether II type packets for ipx.Michael Shalayeff
1996-12-19Really set column to 0 when outputting a carriage return...Thorsten Lockert
1996-12-19make mode/group on /usr/src/ consistent with mtree/specialTodd C. Miller
1996-12-19sync with mtree/specialTodd C. Miller
1996-12-18Conditionalize GCC and ANSI/ISO C dependenciesNiklas Hallqvist
1996-12-18Up limit of available user file descriptors (e.g. for redirections) to 32Niklas Hallqvist
1996-12-18Make pccom compile. This stull really needs to be merged into theTodd C. Miller
normal com driver.
1996-12-18Back out strcpy() -> strncpy() change. Not needed as the array is malloc'dTodd C. Miller
with enough space. Guess that's why I didn't commit this before ;-)
1996-12-18Use strncpy() instead of strcpy() where useful, check strdup()Todd C. Miller
ret val, and pass -Wall.
1996-12-18make commented-out stuff secure just in case anyone uncomments it.Todd C. Miller
1996-12-18rnd -> randomTodd C. Miller
1996-12-18todd is under post-exam stress reliefTheo de Raadt
1996-12-18support getting multiple files at once, e.gmichaels
"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-17missing unsigned caused bad sign-extensionNiklas Hallqvist
1996-12-17rnd -> random doncha knowTodd C. Miller
1996-12-17Add traditional handling of all upper-case inputThorsten Lockert
1996-12-17Fix oversight in column handling with OCRNL enabledThorsten Lockert
1996-12-17Reset output column when outputting \r with ONLCRThorsten Lockert
1996-12-17Fix typoThorsten Lockert
1996-12-17Get TAB expansion rightThorsten Lockert
1996-12-17NFS attribute cache timeout mount paramdm
1996-12-17strncpy that strerror, found by oliver@secnet.comTheo de Raadt
1996-12-17use snprintf when storing the string from strerror(). Who knows howTodd C. Miller
long it could be esp. when locales come into the picture.
1996-12-17if pathname given is a valid directory, cd to it at remote, alsomichaels
assume empty pathname means cd to '/', like ncftp (?).
1996-12-16Implement 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.