summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2007-09-27No need to use two buffers for reading data from the user. From MarkOtto Moerbeek
Lumsden; ok ray@
2007-09-27"mailling" -> "mailing", from Jung's list; while here, some spacing fixesIgor Sobrado
ok jmc@
2007-09-27Don't return -1 on error in dh_pub_is_valid(), since it evaluatesRay Lai
to true. Also fix a typo. Initial diff from Matthew Dempsky, input from djm. OK djm, markus.
2007-09-26pull from ragge's repo:Otto Moerbeek
Handle #pragma and _Pragma() correct.
2007-09-26reuse available var, from Mark LumsdenOtto Moerbeek
2007-09-25When adding a key that already exists, update the propertiesCan Erkin Acar
(time, confirm, comment) instead of discarding them. ok djm@ markus@
2007-09-25handle empty strings returned by fgetsCharles Longeau
use strcspn to properly overwrite '\n' in fgets returned buffer ok ray@
2007-09-25handle empty strings returned by fgetsCharles Longeau
ok ray@
2007-09-25missing header for strptimeCharles Longeau
ok joris@
2007-09-25remove unused extern variableCharles Longeau
ok joris@
2007-09-25pull from ragge's repo:Otto Moerbeek
Do not try to print out common symbols if errors, from Stefan Kempf.
2007-09-25missing header for mkstempCharles Longeau
check mkstemp return value against -1 instead of NULL ok joris@
2007-09-25missing header for mkstempCharles Longeau
ok joris@
2007-09-25remove unneeded files, from Mark LumsdenOtto Moerbeek
2007-09-25pull from ragge's repo:Otto Moerbeek
Give a better error message for too many {, "from otto".
2007-09-24oops i was suppose to pass cvs_directory_tag to cvs_file_classify().Joris Vink
2007-09-24typos; from Pierre RiteauJason McIntyre
2007-09-24Pull from ragge's repo:Otto Moerbeek
Add support for signed bitfields, this has been missing ~forever. Bug reported by TAKAHASHI Tamotsu. Fix bitfield overflow bug, reported by TAKAHASHI Tamotsu.
2007-09-24pull from ragge's repo: -v flag and reg class checkOtto Moerbeek
2007-09-24from ragge's repo:Otto Moerbeek
Fix init error to give an error message instead of segfault, as reported by Otto Muerbeek.
2007-09-24unused varsJoris Vink
2007-09-24add support to commit modified files to branches.Joris Vink
2007-09-24zap unused stuff, cleans it up a bit.Joris Vink
2007-09-23Avoid potential segfault when debuggingOtto Moerbeek
2007-09-23Pull form ragge's repo:Otto Moerbeek
Patch to understand .i files (no preprocessing), from Arthur Loiret.
2007-09-23Pull from ragge's repo:Otto Moerbeek
Fix for a bug found by Otto Muelbeek. I think ragge found at least 4 different ways to misspell my name ;-)
2007-09-23don't even attempt to reuse the same temp file name.Marc Espie
Just create a new one each time we need it, and kill the file right away.
2007-09-23now, JOB_FIRST is always set, so kill more conditional code.Marc Espie
(taken from NetBSD)
2007-09-23last parameter to JobStart is always NULL, so nuke it.Marc Espie
2007-09-23compatMake is never true in there, so kill dead code.Marc Espie
2007-09-23make sure when running update -r on existing files to overwriteJoris Vink
the sticky directory tag with it. since -r gets priority.
2007-09-23pass FILE_HAS_FLAG towards the update code so it can identifyJoris Vink
if a given tag is present in the RCSfile or not.
2007-09-23zap keywords we don't have. remove exercise that says we don't have $$V,Marc Espie
since we do ;)
2007-09-23put parsing of operator (:, ::, !) into its own functionMarc Espie
2007-09-23replace if (DEBUG(job)) { fprintf(stdout,...); fflush(stdout); }Marc Espie
with a debug_printf() function. Maybe slightly slower, but it's ways easier to read.
2007-09-23kill local/jobs distinction. Correctly this time...Marc Espie
2007-09-23more specific error messages if dup2 failsMarc Espie
2007-09-23zap sunos bug work-aroundMarc Espie
2007-09-22better branching/sticky tag support, no branch commits yet though.Joris Vink
2007-09-22we no longer create a 0 sized file in our /tmp/cvs-serv<pid> serverJoris Vink
directory when a client sends us info about a file that is up to date. instead, remember the file is up to date in our CVS/Entries. Saves us a lot of headaches on very big trees like src/
2007-09-22in rcs_translate_tag() do not fail when a tag resolvedJoris Vink
to a normal revision instead of a branch, its perfectly valid.
2007-09-22fix error message output, it caused diffs to be formed incorrectlyJoris Vink
when no newline was present.
2007-09-22Support for checkout with a local repository already in place.Tobias Stoeckmann
OK joris@
2007-09-22fix tmp allocation of large chunks.Otto Moerbeek
2007-09-22Pull form ragge's repo:Otto Moerbeek
Fix a problem that occurred when: 1) wrong register were spilled (no effect of colorability) 2) short-life-range register were spilled (no effect of colorability)
2007-09-22Pull form ragge's repo:Otto Moerbeek
Repair delusesless() so that it will prepend subexpressions correctly.
2007-09-22Fix from ragge:Otto Moerbeek
Fix lost initializers when an array comes after something else in a struct. Reported in OpenBSD PR#5586.
2007-09-22rename functions and data structures for clarityMarc Espie
2007-09-22reindentMarc Espie
2007-09-21strcpy/strcat -> strlcpy/strlcatGilles Chehade
ok otto@, ok ragge