| Commit message (Expand) | Author | Age | Files | Lines |
* | Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@ |  millert | 2015-02-05 | 1 | -1/+2 |
* | An internal function called xrealloc() is actually a fail-hard |  deraadt | 2014-12-01 | 1 | -2/+2 |
* | Improve buf.c comments, from zinovik. |  nicm | 2010-09-08 | 1 | -3/+44 |
* | Use SIZE_LEFT macro to determine left size instead of calculating with |  tobias | 2010-09-08 | 1 | -5/+3 |
* | change returning type to void like it is done in OpenRCS:buf_release() |  zinovik | 2010-08-01 | 1 | -3/+3 |
* | introduce macro SIZE_LEFT and function buf_grow() from OpenRCS |  zinovik | 2010-07-31 | 1 | -15/+24 |
* | Reduce variable/function name and whitespace differences between |  ray | 2010-07-23 | 1 | -30/+31 |
* | Rename a bunch of variables and functions, removing the cvs_/rcs_ |  ray | 2010-07-23 | 1 | -2/+2 |
* | remove unused functions, definitions and outdated comments |  joris | 2009-03-25 | 1 | -141/+12 |
* | kill SIZE_LEFT() macro, no longer used |  joris | 2009-03-23 | 1 | -3/+1 |
* | New trigger framework that allows us to run the required scripts |  joris | 2008-06-10 | 1 | -1/+12 |
* | While allocation memory, make sure that file sizes are smaller than SIZE_MAX. |  tobias | 2008-03-09 | 1 | -1/+3 |
* | correct usage of lseek(2); |  joris | 2008-03-08 | 1 | -2/+2 |
* | prevent file races |  joris | 2008-02-27 | 1 | -4/+7 |
* | Cleanup buf implementation: |  tobias | 2008-02-11 | 1 | -48/+13 |
* | (f)utimes takes sys/time.h |  tobias | 2008-02-03 | 1 | -1/+2 |
* | missing header for mkstemp |  chl | 2007-09-25 | 1 | -1/+2 |
* | Imported atomicio interface. |  tobias | 2007-09-17 | 1 | -33/+7 |
* | correct error string in cvs_buf_load_fd() to match the function. |  joris | 2007-08-29 | 1 | -2/+2 |
* | more typo shizzle from Igor Zinovik. |  joris | 2007-08-29 | 1 | -2/+2 |
* | Correct function name in fatal(). From Igor Zinovik. |  ray | 2007-08-09 | 1 | -2/+2 |
* | Since xrealloc dies on failure it is safe to directly assign to the |  ray | 2007-05-29 | 1 | -5/+2 |
* | general includes cleanup sweep. ok joris@ niallo@ |  otto | 2007-02-22 | 1 | -5/+7 |
* | Simplify cvs_buf_differ(). Also cvs_buf_differ(), a comparison |  ray | 2007-02-21 | 1 | -21/+4 |
* | Fix const inconsistencies, void pointer artithmetic and a few other |  otto | 2007-02-19 | 1 | -3/+3 |
* | Remove cb_cur or replace with cb_buf; cb_cur was the same as cb_buf |  ray | 2007-02-02 | 1 | -21/+10 |
* | Remove unused and buggy {cvs,rcs}_buf_set functions. |  ray | 2007-02-02 | 1 | -35/+1 |
* | Remove file mode argument from {cvs|rcs}_buf_write_stmp(). We |  ray | 2006-07-08 | 1 | -6/+2 |
* | add cvs_buf_load_fd() which does the same as cvs_buf_load() |  joris | 2006-06-14 | 1 | -16/+19 |
* | unused var |  joris | 2006-05-29 | 1 | -2/+2 |
* | add a way to look if a buffer differs from another one |  joris | 2006-05-28 | 1 | -1/+27 |
* | commit the new opencvs code, i have been hacking on |  joris | 2006-05-27 | 1 | -15/+16 |
* | spacing |  deraadt | 2006-04-14 | 1 | -2/+2 |
* | remove a metric buttload of excessive () |  deraadt | 2006-04-14 | 1 | -2/+2 |
* | fix the obviously broken cvs_buf_set(), so we don't end up |  joris | 2006-04-13 | 1 | -4/+8 |
* | xmalloc(); memset(); -> xcalloc(); |  ray | 2006-04-12 | 1 | -5/+4 |
* | Change cvs_buf_grow() to return void, since it cannot fail, and |  ray | 2006-04-11 | 1 | -19/+11 |
* | make sure we add the correct name mkstemp(3) creates for us |  joris | 2006-04-10 | 1 | -1/+7 |
* | - use fchmod() instead of chmod() in cvs_buf_write_stmp(), makes |  niallo | 2006-04-10 | 1 | -5/+9 |
* | cvs_buf_copy() and cvs_buf_peek() are not used by usr.bin/rcs; OK niallo@. |  xsa | 2006-04-06 | 1 | -36/+38 |
* | Use variable names for sizeof, remove casts in front of xmalloc, |  ray | 2006-04-05 | 1 | -2/+2 |
* | Today is Integer Overflow Prevention Day: |  ray | 2006-03-28 | 1 | -2/+2 |
* | Correct integer types, remove unused arguments, non-portable bitshifts |  ray | 2006-03-25 | 1 | -2/+2 |
* | - cvs_buf_putc() will never return non-zero |  xsa | 2006-03-23 | 1 | -5/+2 |
* | delint; cvs_buf_write_stmp() will never return non-zero: |  niallo | 2006-03-20 | 1 | -4/+2 |
* | Use ssize_t in appropriate places. |  ray | 2006-03-17 | 1 | -3/+3 |
* | - fchmod file to mode. |  niallo | 2006-03-15 | 1 | -1/+2 |
* | no need to duplicate error message; |  xsa | 2006-03-07 | 1 | -2/+2 |
* | like gnu ci(1), continue to process valid files in argv even if some are |  niallo | 2006-03-06 | 1 | -3/+5 |
* | better user-friendly error message. |  xsa | 2006-02-26 | 1 | -2/+2 |