Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-26 | Save and restore signal handlers. Although we do not install our | Ray Lai | |
own signal handlers, this allows this code to be more easily reused in other programs. OK deraadt@ | |||
2007-03-26 | Restore errno before calling perror(). | Ray Lai | |
2007-03-26 | Check fork() == -1 instead of fork() < 0. | Ray Lai | |
2007-03-26 | When someone hits ^C in an editor, the editor does exit(130), I | Ray Lai | |
don't know why. Something to do with the shell, says deraadt@. Continuing to ignore these signals in the child fixes this. Now editit()'s return value can be reliably checked. OK deraadt@. | |||
2007-03-26 | more careful waitpid() discussed with ray (plus some knf) | Theo de Raadt | |
2007-03-25 | fork() does not return EPROCLIM, so don't test for it. | Ray Lai | |
2007-03-25 | more cleaning :) | Theo de Raadt | |
2007-03-25 | Change editit() to return -1 on error and 0 on success, like many | Ray Lai | |
other C functions. (Currently this return value is unchecked.) | |||
2007-03-25 | KNF. | Ray Lai | |
2007-03-25 | Save errno before calling signal(). | Ray Lai | |
2007-03-24 | Use MAXPATHLEN for buffer, which is only used for path construction | Moritz Jodeit | |
and fix handling of empty macdefs, which could result in the mac_end ptr beeing smaller than mac_start, resulting in crashes later on. From Nicholas Marriott. ok millert@ | |||
2007-03-23 | correct signal handling and process waiting for the editor spawning | Theo de Raadt | |
code, so that signals in the editor are handled right. written by ray after he started looking at other code that does this better | |||
2007-03-23 | Since we now have our own program, we can export more things that | Theo de Raadt | |
matter. Include kern.version, which tells a hell of a lot. ok millert ray | |||
2007-03-23 | missing .El; | Jason McIntyre | |
2007-03-23 | add -F to usage(); | Jason McIntyre | |
2007-03-23 | use the proper abbreviation for second: "s" | Chris Kuethe | |
requested by deanna, naddy, otto, steven ok deanna, otto | |||
2007-03-23 | Add a new flag -F to netstat restricting route display in conjuction | Pierre-Yves Ritschard | |
with -r to routes in the same address family as the destination. ok henning@, claudio@ | |||
2007-03-23 | Document temporary files. | Ray Lai | |
2007-03-23 | display a timedelta of 0 in seconds, not some other unit. | Chris Kuethe | |
requested by otto, ok otto | |||
2007-03-23 | Add more bloat to manual. | Ray Lai | |
2007-03-23 | Flags belong under SYNOPSIS, not NAME. | Ray Lai | |
2007-03-23 | Alphabetize flags and environment variables. | Ray Lai | |
2007-03-23 | Replace `&' in gecos field with login, prodded by deraadt@. | Ray Lai | |
2007-03-23 | simplify cleanup by using an atexit handler. lets us use err() instead | Ted Unangst | |
of a series of warn()/gotos. ok deraadt | |||
2007-03-23 | re-org something for prettiness | Theo de Raadt | |
2007-03-23 | support $PR_FORM environment variable | Theo de Raadt | |
2007-03-23 | Don't insert double slashes ("/tmp//p.XXXXXXXXXX") if TMPDIR ends | Ray Lai | |
in "/". Helps emacs and deraadt@. | |||
2007-03-23 | Support command-line arguments in $EDITOR. Prodded by deraadt@. | Ray Lai | |
2007-03-23 | spacing | Theo de Raadt | |
2007-03-23 | -V in usage | Theo de Raadt | |
2007-03-23 | document -L -V and -P options. still a bit short | Theo de Raadt | |
2007-03-23 | add -V (version) support | Theo de Raadt | |
2007-03-23 | Get rid of silly gcc warning. | Ray Lai | |
OK deraadt@. | |||
2007-03-23 | handle the -L and -P options; ok ray | Theo de Raadt | |
2007-03-23 | Enable our sendbug(1), prodded by deraadt@. | Ray Lai | |
2007-03-23 | some minor KNF, including sentinals; ok ray | Theo de Raadt | |
2007-03-23 | Import public domain rewrite of sendbug, written by Ray Lai. =) | Ray Lai | |
Replaces GNU sendbug/sendpr, the wonderful shell script that had trouble dealing with signals, behaved differently depending on what file it read upon startup, and suffered from issues plaguing most large shell scripts. OK deraadt@. | |||
2007-03-23 | cannot remember what the vax -O0 workaround in 2002 was for. wish the | Theo de Raadt | |
commit message had explained the problem at least vaguely. disable the workaround so that if the bug exists, it can rear it's head again (in 10 minutes of playing around, i could not find any unusual behaviour) | |||
2007-03-23 | Add a routine to scale timedelta sensors to more meaningful units, | Chris Kuethe | |
like fmt_scaled(3) does. Ranges from picoseconds to days. Also removes a couple of unneeded curses operations. ok deanna, ok deraadt | |||
2007-03-22 | use MD5_DIGEST_STRING_LENGTH instead of rolling our own lenght. | Xavier Santolaria | |
OK otto@ (before lock). | |||
2007-03-22 | Remove wrong length check, which ignored the '/' character | Moritz Jodeit | |
and let snprintf(3) decide if the path fitted into the buffer. Inspired by a diff from Nicholas Marriott. OK millert@ ray@ | |||
2007-03-22 | Fix buffer overflow when parsing the .netrc file. | Moritz Jodeit | |
From Nicholas Marriott. ok millert@ deraadt@ | |||
2007-03-21 | Document the CVSROOT/config file; input and OK's niallo@ jmc@. | Xavier Santolaria | |
2007-03-21 | tweaks; | Jason McIntyre | |
2007-03-21 | remove extra *p tests, from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-21 | describe .wav support in one sentence | Uwe Stuehler | |
2007-03-20 | Support for playing simple RIFF files (.wav) from Simon Effenberg, savar | Uwe Stuehler | |
at schuldeigen de, with some tweaks from me. ok millert, tests ckuethe, liked by some disliked by nobody, but he's not even a real user :) | |||
2007-03-20 | Set umask to 077 when saving messages in the outbox (not enabled | Todd C. Miller | |
by default). From veenhuizen at users dot sourceforge dot net | |||
2007-03-20 | sort options; sync synopsis and usage(); | Jason McIntyre | |
from Igor Sobrado | |||
2007-03-20 | - let synopsis and description agree for -f | Jason McIntyre | |
- sort FILES - +.Xr ssh-keyscan 1 , from Igor Sobrado |