summaryrefslogtreecommitdiffstats
path: root/usr.bin/rcs/rcsutil.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* kill const and string artithmetic related warnings; ok millert@otto2017-08-291-2/+2
* The -I flag is documented but not implemented. This fixes that andmillert2016-07-041-7/+10
* Convert xfree to free. From Fritjof Bornebusch. ok deraadtnicm2015-06-131-15/+14
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-4/+4
* An internal function called xrealloc() is actually a fail-hardderaadt2014-12-011-2/+2
* Zap some stored values never read; From Fritjof Bornebusch; ok nicm@otto2014-10-101-3/+1
* use calloc, from Benjamin Baiertedu2014-05-291-5/+3
* remove wrong casts; ok millertderaadt2013-04-161-2/+2
* add missing header needed by futimes()chl2010-12-061-1/+2
* Remove the need for rp_file in parser structure, instead keep only onetobias2010-10-201-4/+7
* Set rcs_suffixes to default value on initialization.tobias2010-09-081-5/+1
* Make BUFs autoextend by default. This was already done in OpenCVSray2010-07-281-4/+4
* Reduce variable/function name and whitespace differences betweenray2010-07-231-10/+10
* properly free suffixes.joris2008-05-101-1/+3
* remove unused functionchl2008-01-041-11/+1
* Sync with cvs:ray2007-07-191-2/+2
* Since xrealloc dies on failure it is safe to directly assign to theray2007-05-291-4/+2
* As done in OpenCVS, general includes cleanup sweep. OK otto@.xsa2007-02-271-2/+9
* If a ,suffix file is given as an arg to ci and co, strip it. Avoidsotto2007-02-221-1/+21
* Fix const inconsistencies, void pointer artithmetic;xsa2007-02-221-3/+3
* remove some un-needed buffer NUL-termination. in openrcs, diff3 is already NUL-terminating itsniallo2007-01-111-4/+2
* Clear EOF before prompting user for input.ray2007-01-101-1/+3
* - fix support for checking out binary files.niallo2007-01-021-30/+20
* Simplify stripping of write bits from file mode.millert2006-11-091-10/+13
* - convert some warnx() to warn(), which fixes a few stupidly un-informative error messages (found by tom@)niallo2006-10-121-3/+4
* Remove debugging printf accidentally committed.ray2006-09-251-2/+1
* - handle deltatexts which don't end in a newline character. fixes PR #5241.niallo2006-09-221-2/+3
* Use S_IS* macros insted of masking with S_IF* flags. The latter mayotto2006-09-191-2/+2
* Improve rcs_buf_load() by setting errno appropriately on failure andray2006-08-161-3/+6
* rcs_splitlines() can never return NULL, so don't check for it.ray2006-07-081-6/+3
* - plug a memory leakniallo2006-07-041-1/+3
* - correctly handle binary files; say bye bye to using c strings for deltatexts.niallo2006-06-031-15/+21
* Remove a lot of xstrdup() calls in getopt() loops, which are usuallyray2006-05-281-3/+3
* Rename RCSFILE.fd to RCSFILE.rf_fd, plus minor spacing nits. Noray2006-05-271-3/+3
* Remove rcs_statfile(). It was just a wrapper for rcs_choosefile(),ray2006-05-271-22/+1
* rcs_choosefile() no longer returns char *, it returns a fileray2006-05-271-4/+3
* Remove unused variable leftover from race condition cleanup.ray2006-05-091-6/+3
* Use warnx() when errno is not set.ray2006-05-081-2/+2
* Check return values for all strlcpy, and strlcat calls.ray2006-04-291-3/+5
* zap util.[ch] and move the content into rcsutil.[ch].xsa2006-04-271-1/+155
* prevent file races by obtaining an fd for the RCS file andjoris2006-04-261-46/+57
* fork our code we shared between openrcs/cvs into the openrcs dir.joris2006-04-261-13/+13
* quote strings consistently.xsa2006-04-251-2/+2
* fatal() -> err()/errx() as we try to not depend on heavy cvs_log().xsa2006-04-251-11/+11
* o Better match GNU behavior (a bare -t does NOT read from stdin,ray2006-04-241-1/+33
* move shared functions into rcsutil.[ch]; this makes rcsprog.c cleaner;xsa2006-04-211-0/+445