Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-02 | fix uninitialized sock->port variable, causing crashes in certain | Alexandre Ratchov | |
error handling code paths (ex. wrong/unsupported mode). | |||
2014-06-02 | log attach position only if log_level >= 0, | Alexandre Ratchov | |
remove empty dev_mon_snoop() function | |||
2014-06-02 | - document SIGINT, because of its zero return value | Jason McIntyre | |
- \*Gt -> >, as recommended by schwarze ok guenther | |||
2014-06-01 | update currency exchange rates; | Jason McIntyre | |
2014-05-31 | tweak previous; | Jason McIntyre | |
2014-05-30 | don't assign variables in if() that's not error checking | Ted Unangst | |
2014-05-30 | modern bourne shells handle ~. Unlikely in makefiles, but still, better | Marc Espie | |
fork a shell then (as seen in a commit message in netbsd's make, apparently taken from debian. didn't look at the actual code, but it was a "duh" moment) okay millert@ | |||
2014-05-30 | a little style consistency with error checking | Ted Unangst | |
2014-05-30 | AF_NATM support was removed before 5.5 | Philip Guenther | |
2014-05-29 | use calloc, from Benjamin Baier | Ted Unangst | |
2014-05-28 | in the compat with more section, document: | Jason McIntyre | |
- the sense of -c is inverted - -GX are on by default - fold the note on -d into the stuff on -GX i deliberately left out mentioning -l being on by default, since i think the note below (all LESS vars are ignored) covers it adequately; ok millert | |||
2014-05-28 | When invoked as more, make the -i option behave the same as less's | Todd C. Miller | |
-I to match POSIX. OK and man bits from jmc@ | |||
2014-05-28 | On delete-window, remember the position of dot and mark in the buffer | Florian Obser | |
so that an revisiting the buffer the correct line number is displayed. Found by jasper@ OK lum@ | |||
2014-05-27 | paste in an EXAMPLES section, from posix spec; | Jason McIntyre | |
2014-05-27 | combine the extensions notes; | Jason McIntyre | |
2014-05-27 | Handle the top bit of xterm(1)-style modifier keys, based on a diff from | Nicholas Marriott | |
Balazs Kezes. | |||
2014-05-27 | Add some formats for pane bounds. | Nicholas Marriott | |
2014-05-27 | there is no need to xref regex(3) and setbuf(3) in SEE ALSO - re_format(7) | Jason McIntyre | |
is enough; | |||
2014-05-26 | tweak the text for -a and function lists; | Jason McIntyre | |
2014-05-26 | rework the SED FUNCTIONS text; | Jason McIntyre | |
2014-05-26 | the `P' function was crying out for a comma; | Jason McIntyre | |
2014-05-26 | posix does not count `!' as a separate function, and neither should we; | Jason McIntyre | |
instead, move the description of this mechanism into the general SED FUNCTIONS section; | |||
2014-05-26 | remove the ugly hack that saw two It macros used to render one item; replace | Jason McIntyre | |
with other ugly hack (.br): at least this way we can whack a ton of Pp, and it feels not quite as wrong; while here, fix Em abuse by using Ic for functions and Ar for argument names; i also fixed up the text of "s" a little to make it read better; | |||
2014-05-25 | don't use plural "arguments" in SYNOPSIS, since "..." makes it | Jason McIntyre | |
redundant; tweak the rest of the page to stop using both forms, and tweak usage(), which was wrong anyway, to match this; | |||
2014-05-24 | when ktrace() return ESRCH, the error is regarding the pid, not the pathname | Theo de Raadt | |
ok miod | |||
2014-05-23 | Use REG_STARTEND to permit searches to work past/across NUL bytes. | Philip Guenther | |
ok millert@ shadchin@ | |||
2014-05-23 | adjust the note in STANDARDS: passing args to the flags is not an | Jason McIntyre | |
extension, it's just we do it differently; ok millert | |||
2014-05-22 | If we have to realloc() "list" we need to zero out the new entries | Todd C. Miller | |
to match the behavior of the initial calloc(). The "cols" array does not actually need to be zeroed so use reallocarray() instead of calloc(). Also fix a memory leak of tbl and initialize the value of maxcols/maxentry in the assignment instead of in the ecalloc() call. OK espie@ | |||
2014-05-20 | Use errc/warnc to simplify code. | Philip Guenther | |
Also, in 'ftp', always put the error message last, after the hostname/ipaddr. ok jsing@ krw@ millert@ | |||
2014-05-19 | X509_free() the certificate if the server hostname check fails. | Jeremie Courreges-Anglas | |
No functional change. Reported by Mike Small and Maxime Villard. | |||
2014-05-19 | Explicitely initialize two static variables introduced in the previous | Jeremie Courreges-Anglas | |
commit, to please lteo@ | |||
2014-05-19 | HTTPS connections may see redirects, so initialize libcrypto and libssl | Jeremie Courreges-Anglas | |
only once, and reuse the crafted SSL_CTX for further connections. ok lteo@ | |||
2014-05-19 | Plug a small memory leak: if we pass checkin_init/checkin_update | Jeremie Courreges-Anglas | |
a revision thru pb.newrev, it will not be freed. From Fritjof Bornebusch, no objections from tech@ | |||
2014-05-19 | no more -K; | Jason McIntyre | |
2014-05-19 | kerberos leftovers | Ted Unangst | |
2014-05-18 | use reallocarray | Marc Espie | |
okay ian@, chl@ | |||
2014-05-18 | use reallocarray | Marc Espie | |
okay chl@, tedu@ | |||
2014-05-18 | a bit more reallocarray (and kill ecalloc, which isn't used) | Marc Espie | |
okay chl@ | |||
2014-05-17 | fix alloc idioms. watch out for emalloc that's actually a calloc in disguise | Marc Espie | |
okay chl@ tedu@ | |||
2014-05-17 | remove unused variable | Charles Longeau | |
ok tedu@ | |||
2014-05-16 | save up the failures for the end in the argc == 0. | Ted Unangst | |
help ok espie | |||
2014-05-16 | a few changes for new code to match local style | Ted Unangst | |
2014-05-16 | checksum mode can use magic pubkey finder too | Ted Unangst | |
2014-05-16 | rework -C (perfect candidate for using hash tables, really): | Marc Espie | |
insert files we want to check into a hash, parse SHA256 message on the fly, delete entries whose checksum match, then display entries that failed. This completely avoids allocating temporary storage for file names and checksums and removes the quadratic match (argv[i] vs line[n]). okay tedu@ | |||
2014-05-15 | remove unused variable | Charles Longeau | |
ok espie@ | |||
2014-05-15 | fix the band-aid error. | Marc Espie | |
tedu was bitten by the RETARDED interface in sha2.h (who names string LENGTH things that are actually buffer SIZES) ? make -C mode work again. okay beck@ | |||
2014-05-14 | let cpp do some of the work | Ted Unangst | |
2014-05-14 | spell out base64 in error messages | Ted Unangst | |
2014-05-14 | save some memory by reducing buffer sizes | Ted Unangst | |
2014-05-14 | recode base64 hashes if necessary | Ted Unangst | |