summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2005-09-15strip trailing slashes from any arguments passed to opencvs.Joris Vink
ok xsa@
2005-09-15check in cvs_mkadmin() wether we need to create or not theXavier Santolaria
CVS/Tag file. Sync the rest of the code accordingly; OK joris@.
2005-09-14knfJoris Vink
2005-09-13ensure that stdio fds are attached; ok deraadt@Damien Miller
2005-09-13fix conditions when the base directory should be passed to the commandJoris Vink
callback. fixes local commands with directories as arguments (like 'add'). problem found and OK xsa@
2005-09-13let's add directories too; testing+ok joris@.Xavier Santolaria
2005-09-13unbreak opencvs serverJoris Vink
ok xsa@
2005-09-12remove trailing spacesNikolay Sturm
fix some typos in german entries add missing entry for liberation of auschwitz in german calendar
2005-09-12- add -r to usage()Jason McIntyre
- the description of -p uses `maxprocs' as the arg identifier, as does usage(), so use it in SYNOPSIS too;
2005-09-11only remove and free a cvsroot struct if it has been added inJoris Vink
cvsroot_parse(). fixes segfaults opencvs has been receiving when cvsroot_parse() fails. "go ahead" xsa@
2005-09-10Make xargs run [utility] program even when zero arguements are provided,Brad Smith
makes xargs POSIX compliant. Original diff from jason@, better diff provided by millert@ Resolves PR 4262 ok deraadt@ millert@
2005-09-10for sysctl records, do not expect more than CTL_MAXNAME additionalTheo de Raadt
"faked" arguments; ok uwe espie
2005-09-09typo; from mark at mcs.vuw.ac.nz, bug #1082Markus Friedl
2005-09-09better verbiageMichael Shalayeff
2005-09-07make sure the administrative files that the commands depend on areJoris Vink
present before we try to continue. ok xsa@
2005-09-07more stuffs for the CVS/Tag file; input+ok jmc@.Xavier Santolaria
2005-09-07tweaks;Jason McIntyre
ok espie@
2005-09-07sort options and sync usage()Jason McIntyre
2005-09-07split.1:Jason McIntyre
add the relevant arguments to the options synopsis for -b and -l; tidy up the formatting of [-b byte_count[k|m]]; make SYNOPSIS arg for -l match its description; split.c: sync usage();
2005-09-07enforce chanid != NULL; ok djmMarkus Friedl
2005-09-06add robert moogMichael Shalayeff
2005-09-06add solidarnoscMichael Shalayeff
2005-09-06reoder to start at new year and fix a couple of entriesMichael Shalayeff
2005-09-06pesky comma;Jason McIntyre
2005-09-06make some of the stat utility pages reference each other;Jason McIntyre
idea from a mail to misc@ from simon dassow;
2005-09-06recognize flac format; from netbsd viaFederico G. Schwindt
Okan Demirmen <okan@demirmen.com> to tech@; deraadt@ ok.
2005-09-06more bits for the local remove command support; OK joris@.Xavier Santolaria
2005-09-06Fix example that uses rs(1)Todd C. Miller
2005-09-06less diff in -g/not -g.Marc Espie
mentioned by otto@
2005-09-06finally make our m4 SusV3-compliant.Marc Espie
- changecom and changequote have a simple definition (that matches gnu-m4, coincidentally, so we no longer need two distinct modes for these) - off-by-one bug in -s, this finally works. - reorder main parser loop, so that we can use alphabetic constructs in quotes/comments. - rename putback to pushback, this matches comments, and makes more sense. - more uniform (and updated) description of changequote/changecom. - new, systematic regression tests of comments/quotes. - framework to test -s: one perl script to reconstitute `full' files with all line numbers, so that we can verify the output without needing a complete match. okay otto@, fries@
2005-09-06Make sure entries do not go away when we run through them in the file code.Joris Vink
Fixes corrupt Entry files. Problem found by Mike Pechkin, thanks.
2005-09-05add warning message if file status is unknown;Xavier Santolaria
2005-09-05let's move forward with the local add command;Xavier Santolaria
2005-09-05add trace message (-t);Xavier Santolaria
2005-09-05use CVS_ENT_MAXLINELEN;Xavier Santolaria
2005-09-05add new functions: cvs_write_tagfile() and cvs_parse_tagfile(),Xavier Santolaria
write and parse a CVS/Tag file. Ok joris@.
2005-09-05style;Xavier Santolaria
2005-08-314.2Markus Friedl
2005-08-30destroy credentials if krb5_kuserok() call fails. Stops credentials beingDamien Miller
delegated to users who are not authorised for GSSAPIAuthentication when GSSAPIDeletegateCredentials=yes and another authentication mechanism succeeds; bz#1073 reported by paul.moore AT centrify.com, fix by simon AT sxw.org.uk, tested todd@ biorn@ jakob@; ok deraadt@
2005-08-30remove -W from synopsis; ok deraadt@ jmc@David Krause
2005-08-27Fix off-by-one when moving a line to the end of the buffer. InsteadTodd C. Miller
of doing our own memmove() (incorrectly) just use memmove(). Bug found by Matthias Scheler <tron@zhadum.de>. OK deraadt@ henning@ krw@
2005-08-26kill bad punctuation;Jason McIntyre
2005-08-25Prevent zs_stackp from going past the end of zs_htab. May happenTodd C. Miller
for corrupted files. Based on a diff from miod@; OK mickey@
2005-08-24checkout -D also implies -P; ok jmc@.Xavier Santolaria
2005-08-24range check months 1-12; ok tedu millert othersTheo de Raadt
2005-08-23cvs does not remove directories unless it's empty and thatXavier Santolaria
the checkout or update commands are used with the -P option. "go ahead and commit" jmc@.
2005-08-23use vis() consistently in field printing.Marc Espie
Replace vs() with a version that logs its memory usage, so that it can be cleaned up after each entry. okay millert@, delegated by deraadt@
2005-08-23preceeded -> precededJason McIntyre
2005-08-22document $CVSROOT/CVSROOT/history file; ok jmc jorisXavier Santolaria
2005-08-22- handle removal of a freshly added fileXavier Santolaria
- fix crash if we specify -f and the file is not on disk anymore ok joris@.