sjg
75a137820d
dirdeps.mk now sets DEP_RELDIR
2015-06-08 23:35:17 +00:00
sjg
65145fa4c8
Merge sync of head
2015-05-27 01:19:58 +00:00
sjg
b137080f19
Merge from head@274682
2014-11-19 01:07:58 +00:00
gavin
6d3050a3e5
Remove csup(1) and its associated cpasswd(1) tool.
...
With the move by the FreeBSD Project away from CVSup as a distribution
mechanism, there is no longer a need to keep this in base.
Approved by: mux (around a year ago), silence on -hackers
X-MFC-after: never
2014-06-25 12:06:45 +00:00
bapt
1f77f137dc
use .Mt to mark up email addresses consistently (part3)
...
PR: 191174
Submitted by: Franco Fichtner <franco at lastsummer.de>
2014-06-23 08:23:05 +00:00
sjg
5860f0d106
Updated dependencies
2014-05-16 14:09:51 +00:00
sjg
1a7e48acf1
Updated dependencies
2014-05-10 05:16:28 +00:00
sjg
5e568154a0
Merge head
2014-04-28 07:50:45 +00:00
eadler
16aa959856
Use the system queue.h instead of bundling its own.
...
PR: bin/187067
Submitted by: lulf
2014-03-15 01:20:42 +00:00
sjg
62bb106222
Merge from head
2013-09-05 20:18:59 +00:00
pluknet
39742cda03
Clean up -Wheader-guard warnings.
...
Submitted by: <dt71@gmx.com>
MFC after: 3 days
X-MFC with: r251848
2013-06-17 20:11:04 +00:00
jkim
eb004e0f13
Improve compatibility with recent flex from flex.sourceforge.net.
2013-05-03 23:51:32 +00:00
sjg
97d8b94956
sync from head
2013-04-12 20:48:55 +00:00
sjg
6d37b86f2b
Updated dependencies
2013-03-11 17:21:52 +00:00
sjg
0ee5295509
Updated dependencies
2013-02-16 01:23:54 +00:00
joel
43674ba2d8
Fix date.
2013-02-14 19:46:41 +00:00
eadler
4c7dca13e4
Reference something which exists instead of the non-existent runsocks
...
program.
PR: docs/173664
Submitted by: wkoszek
Approved by: bcr (mentor)
2013-02-09 17:13:54 +00:00
sjg
778e93c51a
Sync from head
2012-11-04 02:52:03 +00:00
eadler
e8bf719fc6
Fix conditional expression: previously a bitvector would be operated
...
on by a logical not.
Approved by: cperciva
MFC after: 3 days
2012-10-22 02:59:44 +00:00
kevlo
3afe08ab11
Add missing va_end.
2012-09-29 16:19:01 +00:00
kevlo
a93e845e54
Make sure that each va_start has one and only one matching va_end,
...
especially in error cases.
2012-09-28 07:51:30 +00:00
marcel
9dd41e3647
Sync FreeBSD's bmake branch with Juniper's internal bmake branch.
...
Requested by: Simon Gerraty <sjg@juniper.net>
2012-08-22 19:25:57 +00:00
gjb
c12b44c606
General mdoc(7) and typo fixes.
...
PR: 167696
Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org)
MFC after: 3 days
2012-05-10 02:07:00 +00:00
eadler
1ef5fe44d3
Remove trailing whitespace per mdoc lint warning
...
Disussed with: gavin
No objection from: doc
Approved by: joel
MFC after: 3 days
2012-03-29 05:02:12 +00:00
cognet
8a806755a4
Use srandom() to init the PRNG, not srand(), since we use random().
...
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
2012-02-29 22:35:09 +00:00
uqs
9953595f97
Spelling fixes for usr.bin/
2011-12-30 11:02:40 +00:00
marius
ce155038ce
On FreeBSD just use the MD5 implementation of libmd rather than that of
...
libcrypto so we don't need to relinquish csup when world is built without
OpenSSL.
2011-12-24 12:16:38 +00:00
dim
226b72cf0d
In usr.bin/csup/auth.c, cast time_t to intmax_t instead, and use the
...
corresponding printf length modifier.
Requested by: mdf
MFC after: 1 week
2011-12-17 22:20:46 +00:00
dim
11ec38a1ad
In usr.bin/csup/proto.c, use the correct printf length modifier to print
...
an off_t.
MFC after: 1 week
2011-12-17 13:52:53 +00:00
dim
bea618a3e2
In usr.bin/csup/auth.c, use the correct number of bytes for zeroing the
...
shared secret, and use long long format to snprintf a time_t.
MFC after: 1 week
2011-12-17 13:14:44 +00:00
adrian
b7672d6f5e
Handle the situation where fixups_close() has been called but more fixups
...
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
2011-10-04 14:26:45 +00:00
adrian
069abf93c2
Update the comment to reflect what is actually going on.
...
Submitted by: mux
2011-10-04 14:25:10 +00:00
crees
e506eeeb8b
Include limits.h instead of sys/limits.h to improve portability.
...
PR: bin/150772
Submitted by: Derrick Brashear <shadow@gmail.com>
Reviewed by: Garrett Cooper <yanegomi@gmail.com>
Approved by: cognet
2011-09-28 17:03:49 +00:00
brueffer
d35d0d3c95
Fix typos in error messages.
...
Found by: kib
Approved by: re (kib)
MFC after: 1 week
2011-09-13 20:35:34 +00:00
brueffer
a77e217ce2
Fix csup to allow case insensitive server names in the auth file,
...
just as advertised in the manpage.
PR: 158652
Submitted by: stephen
Approved by: re (kib)
MFC after: 1 week
2011-09-13 20:33:27 +00:00
jhb
056b61df17
Remove dead code.
...
MFC after: 2 weeks
2011-01-25 22:21:05 +00:00
lulf
97ef6c1ba4
- Signal that data should not be modified.
2010-12-18 20:43:18 +00:00
joel
29af67e52c
Remove the advertising clause from UCB copyrighted files in usr.bin. This
...
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
2010-12-11 08:32:16 +00:00
uqs
8ae3afcfad
mdoc: drop redundant .Pp and .LP calls
...
They have no effect when coming in pairs, or before .Bl/.Bd
2010-10-08 12:40:16 +00:00
jhb
cc806ac0f2
If an RCS file is truncated, rcsfile_getdelta() will return NULL. Instead
...
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
2010-09-30 14:28:48 +00:00
joel
014b45ac24
Don't point users at the old csup homepage.
...
Approved by: lulf
2010-08-05 18:26:03 +00:00
uqs
e644199c18
mdoc: consistently spell our email addresses <foo@FreeBSD.org>
...
Reviewed by: ru
2010-05-19 08:57:53 +00:00
uqs
3960614646
mdoc: order prologue macros consistently by Dd/Dt/Os
...
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)
2010-04-14 19:08:06 +00:00
uqs
f2ba39f027
Add and expand $FreeBSD$ keyword to allow committing to this file.
2010-04-14 19:06:39 +00:00
lulf
8ccd6147e7
- Fix spelling.
...
Pointed out by: Pawel Worach <pawel.worach - at - gmail.com>, b. f. <bf1783 - at - googlemail.com>
2010-03-03 21:22:53 +00:00
lulf
06fa313559
- Include CURDIR in case the makefile is not run from the same directory.
2010-03-03 16:45:58 +00:00
lulf
71e6381f89
- Remove unused include path.
2010-03-03 08:24:15 +00:00
lulf
ecc5f5bc0b
- Revert Makefile to revision r203368, as the svn mv from contrib/csup replaced
...
the Makefile with a broken version.
2010-03-03 08:23:19 +00:00
lulf
4a09b920cd
- Unmark authentication support as a TODO item.
2010-03-02 07:37:35 +00:00
lulf
c6aa3ac446
- Move csup away from contrib/ and into usr.bin/. Software is no longer
...
contributed, and main development is happening in the FreeBSD repo.
Suggested by: joel
2010-03-02 07:26:07 +00:00