summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2004-08-23anotherHenning Brauer
2004-08-23Make behavior if the utility was not found or could not be executedTodd C. Miller
match the documentation. The old code was making assumptions about how vfork() is implemented which are not valid on OpenBSD. From Jason Ish.
2004-08-23Do %s replacement for LESSOPEN and LESSCLOSE ourselves insteadTodd C. Miller
of using snprintf(). Based on a patch from Brent Graveland. Ok tdeval@ and otto@
2004-08-23Remove duplicate getuid(), suggested by & ok markus@Darren Tucker
2004-08-23Use permanently_set_uid() in ssh and ssh-keysign for consistency, matchesDarren Tucker
change in Portable; ok markus@
2004-08-23typo, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markusDamien Miller
2004-08-23fix error path, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markusDamien Miller
2004-08-20grok STT_SECTION and beautify STT_OBJECTMichael Shalayeff
2004-08-19STT_FUNC can be an absolute tooMichael Shalayeff
2004-08-19bruce leeMichael Shalayeff
2004-08-18- .Xr utmp 5Jason McIntyre
- sort options and sync usage()
2004-08-18- Xr w 1Jason McIntyre
- sort options and sync usage()
2004-08-16Make the README file a little more informative and explain how to installJean-Francois Brousseau
the software on OpenBSD systems.
2004-08-163.9Markus Friedl
2004-08-13Cleanup the code, will need reworkJean-Francois Brousseau
2004-08-13More unused variablesJean-Francois Brousseau
2004-08-13Remove unused variablesJean-Francois Brousseau
2004-08-13* add an entry for directories when we create themJean-Francois Brousseau
* when writing a directory entry, skip the revision and timestamp
2004-08-13Sample server config fileJean-Francois Brousseau
2004-08-13Make add work in client modeJean-Francois Brousseau
2004-08-13When the mtime is (time_t)-1, print the dummy timestamp string insteadJean-Francois Brousseau
of a bogus date
2004-08-13Handle RFC822 and ctime(3) style timestampsJean-Francois Brousseau
2004-08-13Ditch the 'ce_timestamp' field in favor of 'ce_mtime', which keepsJean-Francois Brousseau
the timestamp in time_t instead of a string
2004-08-13Assume the parent's Entries file is always opened when receiving a newJean-Francois Brousseau
entry to add, and move to using the `ce_mtime' field of the entry so we don't end up adding data from a local variable that was discarded
2004-08-13When comparing a file's timestamp against the one found in the EntriesJean-Francois Brousseau
file, do a straight compare between the time_t's instead of generating asctime()-style strings and doing strcmp(), and make sure that we have a repository string if we create the directory, so the file gets created when calling cvs_mkadmin()
2004-08-13Fix line numbers off-by-one in error messages, from tortay at cc.in2p3.frDarren Tucker
ok markus@, djm@
2004-08-13Leave stderr alone for the momentJean-Francois Brousseau
2004-08-13Add a macro for dummy timestamp stringsJean-Francois Brousseau
2004-08-13extra check for no message case; ok markus, deraadt, hshoexer, henningDamien Miller
2004-08-13Add cvs_datesec() to calculate the time_t value corresponding to aJean-Francois Brousseau
ctime(3)-style date string
2004-08-13kill whitespace at eol;Jason McIntyre
2004-08-12improve SSHFP documentation; ok deraadt@Jakob Schlyter
2004-08-12If we create a directory with cvs_file_create(), keep a pointer to theJean-Francois Brousseau
newly created Entries file in the directory data
2004-08-12Add error checking and move the protocol calls so we only send them ifJean-Francois Brousseau
the cvs server is remote
2004-08-12Unused variableJean-Francois Brousseau
2004-08-12Make `init' work in client modeJean-Francois Brousseau
2004-08-12Don't attempt to send the `Root' request if the operation is an `init'Jean-Francois Brousseau
2004-08-12UpdateJean-Francois Brousseau
2004-08-12Fix handling of unknown directoriesJean-Francois Brousseau
2004-08-12Implement cvs_file_getspec() so we can finally deal with explicit fileJean-Francois Brousseau
arguments on the command-line, and fix a bunch of minor issues
2004-08-12Don't bother about the server's standard error just yetJean-Francois Brousseau
2004-08-12Before stating the Root file, make sure we actually have something toJean-Francois Brousseau
write in it
2004-08-12When creating a new Entries file, make sure we put one 'D' instead ofJean-Francois Brousseau
leaving the file empty
2004-08-12Use cvs_files to build the file hierarchy and handle explicit argumentsJean-Francois Brousseau
correctly
2004-08-12After the command is done executing, if cvs_files isn't NULL, free theJean-Francois Brousseau
file structure
2004-08-12If the directory we are updating is unknown, send a Questionable requestJean-Francois Brousseau
instead of attempting to connect to an invalid root specification
2004-08-12typo in error message, spotted by moritz AT jodeit.orgDamien Miller
2004-08-11use atomicio instead of homegrown equivalents or read/write.Anil Madhavapeddy
markus@ ok
2004-08-11some signed/unsigned int comparison cleanups; markus@ okAnil Madhavapeddy
2004-08-11Stop search when -q option is given and a match is found. Found by jmc@Otto Moerbeek
ok millert@