Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | Theo de Raadt | |
value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future. | |||
2019-06-28 | asprintf returns -1, not an arbitrary value < 0. Also upon error the | Theo de Raadt | |
(very sloppy specification) leaves an undefined value in *ret, so it is wrong to inspect it, the error condition is enough. discussed a little with nicm, and then much more with millert until we were exasperated | |||
2018-12-30 | Delete unnecessary <libgen.h> #includes | Philip Guenther | |
ok deraadt@ | |||
2018-12-05 | fix incorrect usage of the .Bx macro; | Ingo Schwarze | |
one case reported by Fabio Scotoni <fabio at esse dot ch>, the rest found with regress/usr.bin/mandoc/db/dbm_dump | |||
2018-07-14 | don't run cvs_client_sendfile() if its file_type is CVS_DIR, but do not | Joris Vink | |
depend on it being CVS_FILE explicitly. unbreaks remote operations on removed files. | |||
2017-08-28 | fix const related warnings; ok millert@ | Otto Moerbeek | |
2017-08-28 | Use xasprintf() instead of calloc() + strlcpy() + memcpy() to | Todd C. Miller | |
generate the log line. Fixes a clang warning about using the wrong size argument in strlcpy(). The existing code was safe but not good strlcpy() practice. OK otto@ | |||
2017-08-21 | When executing ssh, use "--" to indicate end of arguments before the | Todd C. Miller | |
host name. Adapted from a MirBSD diff by Thorsten Glaser. | |||
2017-07-20 | Add missing <time.h> header. | Okan Demirmen | |
ok joris@ | |||
2017-06-01 | If CVS_LOCK_REPO is set only attempt to unlock the repo if we're local. | Joris Vink | |
Otherwise we end up calling cvs_repository_unlock() with garbage from the stack if we're dealing with a remote cvsroot. | |||
2017-06-01 | Don't look at file_type until after cvs_remote_classify_file() was called. | Joris Vink | |
The file status may be unknown until after that call. | |||
2017-06-01 | Stop looking at current_cvsroot->cr_method to figure out if we're remote or not. | Joris Vink | |
Instead use cvsroot_is_local() and cvsroot_is_remote(). | |||
2017-05-31 | Do not use CVS_LOCK_REPO for committing. | Joris Vink | |
This flag tells our file recursion code that for each directory entered we should lock it. Commit however locks all relevant directories on its own when it is about to make changes and should not depend on the file recursion code to do so. | |||
2017-05-31 | Plug memleak in rcs_translate_tag() that was causing havoc on large repos. | Joris Vink | |
2017-05-31 | When unlocking a directory only unlock the given one rather then all repo_locks. | Joris Vink | |
2017-05-31 | fix indentation | Joris Vink | |
2017-05-31 | Fix opencvs tag so it does not attempt to to local operations in a remote setup. | Joris Vink | |
While here make sure the "up-to-date" check (-c) works as one expects. | |||
2017-05-29 | cvs_file_classify() was making the mistake of only taking over a sticky | Joris Vink | |
tag from Entries for a given file if the sticky tag is present. while changing this we can simplify some logic in update.c on how it decides what tag to use for file classification. | |||
2017-05-28 | Let opencvs show ignored files on import, not showing them is just confusing. | Joris Vink | |
ok stsp@ | |||
2017-05-28 | Don't allow opencvs to commit towards tags that are not branches. | Joris Vink | |
Gets rid of the old logic that wasn't working and replaced it with a simplified version. ok stsp@ | |||
2017-05-28 | Teach opencvs status to display the sticky tag according to what it really | Joris Vink | |
represents if it is a branch or a revision. ok stsp@ | |||
2017-05-28 | Bring the opencvs log message template inline with other cvs implementations. | Joris Vink | |
ok stsp@ | |||
2016-11-03 | Don't use ce_time if we are running as a server, it won't be present. | Joris Vink | |
2016-10-27 | minor whitespace fixes. | Joris Vink | |
2016-10-18 | Using bitwise OR along with two assignments in the conditional of | Todd C. Miller | |
a while() loop is a trap for the unwary programmer (albeit a clever trap). Break this up into two separate assignments and using boolean OR for clarity. OK otto@ | |||
2016-10-18 | Add the branch revision to the status output much like GNU cvs does. | Joris Vink | |
OK millert@ | |||
2016-10-16 | Remove useless n=n assignment in the first parse of a for(). | Todd C. Miller | |
It was already removed from the rcs version by nicm@. | |||
2016-10-15 | Quiet compiler warnings. OK tomc@ tb@ | Todd C. Miller | |
2016-10-14 | Fix update -r and -A. | Frederic Cambus | |
In certain cases update -r and update -A would not properly set or reset the sticky tag for file(s). From Joris Vink. OK millert@ | |||
2016-10-13 | rcsnum_free() -> free() cleanups. From Michael W. Bombardieri. | Frederic Cambus | |
OK millert@ | |||
2016-10-13 | Fix revision lookups for branches. Properly perform a revision | Todd C. Miller | |
lookup so update -r actually works again, as a bonus throw a more correct error when the revision could not be found. From Joris Vink. | |||
2016-10-12 | When allocating the h_table array use the size of struct hash_head, | Todd C. Miller | |
not the size of a pointer. From Joris Vink. OK fcambus@ | |||
2016-10-12 | Use the correct type for p. From Joris Vink. | Frederic Cambus | |
OK tb@ | |||
2016-09-04 | Add missing getpw pledge | Theo Buehler | |
ok deraadt | |||
2016-08-16 | When the commit message is empty, don't default to c)ontinue | Theo Buehler | |
(committing without log message) but a)bort. Also, accept the uppercase versions of the choices. Matches the corresponding change of behavior of GNU cvs. suggested by & ok jcs | |||
2015-12-24 | more e-mail -> email | mmcc | |
2015-12-22 | commited -> committed | mmcc | |
2015-12-09 | Remove NULL-checks before free(). ok tb@ | mmcc | |
2015-11-19 | opencvs can use pledge "stdio rpath wpath cpath fattr proc exec". | Theo de Raadt | |
I have not looked into adding stricter pledges later in the code. | |||
2015-11-17 | Merge xmalloc.[ch] files across base, skipping OpenSSH for now. | Tobias Stoeckmann | |
ok nicm | |||
2015-11-05 | Remove xfree(), like already done for RCS. From Michael W Bombardieri, | Nicholas Marriott | |
ok mmcc | |||
2015-09-05 | Add brackets to clarify assignments that are the result of a test operator. | Jonathan Gray | |
ok deraadt@ looks correct millert@ jung@ | |||
2015-08-20 | Do not cast result of malloc/calloc/realloc* if stdlib.h is in scope | Theo de Raadt | |
ok krw millert | |||
2015-04-04 | Add support for commit ids to opencvs status. | Stefan Sperling | |
Patch by joris via tech@; reminded by tedu | |||
2015-04-04 | Fix modified timestamp in output of opencvs status. | Stefan Sperling | |
Patch by joris via tech@; reminded by tedu | |||
2015-02-05 | Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@ | Todd C. Miller | |
2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | Theo de Raadt | |
possible. Annotate <sys/param.h> lines with their current reasons. Switch to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where sensible to avoid pulling in the pollution. These are the files confirmed through binary verification. ok guenther, millert, doug (helped with the verification protocol) | |||
2014-12-01 | An internal function called xrealloc() is actually a fail-hard | Theo de Raadt | |
reallocarray()... so rename it. | |||
2014-11-22 | not compiled before commit | Theo de Raadt | |
2014-11-22 | Fixed uninitialized pointer (and other struct entries while at it) | Tobias Stoeckmann | |
which is referenced while parsing invalid RCS files. Spotted by jsg. ok deraadt |