Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-31 | include uvm_km_pages_free into the pool accounting as it is the main ↵ | Michael Shalayeff | |
consumer of it; feedback from millert@ and tedu@ ok | |||
2006-01-31 | errors in cvs_checkout_init() are definitly fatal. | Xavier Santolaria | |
2006-01-31 | "scp a b c" shouldn't clobber "c" when it is not a directory, report and | Damien Miller | |
fix from biorn@; ok markus@ | |||
2006-01-31 | fix local arbitrary command execution vulnerability on local/local and | Damien Miller | |
remote/remote copies (CVE-2006-0225, bz #1094), patch by t8m AT centrum.cz, polished by dtucker@ and myself; ok markus@ | |||
2006-01-31 | use "proxy_protocol" as the arg to -X, not "proxy_version"; | Jason McIntyre | |
from ray lai; | |||
2006-01-30 | strerror() -> rcs_errstr() when passing rcs_errno as argument; | Xavier Santolaria | |
2006-01-30 | - make fatal() exit with code 1 instead of 255. makes us more compatible | Niall O'Higgins | |
with gnu on errors. ok xsa@ | |||
2006-01-30 | remove an incorrect sentence; | Jason McIntyre | |
reported by roumen petrov; ok djm markus | |||
2006-01-30 | mark channel as write failed or dead instead of read failed on error | Reyk Floeter | |
of the channel output filter. ok markus@ | |||
2006-01-29 | - fix a bug where co -l would fail with "permission denied" if the working | Niall O'Higgins | |
file was read-only. ok joris@ | |||
2006-01-29 | spread some fatal() here too; | Xavier Santolaria | |
2006-01-29 | RCS_PARSE_FULLY needed here too, as in rlog(1); | Xavier Santolaria | |
2006-01-28 | Remove duplicate cgetstr() call introduced by accident. Andrey Matveev | Todd C. Miller | |
2006-01-28 | - don't segfault on rcsnum overflow. | Niall O'Higgins | |
ok joris@ | |||
2006-01-28 | add -- after options, so files with leading - work. | Ted Unangst | |
pr 4993 from jason. | |||
2006-01-27 | CVS_EX_BADROOT return code is not worth keeping; | Xavier Santolaria | |
2006-01-27 | more errors handling cleanup; | Xavier Santolaria | |
2006-01-27 | cvs_mkadmin() cannot return < 0 anymore; | Xavier Santolaria | |
2006-01-27 | errors handling cleaning here too; | Xavier Santolaria | |
2006-01-27 | errors handling cleaning here too; | Xavier Santolaria | |
2006-01-27 | errors handling cleaning; | Xavier Santolaria | |
2006-01-27 | use fatal(); | Xavier Santolaria | |
2006-01-26 | strings cleanup; OK niallo@. | Xavier Santolaria | |
2006-01-26 | add a section on verifying host keys in dns; | Jason McIntyre | |
written with a lot of help from jakob; feedback dtucker/markus; ok markus | |||
2006-01-25 | implement HTTP proxy authentication support, very useful in a ssh_config | Damien Miller | |
ProxyCommand; ok beck@ | |||
2006-01-25 | this snprintf() occurence should have been removed in previous commit. | Xavier Santolaria | |
2006-01-25 | use cvs_rcs_getpath() here too + some strings cleanup whilst here. | Xavier Santolaria | |
2006-01-25 | strings cleanup; OK niallo@. | Xavier Santolaria | |
2006-01-25 | use cvs_rcs_getpath() instead of duplicating code. | Xavier Santolaria | |
2006-01-25 | move subsections to full sections; | Jason McIntyre | |
2006-01-25 | move the options description up the page, and a few additional tweaks | Jason McIntyre | |
whilst in here; ok markus | |||
2006-01-25 | snprintf() cleanup; OK niallo@. | Xavier Santolaria | |
2006-01-25 | add support for `-l[lockers]'. Some (needed) cleanup will follow. | Xavier Santolaria | |
Test & OK niallo@. | |||
2006-01-25 | snprintf() cleanup; OK niallo@. | Xavier Santolaria | |
2006-01-25 | lint says Pflag isn't needed. i concur | Ted Unangst | |
2006-01-24 | fclose file stream before opening a new one. | Otto Moerbeek | |
2006-01-24 | print locker's name if revision is locked; | Xavier Santolaria | |
2006-01-23 | Include <sys/param.h> instead of <sys/types.h> so we get MAXHOSTNAMELEN | Todd C. Miller | |
2006-01-23 | display usage if an unknown option is specified; | Xavier Santolaria | |
2006-01-23 | add support for `-sstates' and `-w[logins]' options; tested and OK niallo@. | Xavier Santolaria | |
2006-01-23 | snprintf() -> strlcpy()/strlcat(); OK niallo@. | Xavier Santolaria | |
2006-01-23 | print complete command name in usage, not aliases. | Xavier Santolaria | |
2006-01-23 | wrap usage; | Xavier Santolaria | |
2006-01-23 | Make man page reflect current reality of play command. jmc@ cleaned | Kenneth R Westerback | |
up version of my original diff. ok jmc@ | |||
2006-01-22 | - drop privs before running krb5 code | Bjorn Sandell | |
- avoid calling krb5_get_init_creds_password(3) with principal == NULL - try to change the kerberos password if there is a ticket file help from millert@, ok beck@ | |||
2006-01-21 | b^Hlsd license! from Mischa Diehm | Michael Shalayeff | |
2006-01-20 | use stdint.h where appropriate. okay millert@ | Marc Espie | |
2006-01-20 | typos in comments; | Xavier Santolaria | |
2006-01-20 | - word change, agreed w/ markus | Jason McIntyre | |
- consistency fixes | |||
2006-01-20 | Clean up command line parsing, don't accept trailing garbage, add in | Kenneth R Westerback | |
missing command line forms, zero variables that will not be filled in by a particular sscanf() call. Make 'play tr1 m1:s1 m2:s2' play from the point in time 'tr1 m1:s1' to the point in time 'm2:s2', instead of from 'tr1 m1:s1' for a period of m2:s2. Documenting this command is next. Closes last issues Juha Erkilla pointed out in PR #4957. Tested by Juha. |