Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-09 | correct .Dt; from Tim van der Molen | Jason McIntyre | |
2009-03-05 | Call endusershell() at the end of ok_shell(), making a copy of the | Todd C. Miller | |
(possibly) expanded shell as needed. OK deraadt@ | |||
2009-03-05 | document what these functions do so I don't ever have to recuse into | Damien Miller | |
b64_pton/ntop to remember their return values | |||
2009-03-05 | refactor the (disabled) Schnorr proof code to make it a little more | Damien Miller | |
generally useful | |||
2009-03-01 | Don't rely on non-standard setenv() behavior. | Todd C. Miller | |
2009-02-27 | say that aucat can act as audio server in the NAME section | Alexandre Ratchov | |
ok jmc | |||
2009-02-25 | Checking if a file is ASCII should only be done when diffing, because | Ray Lai | |
the non-ASCII characters could be printed to the screen. For checking in files, checking out files, merging files, and removing revisions of files, we do so regardless of whether the files are ASCII or binary. Fixes PR6031. OK joris and deraadt. | |||
2009-02-23 | unused var | Joris Vink | |
2009-02-23 | we no longer push out Set-sticky to the client when writing | Joris Vink | |
our Tag file on the server or in cvs_mkpath(), this caused problems for the "fast checkout" mechanism when a tag was supplied. instead, write out any directory sticky tag when we are checking out a file in that directory, this way we can use our "fast checkout" mechanism (no /tmp required) even for -r and -d without breaking working copies because they were missing CVS/Tag files. "looks good" tobias@ | |||
2009-02-23 | Properly convert between gmt and localtime for unchanged files as client. | Tobias Stoeckmann | |
Problem reported by Jesus Sanchez (zexel08 at gmail dot com). ok joris | |||
2009-02-23 | matthew haub pointed out that pid may be used uninitialized in some contexts | Ted Unangst | |
ok deraadt | |||
2009-02-23 | openssh-5.2 | Damien Miller | |
2009-02-22 | missing period | Damien Miller | |
2009-02-22 | don't advertise experimental options | Damien Miller | |
2009-02-21 | we use kvm_openfiles() not kvm_open(); Amarendra Godbole | Theo de Raadt | |
2009-02-21 | Properly convert dates between timezones before comparison. | Tobias Stoeckmann | |
ok joris | |||
2009-02-21 | Added missing newlines in error messages. | Tobias Stoeckmann | |
ok dtucker | |||
2009-02-21 | fix grammar | Joris Vink | |
from <dawedawe@gmx.de> | |||
2009-02-21 | use FILE_ON_DISK flags when we need to verify if a file | Joris Vink | |
exists in the working copy or not instead of checking fd being -1 since this can differ in server or local mode. | |||
2009-02-21 | bump to match release version | Joris Vink | |
2009-02-21 | use file_flags for 2 more reasons: | Joris Vink | |
- mark a file as being inside the Attic/ - mark a file as existing in the working copy (both in local and remote mode) this way we no longer will need to check if cf->fd == -1 and think about wether or not we are in local or remote mode. | |||
2009-02-21 | in cvs_mkpath() always look for an existing CVS/Repository file | Joris Vink | |
unless we're running checkout or export. otherwise we'll end up accidently overwriting it in certain cases on the client side of things. | |||
2009-02-21 | correct Set-sticky and Clear-sticky responses to | Joris Vink | |
include the right repository path. we messed up some cvs implementations by doing this incorrectly. | |||
2009-02-21 | cleanup of CVSROOT, we have no need for cr_flags, | Joris Vink | |
cr_version or cr_vrmask[] its all very old stuff. remove all macros using cr_vrmask as well, no use for them. | |||
2009-02-21 | alter cvs_file_get() so it takes flags instead of one set | Joris Vink | |
value for user_supplied. allow us to carry any important file flags over to cvs_file's later on. makes it easier for what i have coming. | |||
2009-02-18 | fix off by one character when constructing $Mdocdate$. | Joris Vink | |
problem found by todd@, ok sthen@ | |||
2009-02-18 | signature should hash over the entire group, not just the generator | Damien Miller | |
(this is still disabled code) | |||
2009-02-17 | sync with revised default ciphers; pointed out by dkrause@ | Damien Miller | |
2009-02-15 | make rdist silently ignore special file types which cannot be moved | Theo de Raadt | |
(well, if you turn on debug it will still tell you) from Tim van der Molen <tbvdm@xs4all.nl | |||
2009-02-15 | in a secure YP context, a chpass would whack the user's password to * | Theo de Raadt | |
which is clearly not the intent. PR 4177, fix from schwarze@usta.de | |||
2009-02-15 | exmaple -> example; | Jason McIntyre | |
2009-02-15 | add our temporary RCS file to our temp_files worklist in case | Joris Vink | |
for some reason we get interrupted before calling rename(). we hate leaving behind temporary files. | |||
2009-02-15 | bump version to match next release | Joris Vink | |
2009-02-15 | support rlog -d | Joris Vink | |
prodded & tested by sthen@ | |||
2009-02-14 | mention that eow and no-more-sessions extensions are sent only to | Damien Miller | |
OpenSSH peers | |||
2009-02-13 | be more sane in handling the given repository path | Joris Vink | |
in cvs_client_updated(). | |||
2009-02-13 | style and typos fixes from Thomas Pfaff | Alexandre Ratchov | |
2009-02-13 | check for enc !=NULL in packet_start_discard | Markus Friedl | |
2009-02-12 | kill trailing whitespace; | Jason McIntyre | |
2009-02-12 | document RemoteForward usage with 0 listen port | Damien Miller | |
2009-02-12 | consistency: Dq => Ql | Damien Miller | |
2009-02-12 | document -R0:... usage | Damien Miller | |
2009-02-12 | some paranoia: check that the serialised key is really KEY_RSA before | Damien Miller | |
diddling its internals | |||
2009-02-12 | tighten check for -R0:... forwarding: only allow dynamic allocation if | Damien Miller | |
want_reply is set in the packet | |||
2009-02-12 | support remote port forwarding with a zero listen port (-R0:...) to | Damien Miller | |
dyamically allocate a listen port at runtime (this is actually specified in rfc4254); bz#1003 ok markus@ | |||
2009-02-10 | mark these utilities as being largely posix compliant or, in the case of | Jason McIntyre | |
nm, as not being posix compliant; | |||
2009-02-10 | STANDARDS: | Jason McIntyre | |
mark these utilities as being either optional (SD/FR/UP); or as being compliant only with XPG4 (XSI); strip.1 and talk.1 are tweaked purely for consistency; thanks otto for feedback | |||
2009-02-09 | STANDARDS: these applications are no longer optional in posix | Jason McIntyre | |
2009-02-08 | updates to IEEE Std 1003.1-2008; | Jason McIntyre | |
2009-02-08 | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | Jason McIntyre | |
updates to follow; |