summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2007-05-14use sys/queue macros instead of accessing fields directly.Pierre-Yves Ritschard
no binary change. ok krw@
2007-05-12Prevent core dump if strpbrk() returns NULL. Reported to bugs@ byRay Lai
Pav Lucistnik <pav at FreeBSD>, thanks! OK otto@.
2007-05-12Change 0x30 to more readable '0'.Ray Lai
OK xsa@.
2007-05-11typo in previous commit;Xavier Santolaria
2007-05-11fix format of the CVSROOT string in comments.Xavier Santolaria
from Tobias Stoeckmann. OK niallo@.
2007-05-11Sync with editit from sendbug.Ray Lai
2007-05-11cvs_logmsg_edit no longer fails with ECHILD.Ray Lai
Add comment describing cvs_logmsg_edit usage.
2007-05-11Sync with editit from sendbug.Ray Lai
2007-05-11If fork fails with EAGAIN, ignore errno and fail. Looping justRay Lai
worsens the problem. cloder@ and deraadt@ agree.
2007-05-11Instead of returning -1 and setting errno to ECHILD if the editorRay Lai
has a non-zero exit status, just return the exit status on success. Hard errors still return -1. If the editor is killed, return -1 and set EINTR.
2007-05-11Delinting from tbert <bret dot lambert at gmail dot com>Ray Lai
OK moritz@
2007-05-10Simplify cvs_vlog() to avoid endless fatal() loop on some error case.Xavier Santolaria
Problem spotted and fix submitted by Tobias Stoeckmann. OK niallo@.
2007-05-10ftsopen -> fts_open; partly from Alexander Holupirek, documentation/5472Jason McIntyre
ok simon art
2007-05-09cvs_splitpath() isn't used anymore; from Tobias Stoeckmann.Xavier Santolaria
2007-05-09- we do not have -H, zap it.Xavier Santolaria
- add missing `x' flag in getopt() and sort flags. - sync usage(). Based on initial diff from Tobias Stoeckmann.
2007-05-09typo in license found by ray; verified repair using my old archives...Theo de Raadt
2007-05-09Be more consistent about when dmesg is attached to template.Ray Lai
Specifically, -V.
2007-05-09Remove shadowed, redundant variable. From Bret Lambert.Ray Lai
OK jaredy@.
2007-05-07Compare chars with '\0', not NULL.Ray Lai
2007-05-07Replace manual loops with strcspn and plug realloc memory leaks.Ray Lai
OK jaredy@ and moritz@.
2007-05-07Simplify some loops.Ray Lai
OK jaredy@ and moritz@.
2007-05-06Restore signals before returning.Ray Lai
2007-05-06Save and restore signals once instead of each time fork fails withRay Lai
EAGAIN.
2007-05-06Grammar.Ray Lai
2007-05-05Localize variables and don't do anything after exit().Ray Lai
OK espie@, moritz@, and jaredy@.
2007-05-04warren zevon's deathJasper Lievisse Adriaanse
from Matthew Clarke <clamat at telus.net>
2007-05-02like the init command, version does not take any extra args.Xavier Santolaria
from Tobias Stoeckmann.
2007-05-02strtol() -> strtonum(); from Tobias Stoeckmann.Xavier Santolaria
OK ray@ otto@.
2007-05-01use strtonum; ok millert@Jason Dixon
2007-04-30- checkout from a read-only repository implies -l.Xavier Santolaria
- -V and -Q are mutually exclusive, -Q takes precedence if both are specified though. initial diff from Tobias Stoeckmann, tweaks by jmc@.
2007-04-30make usage() __dead; from Tobias Stoeckmann.Xavier Santolaria
2007-04-30missing header; from Tobias Stoeckmann.Xavier Santolaria
2007-04-28the options list must be alphabetically sortedIgor Sobrado
ok by jmc@
2007-04-27typo; mikolaj.kucharski@gmailTheo de Raadt
2007-04-26replace REV, REV1 and REV2 with rev, rev1 and rev2, respectively;Igor Sobrado
substitute BRANCH, BRANCH1 and BRANCH2 with branch, branch1 and branch2 ok by jmc@, niallo@, and xsa@
2007-04-26replace D, D1 and D2 by date, date1 and date2 respectively;Igor Sobrado
date1<date2 implies date2>date1, not date2<date1 ok by jmc@, niallo@ and xsa@
2007-04-26`[-sstate[:rev]]' is not available in rcs(1)Igor Sobrado
ok by jmc@, niallo@, and xsa@
2007-04-26the message returned by usage() must fit on a 80-column displayIgor Sobrado
ok by jmc@, niallo@, and xsa@
2007-04-26compatibility (`do nothing') options do not need to be announcedIgor Sobrado
in the synopsis/usage(); we do not want `[-L label]' three times ok by jmc@, niallo@, and xsa@
2007-04-26replace tabs by spaces in the message returned by usage()Igor Sobrado
ok by jmc@, niallo@, and xsa@
2007-04-25Copy signal-safe edit function from sendbug.Ray Lai
OK millert@, threatened by deraadt@.
2007-04-25Remove extra code that only applies to setuid/setgid programs.Ray Lai
``Slacker! We'll burn your hands if you don't get going!'' deraadt@
2007-04-24It's never too late to write "too late" correctly.Miod Vallat
2007-04-24exeption -> exceptionMiod Vallat
2007-04-24replace D, D1 and D2 by date, date1 and date2 respectively;Igor Sobrado
date1<date2 implies date2>date1, not date2<date1 ok by jmc@, niallo@ and xsa@
2007-04-24changes "Usage" to "usage"; sorts options list in cvs history;Igor Sobrado
the argument to -z is tz, not timezone; argument names to flags should use lowercase letters; cvs's usage() output should fit on a 80-column display ok by jmc@, niallo@ and xsa@
2007-04-24support non-integral refresh intervals, possibly as low as 0.1s.Ted Unangst
this makes it more useful for real time display of fast changing stats ok art deraadt
2007-04-23Remove duplicate commmentTodd C. Miller
Simplify -j parsing Use warnx() not errx() for illegal -j option so that usage() gets called. When parsing -o don't go past the end of argv Sync usage() with man page, use __progname and make it line up nicely Based on a diff from Tobias Stoeckmann
2007-04-23chopping the end of this sentence off made more sense than fixing it;Jason McIntyre
ok xsa
2007-04-23Remove debug() left over from development. ok deraadt@Darren Tucker