summaryrefslogtreecommitdiffstats
path: root/usr.bin/csup
Commit message (Collapse)AuthorAgeFilesLines
* Fix date.joel2013-02-141-1/+1
|
* Reference something which exists instead of the non-existent runsockseadler2013-02-091-5/+5
| | | | | | | | program. PR: docs/173664 Submitted by: wkoszek Approved by: bcr (mentor)
* Fix conditional expression: previously a bitvector would be operatedeadler2012-10-221-1/+1
| | | | | | | on by a logical not. Approved by: cperciva MFC after: 3 days
* Add missing va_end.kevlo2012-09-291-1/+3
|
* Make sure that each va_start has one and only one matching va_end,kevlo2012-09-281-3/+9
| | | | especially in error cases.
* General mdoc(7) and typo fixes.gjb2012-05-101-2/+2
| | | | | | PR: 167696 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days
* Remove trailing whitespace per mdoc lint warningeadler2012-03-292-13/+13
| | | | | | | Disussed with: gavin No objection from: doc Approved by: joel MFC after: 3 days
* Use srandom() to init the PRNG, not srand(), since we use random().cognet2012-02-291-1/+1
| | | | | | | | | | This is harmless because srandom() is called somewhere else, with time(NULL) as a seed, but this is more correct. Obtained from: https://bitbucket.org/mux/csup Pointyhat to: not mux, somebody else MFC after: 1 week
* Spelling fixes for usr.bin/uqs2011-12-303-4/+4
|
* On FreeBSD just use the MD5 implementation of libmd rather than that ofmarius2011-12-244-6/+12
| | | | | libcrypto so we don't need to relinquish csup when world is built without OpenSSL.
* In usr.bin/csup/auth.c, cast time_t to intmax_t instead, and use thedim2011-12-171-2/+2
| | | | | | | corresponding printf length modifier. Requested by: mdf MFC after: 1 week
* In usr.bin/csup/proto.c, use the correct printf length modifier to printdim2011-12-171-1/+2
| | | | | | an off_t. MFC after: 1 week
* In usr.bin/csup/auth.c, use the correct number of bytes for zeroing thedim2011-12-171-3/+4
| | | | | | shared secret, and use long long format to snprintf a time_t. MFC after: 1 week
* Handle the situation where fixups_close() has been called but more fixupsadrian2011-10-041-1/+1
| | | | | | | | | | are still available on the queue. Without this, the fixups producer/consumer pipeline will artifically terminate before all of the fixups have been processed, leading to incomplete updates and generally quite unhappy users. Submitted by: mux
* Update the comment to reflect what is actually going on.adrian2011-10-041-1/+1
| | | | Submitted by: mux
* Include limits.h instead of sys/limits.h to improve portability.crees2011-09-281-2/+1
| | | | | | | PR: bin/150772 Submitted by: Derrick Brashear <shadow@gmail.com> Reviewed by: Garrett Cooper <yanegomi@gmail.com> Approved by: cognet
* Fix typos in error messages.brueffer2011-09-131-3/+3
| | | | | | Found by: kib Approved by: re (kib) MFC after: 1 week
* Fix csup to allow case insensitive server names in the auth file,brueffer2011-09-131-1/+1
| | | | | | | | | just as advertised in the manpage. PR: 158652 Submitted by: stephen Approved by: re (kib) MFC after: 1 week
* Remove dead code.jhb2011-01-251-1/+0
| | | | MFC after: 2 weeks
* - Signal that data should not be modified.lulf2010-12-182-2/+4
|
* Remove the advertising clause from UCB copyrighted files in usr.bin. Thisjoel2010-12-112-8/+4
| | | | | | | | | is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change Also add $FreeBSD$ to a few files to keep svn happy. Discussed with: imp, rwatson
* mdoc: drop redundant .Pp and .LP callsuqs2010-10-081-1/+0
| | | | They have no effect when coming in pairs, or before .Bl/.Bd
* If an RCS file is truncated, rcsfile_getdelta() will return NULL. Insteadjhb2010-09-301-0/+8
| | | | | | | | | | of faulting, check for NULL. However, returning an error would cause csup to just abort the entire update. Instead, break out of the loop and return ok. The attempts to update the file will trigger a MD5 failure which will cause csup to download the entire file as a fixup. Reviewed by: lulf MFC after: 1 week
* Don't point users at the old csup homepage.joel2010-08-052-5/+0
| | | | Approved by: lulf
* mdoc: consistently spell our email addresses <foo@FreeBSD.org>uqs2010-05-192-2/+2
| | | | Reviewed by: ru
* mdoc: order prologue macros consistently by Dd/Dt/Osuqs2010-04-142-2/+2
| | | | | | | | Although groff_mdoc(7) gives another impression, this is the ordering most widely used and also required by mdocml/mandoc. Reviewed by: ru Approved by: philip, ed (mentors)
* Add and expand $FreeBSD$ keyword to allow committing to this file.uqs2010-04-141-1/+1
|
* - Fix spelling.lulf2010-03-031-1/+1
| | | | Pointed out by: Pawel Worach <pawel.worach - at - gmail.com>, b. f. <bf1783 - at - googlemail.com>
* - Include CURDIR in case the makefile is not run from the same directory.lulf2010-03-031-1/+1
|
* - Remove unused include path.lulf2010-03-031-1/+1
|
* - Revert Makefile to revision r203368, as the svn mv from contrib/csup replacedlulf2010-03-031-14/+32
| | | | the Makefile with a broken version.
* - Unmark authentication support as a TODO item.lulf2010-03-021-3/+2
|
* - Move csup away from contrib/ and into usr.bin/. Software is no longerlulf2010-03-0263-33/+20847
| | | | | | contributed, and main development is happening in the FreeBSD repo. Suggested by: joel
* - Add support for CVSup authentication mechanisms to csup.lulf2010-02-021-0/+4
| | | | | | | | | - Include a cpasswd script performing the same mechanisms as the cvpasswd utility from CVSup. PR: bin/114129 Submitted by: Petar Zhivkov Petrov <pesho.petrov -at- gmail.com> MFC after: 1 month
* - Add missing rsyncfile from Makefilelulf2008-11-231-1/+2
|
* - Import csup work from p4.lulf2008-10-191-0/+3
|
* Update make glue for csup-snap-20060313.mux2006-03-141-0/+1
|
* - Don't put the .h in SRCS.mux2006-03-031-25/+25
| | | | | | | - Use LDADD += -lpthread and DPADD += ${LIBPTHREAD} instead of -pthread. - s/-I${.CURDIR}/-I./ to fix make obj. Submitted by: ru
* Add make glue for building csup. Not yet connected to the build.mux2006-03-031-0/+35
OpenPOWER on IntegriCloud