Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-07 | change rcs_set_mtime() return type to void. | Xavier Santolaria | |
2006-04-07 | Stylistic changes initially from Thordur I. Bjornsson, more cleanup | Ray Lai | |
and delinting from me. OK otto@ and jaredy@ | |||
2006-04-06 | cvs_buf_copy() and cvs_buf_peek() are not used by usr.bin/rcs; OK niallo@. | Xavier Santolaria | |
2006-04-06 | lexicographical order, not lexigraphical order; why people don't | Jason McIntyre | |
just use "alphabetical" is beyond me... from igor sobrado (pr #5070); | |||
2006-04-06 | rcsnum_setsize() will never return non-zero; change its return type to void. | Xavier Santolaria | |
2006-04-06 | -z can take no argument. | Xavier Santolaria | |
2006-04-06 | small knf; | Xavier Santolaria | |
2006-04-06 | Fix a bug whereby a written buffer (^X^W) would not have the correct | Kjell Wooding | |
trailing buffer number appended (e.g. "file<2>") in case an existing buffer shared its basename(). | |||
2006-04-05 | Use variable names for sizeof, remove casts in front of xmalloc, | Ray Lai | |
use xcalloc and xstrdup where appropriate, and other stuff. OK joris@ | |||
2006-04-04 | Remove unused variable, spotted by otto@ | Pedro Martelletto | |
2006-04-04 | Fix case where a string could not be correctly terminated, okay jaredy@ | Pedro Martelletto | |
2006-04-03 | Ignore http_proxy for file urls; ok millert deraadt | Uwe Stuehler | |
2006-04-03 | reflect reality, wchar_t has been int on OpenBSD for about a year now. | Marc Espie | |
okay millert@ | |||
2006-04-03 | GSSAPI buffers shouldn't be nul-terminated, spotted in bugzilla #1066 | Damien Miller | |
by dleonard AT vintela.com. use xasprintf() to simplify code while in there; "looks right" deraadt@ | |||
2006-04-03 | lint, strtonum() | Theo de Raadt | |
2006-04-03 | few more int that can become a size_t | Theo de Raadt | |
2006-04-03 | fixed "text in message line would get stuck there" issue. | Kjell Wooding | |
feedback from Philip Guenther and Han Boetes | |||
2006-04-03 | useless code simplification from adobriyan AT gmail.com | Damien Miller | |
2006-04-03 | some more malloc(x * y); bzero() -> calloc(x, y) whacking from | Damien Miller | |
adobriyan AT gmail.com | |||
2006-04-03 | lint love; ok kjell | Theo de Raadt | |
2006-04-03 | Always leave compile buffer on first line after compilation. | Kjell Wooding | |
Change 0->NUL while I'm here. | |||
2006-04-02 | delete unused variable | Theo de Raadt | |
2006-04-02 | malloc(x * y) -> calloc(x, y) from adobriyan AT gmail.com, with tweaks | Damien Miller | |
suggested by kjell@; ok otto@ pat@ millert@ jaredy@ | |||
2006-04-02 | some characters are in fact allowed in symbol names, don't freak | Joris Vink | |
out when we encounter them, but handle them correctly. fixes an issue i ran into when running opencvs update on my local tree; | |||
2006-04-02 | test char against '\0', not 0 | Kjell Wooding | |
2006-04-02 | fix ^W (delete to start of word) in minibuffer; | Kjell Wooding | |
i.e. actually kill text, don't just move the pointer. | |||
2006-04-02 | sessionid can be 32 bytes now too when sha256 kex is used; ok djm@ | Darren Tucker | |
2006-04-02 | oops, to64() is shared. | Theo de Raadt | |
2006-04-02 | Enable DEBUG=-g -ggdb for rcs, move -g -ggdb out of CFLAGS for cvs. | Ray Lai | |
Line up flags while I'm at it. OK to add DEBUG flags to rcs niallo@. | |||
2006-04-02 | spacing; | Joris Vink | |
2006-04-02 | be more alert for string truncation in cvs_initlog() | Joris Vink | |
2006-04-02 | #ifdef lint not LINT | Theo de Raadt | |
2006-04-02 | avoid lvalue cast by making local function be unsigned to begin with | Theo de Raadt | |
2006-04-02 | use SEEK_* for lseek() | Theo de Raadt | |
2006-04-02 | use SEEK_* for lseek() | Theo de Raadt | |
2006-04-01 | fix some bugs that lint discovered for us. | Joris Vink | |
ok niallo@ | |||
2006-04-01 | Don't convert off_t to size_t without checking if it fits. From Tobias | Otto Moerbeek | |
Stoeckmann. | |||
2006-04-01 | don't use mode_t with va_arg(), use int instead and cast it later to | Joris Vink | |
mode_t. doing it the other way around isn't portable as mode_t may vary from int on some systems to short on others. noticed by deraadt@ | |||
2006-04-01 | - plug a possible memory leak in checkin_update() error path. | Niall O'Higgins | |
ok joris@ | |||
2006-04-01 | Add rcs -l, rcs -u, and regression tests. | Ray Lai | |
``put it all in'' joris@ | |||
2006-04-01 | Keep cvs flags in `flags', rcs flags in `rcsflags' in rcsprog.h. | Ray Lai | |
Prevents bitfield pollution between the two. ``This is how it should be.'' niallo@ | |||
2006-04-01 | ANSIfy; requested deraadt@ | Damien Miller | |
2006-04-01 | xasprintification; ok deraadt@ | Damien Miller | |
2006-04-01 | minimal lint cleanup (unused crud, and some size_t); ok djm | Theo de Raadt | |
2006-04-01 | $OpenBSD$ in here too | Damien Miller | |
2006-04-01 | cvs_initlog() returns a value that is never used, zap it. | Joris Vink | |
2006-04-01 | improve import a bit: | Joris Vink | |
- create directory and files with the correct permissions - correctly add the branch revision to the branch list of the head revision | |||
2006-03-31 | spacing | Theo de Raadt | |
2006-03-31 | Better useage string. From Alexey Dobriyan. | Otto Moerbeek | |
2006-03-31 | remote user escape is %r not %h; spotted by jmc@ | Damien Miller | |