summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2014-07-11Bring in man.cgi(8) to maintain it in our tree together with mandoc.Ingo Schwarze
It will not be enabled in the build nor installed by default. A comment in the Makefile lists the three simple steps needed to build, install, and run it on the two machines worldwide that are going to run it. deraadt@ agrees with having the code in the tree.
2014-07-11by popular demand, add back hamc-sha1 to server proposal for better compatTed Unangst
with many clients still in use. ok deraadt
2014-07-11using COPTS is probably better than CFLAGSTheo de Raadt
2014-07-11Grok the new /dev/klog LIOCSFD ioctl associated with sendsyslog(2)Theo de Raadt
ok matthew guenther miod tedu
2014-07-11delete all traces of oldrdist -Server command. ok beck guentherTed Unangst
2014-07-11Permit use of SYS_sendsyslog from inside the sandbox. Clock is ticking,Theo de Raadt
update your kernels and sshd soon.. libc will start using sendsyslog() in about 4 days.
2014-07-11Marion, don't look at it. Shut your eyes, Marion.Ted Unangst
Don't look at it, no matter what happens!
2014-07-11ain't nobody got time for fortran.Ted Unangst
remove fsplit. ok beck.
2014-07-11Allow ftp(1) to change its User-Agent for HTTP(S) URL requests using aLawrence Teo
-U command-line option. feedback from deraadt@, halex@, and Adam Thompson ok deraadt@ sthen@, man page changes ok jmc@
2014-07-10Missed a chunk of the previousPhilip Guenther
2014-07-10add missing include file to bring in protosTheo de Raadt
2014-07-10repair prototypesTheo de Raadt
2014-07-10fleanse out oldrdist supportTed Unangst
2014-07-10Assume POSIX: write() takes size_t and returns ssize_tPhilip Guenther
2014-07-10Snakes. Why'd it have to be snakes?Ted Unangst
2014-07-10expected user.h fallout; _KERNEL case needs manual pull of ucred.hTheo de Raadt
2014-07-10oldrdist is old. pre-ok guentherTed Unangst
2014-07-10annotate regexp error messages with source string.Marc Espie
okay miod@
2014-07-10tweak previous; ok teduJason McIntyre
2014-07-10#define _KERNEL hack requires ucred.h now as wellTheo de Raadt
2014-07-10add a note that fields are returned in input order. ok deraadt sthenTed Unangst
2014-07-10fix version comparison for openssl-like versions (1.0.1g etc)Jasper Lievisse Adriaanse
found, tested and OK sthen@
2014-07-09floppy disks are obsolete. recommend keeping the keyfile on a flash diskTed Unangst
instead. ok mlarkin
2014-07-09small alignment tweakJasper Lievisse Adriaanse
2014-07-09Do you know what horrors lie beyond that wall?Ted Unangst
No. Then you go first.
2014-07-09"mkstr was intended for the limited architecture of the PDP 11 family."Ted Unangst
Time moves on, memory gets cheaper. There's no need for mkstr or xstr. ok deraadt
2014-07-09fix ssh-add crash while loading more than one keySebastian Benoit
ok markus@
2014-07-09mlarkin requested that i cleanup the example codeTed Unangst
2014-07-09mark defos as const; nobody needs to change it,Ingo Schwarze
and it is occasionally useful to be able to pass literal strings
2014-07-09delete forgotten, obsolete rew_warn() prototypeIngo Schwarze
2014-07-09instead of printf() use tbprintf() like elsewhere in systat.Jasper Lievisse Adriaanse
ok deraadt@ mpi@
2014-07-09downgrade more error() to debug() to better match what old authfile.cDamien Miller
did; suppresses spurious errors with hostbased authentication enabled
2014-07-09more useful error message when GLOB_NOSPACE occurs;Damien Miller
bz#2254, patch from Orion Poplawski
2014-07-08Cannot find a reason for this to need machine/cpu.hTheo de Raadt
2014-07-08mention X Window System announcement.Kirill Bychkov
OK henning@
2014-07-08every succesful hackathon must begin with a sacrifice.Ted Unangst
2014-07-08rm asa/fpr. ok beck deraadt halex matthewTed Unangst
2014-07-08decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hTheo de Raadt
don't need to be married. ok guenther miod beck jsing kettenis
2014-07-08cut things that relied on mclgeti for rx ring accounting/restriction overDavid Gwynne
to using if_rxr. cut the reporting systat did over to the rxr ioctl. tested as much as i can on alpha, amd64, and sparc64. mpi@ has run it on macppc. ok mpi@
2014-07-07Clean up ERROR messages related to document structure and macros:Ingo Schwarze
Hierarchical naming and mention macro names in messages.
2014-07-07Simplify man_unscope(), removing 18 lines of code, that is,Ingo Schwarze
removing one function argument, one function definition, three function invocations and two pointless assert()s. No functional change.
2014-07-07The type of iov_len is size_t so the comparison with < 0 does notAlexander Bluhm
work. Do the length check before the subtraction. Found by Christian Ehrhardt; OK markus@
2014-07-07no need to delete any content from .Rs blocks,Ingo Schwarze
and downgrade the related message from ERROR to WARNING
2014-07-07no need to skip content before first section headerIngo Schwarze
2014-07-07implement .dei and .amiIngo Schwarze
2014-07-07mention that ProxyCommand is executed using shell "exec" to avoidDamien Miller
a lingering process; bz#1977
2014-07-06Clean up messages related to plain text and to escape sequences.Ingo Schwarze
* Mention invalid escape sequences and string names, and fallbacks. * Hierarchical naming.
2014-07-06After skipping an escape sequence with incomplete arguments,Ingo Schwarze
do not throw away the rest of the string to be rendered.
2014-07-06Fix expansion of escape sequences with incomplete arguments.Ingo Schwarze
* For \* and \n, discard the incomplete arg, expand to empty string. * For \B, discard the incomplete arg, expand to the digit 0. * For \w, use the incomplete arg (behaviour unchanged).
2014-07-06Fix handling of escape sequences taking numeric arguments.Ingo Schwarze
* Repair detection of invalid delimiters. * Discard the invalid delimiter together with the invalid sequence. Note to self: In general, strchr("\0...", c) is a thoroughly bad idea.