Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-02 | style polishing | Ted Unangst | |
2016-09-02 | replace exit() with err() and errx() so user knows what happened | Ted Unangst | |
2016-09-02 | use err() instead of errx when an errno is set | Ted Unangst | |
2016-09-02 | Fix 'c'hange command handling if last line of a file is removed. | Tobias Stoeckmann | |
If the last line of a file is removed, the line cache is erroneously considered empty, which means that changed lines are added at the top. spotted by and okay otto@ | |||
2016-09-02 | the old check for when verify needed to create files (affecting pledge) | Ted Unangst | |
was slightly wrong, but it didn't matter. new gzip mode however falls into the gap. the zsig code will default to stdout, therefore it needs much fewer privileges if msgfile is not specified. | |||
2016-09-02 | combine the pledge switch with the execution switch. no changes yet, | Ted Unangst | |
but we can do a little better in some cases. | |||
2016-09-02 | -e and -z cannot be combined | Ted Unangst | |
2016-09-02 | space out the example | Ted Unangst | |
2016-09-02 | Remember the number of lines scrolled into the history (versus cleared | Nicholas Marriott | |
into the history) and when resizing only use scrolled lines and not cleared lines (which are probably not intended to reappear). From Chaoren Lin. | |||
2016-09-02 | clarify that -L will exit without running a command. | Ted Unangst | |
2016-09-02 | shorten s_server; | Jason McIntyre | |
2016-09-02 | finish the sentence; | Jason McIntyre | |
2016-09-02 | add support for the verified auth ioctls using 'persist' rules. | Ted Unangst | |
ok deraadt henning | |||
2016-09-02 | _PASSWORD_LEN is length that comes out of crypt(), not a meaningful | Ted Unangst | |
length for user entered passwords. And the +1 is just superstitious nonsense inherited from getpass() guts. Switch to a pleasing fixed size of 1024. ok millert | |||
2016-09-02 | more jmc tweaks | Marc Espie | |
2016-09-02 | document the new stuff, usage nits. | Marc Espie | |
some input by jmc@, to be polished later "get it in now" tedu@ deraadt@ | |||
2016-09-02 | convert getpass to readpassphrase. from Dimitris Papastamos | Ted Unangst | |
2016-09-02 | duplicate var | Marc Espie | |
2016-09-02 | add a new option (-z) for signing gzip archives. | Marc Espie | |
- simple barebones gzip header parsing - signature is outside of the archive - checksums for blocks of 64K - verify stuff then pass it to the pipeline lots of inputs by tedu@ and deraadt@ okay tedu@ | |||
2016-09-02 | Fix the begin of word issue in vi(1). | Martijn van Duren | |
Similar fix went in sed and ed. Feedback and OK schwarze@ | |||
2016-09-02 | move more code into createsig. callers just pass seckey filename. | Ted Unangst | |
2016-09-02 | split the sign() function into two, with a pure memory core made | Ted Unangst | |
available as a separate function to make it easier to reuse in other code. | |||
2016-09-02 | style cleanup: sort headers; group and sort variables; no parens for | Theo Buehler | |
return; sort getopt string and corresponding switch; and some more tedious stuff ok martijn | |||
2016-09-02 | When "makewhatis -d" tries to add to a database that doesn't (yet) exist, | Ingo Schwarze | |
silently create it from scratch instead of printing a warning. The annoying warning message was reported by ajacoutot@, and espie@ convincingly argues that a non-existing database can be considered equivalent to an empty one. | |||
2016-09-02 | make sure to explicitly clear memory that is used for password input. | Gleydson Soares | |
OK tedu@ | |||
2016-09-02 | If reading fails, do not go into infinite loop asking for a filename | Otto Moerbeek | |
Happens in bulf build where no tty is available. ok sthen@ naddy@ $(jot -b yes 1000) landry@ | |||
2016-09-02 | Drop non-encapulated ESP packets using a UDP-encapsulating TDB, and add | Vincent Gross | |
the relevant counters. Ok mikeb@ | |||
2016-09-01 | Fix file descriptor leak | Mark Lumsden | |
Found by Coverity Scan. The ffropen() function returns FIODIR when the file is a directory. Check return value on error, in case of directory, close the descriptor. Source Joachim Nilsson, ok sunil@ | |||
2016-09-01 | don't initialize variables with functions | Ted Unangst | |
2016-09-01 | unconst these parameters; i won't be changing bsd auth today. | Ted Unangst | |
2016-09-01 | add a -t keytype option for untrusted comment automatic key extraction | Marc Espie | |
(not in VERIFYONLY mode) to be documented and used shortly okay tedu@ | |||
2016-09-01 | remove "sparc" from a comment | Ingo Schwarze | |
2016-09-01 | move "sparc" down to discontinued architectures | Ingo Schwarze | |
2016-09-01 | Document all letters used for route flags in "netstat -r". | Alexander Bluhm | |
OK jmc@ mpi@ sthen@ | |||
2016-09-01 | move the authentication code to a function | Ted Unangst | |
2016-09-01 | Fix possible NULL pointer dereference. | Sunil Nimmagadda | |
Found by Coverity Scan. The tagsvisit() function calls eread(), which may return NULL. This is then immediately passed to stat() without a proper check. This patch adds that check. From Joachim Nilsson <troglobit@gmail.com> via lum@. Ok lum@ | |||
2016-09-01 | remove sparc support | Ted Unangst | |
2016-09-01 | keep the code that endian swaps, but remove the explanation that it's | Ted Unangst | |
for converting between freebsd and sunos. | |||
2016-09-01 | Display all route flags in "route get", "route show" and "netstat -r" | Alexander Bluhm | |
output. Sort them according to the RTF_... defines in route.h. OK claudio@ mpi@ | |||
2016-09-01 | shorten s_client; | Jason McIntyre | |
2016-09-01 | update currency exchange rates; | Jason McIntyre | |
2016-08-31 | Complete do-over for column to prepare for implementing UTF-8 support. | Martijn van Duren | |
Fix a few bugs while here, namely: - Fix the width-calculation of a tab-character - Correct treatment of files without trailing newlines. - Repair "-xc 7" - Overflow protection for the number of rows and columns Lots of help from and OK schwarze@ Get it in deraadt@ | |||
2016-08-31 | rlog: add -E and -S options to configure revision separators, to | Joshua Stein | |
work around commits that might have the default strings in them ok tom deraadt | |||
2016-08-31 | replace obsolete getpass with readpassphrase. | Ted Unangst | |
ok gsoares | |||
2016-08-31 | new: Joe Ossanna 1928-1977 | Ingo Schwarze | |
from Jan Stary <hans at stare dot cz> | |||
2016-08-31 | Fix a bug reported by Han Boetes. Easily reproducible via: | Mark Lumsden | |
mg c-x b RET c-x k RET mg segvs. Initial diff from Joachim Nilsson. This diff tested by Han and Joachim and ok florian@ jasper@ | |||
2016-08-31 | We don't need any VMS access tricks. | Theo de Raadt | |
ok beck tedu | |||
2016-08-31 | nicer format strings and use dprintf instead of write | Ted Unangst | |
2016-08-31 | close an opened fd before returning from main | Jonathan Gray | |
ok guenther@ | |||
2016-08-31 | When iterating over the list of input files close them when | Jonathan Gray | |
processing of each is done. ok guenther@ |