Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-06-10 | update .Nd, SYNOPSIS, and DESCRIPTION, after alexey e. suslikov pointed | Jason McIntyre | |
out that it was a bit dated; ok mjc | |||
2006-06-09 | - fix rcs_expand_keywords(). | Niall O'Higgins | |
reported by Andreas Kahari <andreas.kahari at gmail>, input from joris@ | |||
2006-06-09 | handle `cvs tag -F'; input && OK joris@. | Xavier Santolaria | |
2006-06-08 | do not set the gid, noted by solar; ok djm | Markus Friedl | |
2006-06-07 | a bug in cvs_mkpath() prevented to create the CVS admin directory and | Reyk Floeter | |
files under some special circumstances. remove a bogus stat() check to fix it. ok joris@ | |||
2006-06-07 | bring back tag command; basic tag addition/deletion available. OK joris@. | Xavier Santolaria | |
2006-06-07 | bring back -v support; OK joris@. | Xavier Santolaria | |
2006-06-07 | this file is public domain; | Jason McIntyre | |
problem reported by will h. backman; sorted with the author's permission - thanks henry spencer. | |||
2006-06-07 | add support for <name>,t file: | Xavier Santolaria | |
- add: creates <name>,t file with initial description if -m option was used. - commit: uses <name>,t content (if it exists) to set the file description OK joris@. | |||
2006-06-07 | document that tip(1) can set the line discipline. | Marc Balmer | |
ok deraadt | |||
2006-06-06 | teach tip about line disciplines; tried by mbalmer too | Theo de Raadt | |
2006-06-06 | minor cleanup | Theo de Raadt | |
2006-06-06 | zap another magic number | Michael Coulter | |
spotted by deraadt@ | |||
2006-06-06 | make use of new structs and defines in cd.h | Michael Coulter | |
dispells some magic numbers | |||
2006-06-06 | replace remaining setuid() calls with permanently_set_uid() and | Markus Friedl | |
check seteuid() return values; report Marcus Meissner; ok dtucker djm | |||
2006-06-06 | more bits for the export command to work correctly. OK joris@. | Xavier Santolaria | |
2006-06-06 | hello commit -F support | Joris Vink | |
2006-06-06 | add support for the -D option of update, | Joris Vink | |
-D allows you to update a file to matching a specified date: opencvs up -D "1 hour ago" foobar will take the first matching revision that was commited 1 hour ago. | |||
2006-06-05 | allow the re-adding of files with previous revisions | Joris Vink | |
2006-06-04 | - initialise path pointers to NULL since error code checks for that. | Niall O'Higgins | |
2006-06-04 | sync exit status bits with reality. | Xavier Santolaria | |
2006-06-04 | - explicitly set some pointers to NULL since they are tested on error. | Niall O'Higgins | |
2006-06-04 | fix output if file is lost, unknown, or in the Attic; OK joris@. | Xavier Santolaria | |
2006-06-04 | lets not stop looking for a branch if the first one | Joris Vink | |
on the branches list does not match the one we are looking for, it might be further down. | |||
2006-06-04 | sprinkle -n voodoo over the add, commit and import commands. | Joris Vink | |
2006-06-04 | - we can just use the 'sizdiff' variable instead of calling strlen(expbuf); | Niall O'Higgins | |
simplifies things a little. | |||
2006-06-04 | - ensure fin pointer is not invalidated after realloc | Niall O'Higgins | |
2006-06-04 | - don't forget to free data in rcs_expand_keywords() | Niall O'Higgins | |
2006-06-04 | - fix off-by-one in rcs_expand_keywords() | Niall O'Higgins | |
2006-06-03 | add support for update -A and update -r<rev>. | Joris Vink | |
hacking on the plane from toronto to barbados. i will probably hack some more since im stuck in barbados for 12 lovely hours over night cause the carribean airlines dont understand the meaning over 'more than one flight a day'. | |||
2006-06-03 | - correctly handle binary files; say bye bye to using c strings for deltatexts. | Niall O'Higgins | |
"slap it in" joris@ | |||
2006-06-02 | various spelling fixes | David Krause | |
2006-06-02 | - at end of checkin_main loop, reset pb.newrev. fixes a problem with checkin | Niall O'Higgins | |
of multiple files. reported by fgsch@ ok joris@ | |||
2006-06-02 | Rework logic for function argument conversion warnings. Only do certain | Chad Loder | |
classes of warnings if the function is not actually governed by a prototype, otherwise in standard C the compiler is free to avoid the usual widening/renarrowing conversions familiar to us from traditional C. This gets rid of many duplicate warnings. There is still more work to do to quiet lint but this is a necessary prerequisite. | |||
2006-06-02 | Show interface state and link state in ifstat output. Idea and OK dlg@ | Claudio Jeker | |
2006-06-02 | strtoul() -> strtonum(). Also change iflag to unsigned int, since | Ray Lai | |
sleep takes an unsigned integer. OK moritz@, jaredy@, and dhill@ | |||
2006-06-02 | Replaced by new stuff in regress | Ian Darwin | |
2006-06-01 | Remove two unnecessary strlen() calls. Also, check if asprintf | Ray Lai | |
returns -1 instead of checking if connstr == NULL. OK beck@, moritz@ | |||
2006-06-01 | - rcs_buf_release() has no need for u_char since it returns void * | Niall O'Higgins | |
2006-06-01 | - zap dangling macro, will be replaced with a function later. | Niall O'Higgins | |
2006-06-01 | fix output | Joris Vink | |
2006-06-01 | import work on existing repos: | Joris Vink | |
- make it work (obviously). - count conflicts and report them at the end of the import. - add the release tags to the correct revision. fixes for importing to new repos: - add the release tags to the correct branch revision - plug memleak general import fixes: - use the correct path in the status messages, this is just fluffy output but it does make things nicer. | |||
2006-06-01 | major rewrite of some rcs parsing stuff: | Joris Vink | |
- rework rcs_getrev() to correctly support branches - rework rcs_translate_tag() to correctly translate given symbols or branches into their matching revisions - rework rcs_rev_add() to correctly update its 'next' pointers and insert the new revision in the correct place on the list. - rework rcs_head_get() to return the latest revision on the default branch if it has been set or the normal HEAD revision otherwise. - no longer access the rf_head member of the RCSFILE struct manually, use the rcs_head_get() function which correctly returns the HEAD revision, there might be a default branch that has to be used. - for now, when commiting a new revision reset the default branch. | |||
2006-06-01 | Like DENIC, DK-HOSTMASTER is requires extra attention. This makes you | Michael Knudsen | |
actually get handle information when looking up .dk domains. While there, make the DENIC stuff use the QNICHOST_TAIL symbol. Original diff from Soeren Hansen because I was complaining about this, tweaked by me. ok beck (holding his nose). | |||
2006-06-01 | kill another superfluous strlen | Kjell Wooding | |
2006-06-01 | Style. no practical change. | Kjell Wooding | |
2006-06-01 | Fix message on empty goto-line. While here, lose a strlen and KNF. | Kjell Wooding | |
2006-06-01 | call get_remote_ipaddr() early; fixes logging after client disconnects; | Markus Friedl | |
report mpf@; ok dtucker@ | |||
2006-06-01 | Display line number in the mg statusbar. Yes, it seems like a fugly | Kjell Wooding | |
way to do it, but all the clever and pretty ways utterly failed. Basic use seems fine. We'll turdshine the special cases later. If it bothers you, use M-x line-number-mode, or put same in your ~/.mg file to disable. ok cloder, jason | |||
2006-06-01 | tidy up the "tao" section; | Jason McIntyre | |
diff from deraadt or mjc, i'm not sure; tweaks by me ok deraadt |