sjg
65145fa4c8
Merge sync of head
2015-05-27 01:19:58 +00:00
bapt
6fdc031751
Convert sbin/ to LIBADD
...
Reduce overlinking
2014-11-25 11:23:12 +00:00
sjg
b137080f19
Merge from head@274682
2014-11-19 01:07:58 +00:00
phk
0f5b16fa3e
Report the 1-based key numbers rather than the 0-based ones to be consistent.
...
Fix documentation for destroy command. Not sure how the wrong explanation
happened.
Spotted by: mwlucas
2014-11-09 15:53:29 +00:00
jhb
5b6f86660b
Correct the destroy example. The -n argument is not needed (and is not
...
valid).
Reported by: mwlucas
Reviewed by: phk
MFC after: 1 week
2014-08-27 17:44:59 +00:00
sjg
d7cd1d425c
Merge head from 7/28
2014-08-19 06:50:54 +00:00
bapt
42044eb342
use .Mt to mark up email addresses consistently (part1)
...
PR: 191174
Submitted by: Franco Fichtner <franco@lastsummer.de>
2014-06-20 09:40:43 +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
brueffer
d8b63f3ba1
Add a missing break in option parsing.
...
CID: 1011452
Found with: Coverity Prevent(tm)
MFC after: 1 week
2014-04-15 07:37:56 +00:00
sjg
7fcd33c1fa
Merge head@256284
2013-10-13 02:35:19 +00:00
sjg
292ec5d301
Updated dependencies
2013-10-13 00:24:00 +00:00
pluknet
3f9b259642
Sweep man pages replacing ad -> ada.
...
Approved by: re (blackend)
MFC after: 1 week
X-MFC note: stable/9 only
2013-10-01 18:41:53 +00:00
sjg
62bb106222
Merge from head
2013-09-05 20:18:59 +00:00
ed
120125784a
Add the Clang specific -Wmissing-variable-declarations to WARNS=6.
...
This compiler flag enforces that that people either mark variables
static or use an external declarations for the variable, similar to how
-Wmissing-prototypes works for functions.
Due to the fact that Yacc/Lex generate code that cannot trivially be
changed to not warn because of this (lots of yy* variables), add a
NO_WMISSING_VARIABLE_DECLARATIONS that can be used to turn off this
specific compiler warning.
Announced on: toolchain@
2013-04-19 19:45:00 +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
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
dim
60426ce781
Use NO_WCAST_ALIGN for sbin/gbde, this is more appropriate to fix the
...
alignment warnings than using WARNS=3, and it also works for clang.
MFC after: 1 week
2011-12-17 00:14:40 +00:00
imp
c3a399c4ba
MFtbemd:
...
Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want
to test of all the CPUs of a given family conform.
2010-08-23 22:24:11 +00:00
uqs
972d4b6a91
Remove dead variable assignments
...
Found by: clang static analyzer
Verified by: md5(1)
2010-06-11 17:03:04 +00:00
uqs
764da0e641
Bump WARNS where possible.
...
Checked by: make universe
Approved by: ed (co-mentor)
2010-02-15 14:07:40 +00:00
pjd
d3990a3c11
Remove temporary files when there are no longer needed.
2007-04-06 11:16:11 +00:00
ru
731fda35ce
Markup fixes.
2006-09-18 11:55:10 +00:00
cperciva
b14cd9989e
Teach gbde(8) to use a key file in addition to a passphrase. This
...
makes it practical to use GBDE for "something you have plus something
you know" security together with a USB flash drive.
Reviewed by: phk
MFC after: 7 days
2006-02-08 06:52:15 +00:00
ume
5f96af1a75
gbde(8) is also rejndael user.
...
Reported by: phk
2005-03-11 22:07:04 +00:00
ru
f4d1c5e662
- Fixed description of the "destroy" command options.
...
- Document the "nuke" command.
- Mention which commands correspond to which functions.
2005-02-12 21:47:05 +00:00
pjd
3c0c7b01b6
- Sort options.
...
- Put 'break' into separate line.
2005-02-03 21:34:39 +00:00
pjd
1d320aa5ac
Fix whitespace.
2005-02-03 21:25:35 +00:00
pjd
492540a830
- Remove bogus O_CREAT flag. We really don't want to create a file here.
...
PR: bin/67793
Submitted by: Amir Shalem <amir@boom.org.il>
- Sync usage with manual page.
Approved by: phk
MFC after: 1 week
2005-02-03 13:12:17 +00:00
phk
d99f64fa38
Fix a type bug which sometimes wrote unusable lock sectors on the disk.
2004-09-10 12:16:54 +00:00
pjd
75f67c7681
Allow to setup GBDE on providers which contain '/' in their names,
...
e.g. mirror/<name>, stripe/<name>.
Approved by: phk
2004-09-06 13:42:09 +00:00
sobomax
8ce714e6e3
o Fix semantics of comparison function for qsort(3). According to qsort(3)
...
manpage:
The comparison function must return an integer less than, equal to, or
greater than zero if the first argument is considered to be respectively
less than, equal to, or greater than the second.
Therefore, simply returning "arg1 > arg2" is incorrect. Actually it works
but for the number of items to be sorted less than 7 due to special case
handling in qsort(3);
o add missing '\n' to one of usage() calls.
Approved by: phk
2004-06-25 13:04:49 +00:00
brueffer
6c819c3288
Fix typo
...
Submitted by: edwin
2004-05-23 08:40:52 +00:00
ru
f6aa4621fd
Assorted markup, grammar, and spelling fixes.
2004-05-17 08:35:43 +00:00
phk
6c8d799cb9
Fix the last and most important bit of the test case to test the same
...
binary as the rest of it.
Add MD5 check that the md(4) device gets set up correctly.
2004-02-07 22:58:39 +00:00
des
78edb732be
Don't create a template file if we're not going to let the user edit it.
2004-02-05 10:57:29 +00:00
pjd
38bd67169d
Fixed some non-critical memory leaks and one temporary file leak
...
(theoretical).
Approved by: phk, scottl (mentor)
2004-02-05 08:39:38 +00:00
des
69ab9ceec0
Mechanical whitespace cleanup. Also, note that previous commit was
...
Sponsored by: Teleplan AS
2004-02-03 11:12:29 +00:00
des
bd77f8c94f
Remove newline characters from error strings.
2004-02-03 11:10:34 +00:00
phk
5868bd1269
Clarify that the encrypted device is called foo.bde and mention that
...
unmounting it before detaching GBDE is a good idea.
Insisted on by: Flemming Jacobsen <fj@batmule.dk>
Approveed by: re@
2003-11-27 20:54:51 +00:00
phk
ce5d62e853
Make the regression test run also with obj directories.
2003-10-17 19:52:07 +00:00
phk
b8ead5692b
Insert an overview of the plans here, in case I get run over by a bus.
2003-10-13 20:14:02 +00:00
phk
1665650eeb
I think it is more correct to use modfind() than kldfind() here.
2003-10-10 14:32:28 +00:00
phk
09b4b77504
Improve regression test with an image file which must work.
2003-10-07 09:31:51 +00:00
phk
18f409c057
Autoload kernel module if necessary.
...
Submitted by: mr
2003-10-07 09:29:59 +00:00
phk
a7b8d85b93
Interior decoration changes.
2003-10-07 09:28:07 +00:00
phk
069191fcbf
Simplify the GEOM OAM api: Drop the request type, and let everything
...
hinge on the "verb" parameter which the class gets to interpret as
it sees fit.
Move the entire request into the kernel and move changed parameters
back when done.
2003-06-01 13:47:51 +00:00
ru
7ffefb5839
Moved libgeom.so dependencies to where they belong.
...
Reviewed by: phk
Approved by: re (scottl)
2003-05-17 19:05:17 +00:00