summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* MFC r289637emax2015-11-051-9/+43
| | | | | | | check boundaries while parsing SDP responses Reported by: hps Reviewed by: hps
* MFC r289746:ngie2015-11-051-1/+2
| | | | | | | | | Exit with a user-friendly message instead of tripping an assert if vm_activate_cpu(..) fails when called from fbsdrun_addcpu(..) PR: 203884 Reviewed by: grehan Submitted by: William Orr <will@worrbase.com>
* MFC r287413: Minor code cleanups (no functional changes).dteske2015-11-021-14/+12
|
* MFC r287390: Bump version for altered long-opts processingdteske2015-11-021-1/+1
|
* MFC r287389: Simplify long-option processingdteske2015-11-021-14/+10
|
* MFC r287385: Bump version for prior fix (SVN r287381)dteske2015-11-021-1/+1
|
* MFC r287384:dteske2015-11-021-1/+1
| | | | Style: Remove whitespace around brackets from function syntax options
* MFC r287383: Comment for escape() function.dteske2015-11-021-0/+8
|
* MFC r287382: Commentdteske2015-11-021-1/+1
|
* MFC r287381: Properly escape arguments when moving into jail or chrootdteske2015-11-021-1/+22
|
* MFC r287380: Style: commentsdteske2015-11-021-4/+4
|
* MFC r287379: Style consistency: add single space before each `;;' case entrydteske2015-11-021-19/+19
|
* MFC r287378:dteske2015-11-021-12/+12
| | | | | Remove `SYSRC_' prefix from $SYSRC_VERBOSE (prefix unnecessary since this is a non-inheritable attribute; was previously).
* MFC r287421: Fix mandoc(1) "WARNING: end of line whitespace"dteske2015-11-021-15/+15
|
* Snap to breuffer's r286660 (incorrectly merged)dteske2015-11-021-2/+0
|
* MFC r287420: Remove non-functional examples.dteske2015-11-021-22/+1
|
* MFC r287683: Ignore error results from newaliases(1)dteske2015-11-021-0/+2
|
* MFC r287685: Remove use of return outside of functiondteske2015-11-021-1/+1
|
* MFC r287686: Produce meaningful exit codedteske2015-11-021-1/+4
|
* MFC r287687: Update copyrightsdteske2015-11-023-2/+3
|
* MFC r287688: Explicitly exit with successdteske2015-11-021-1/+2
|
* MFC r287689: Explicitly exit with successdteske2015-11-021-1/+2
|
* MFC r287690: Produce meaningful exit codedteske2015-11-022-6/+14
|
* MFC r287691: Remove trailing newline at EOFdteske2015-11-021-1/+0
|
* MFC r287694: Use a variable for readabilitydteske2015-11-021-2/+2
|
* MFC r287695: Replace `return' outside of function with exitdteske2015-11-021-1/+1
| | | | Pointy hat to: me
* MFC r287692: Better to reset trap and explicitly exit successdteske2015-11-021-1/+2
|
* MFC r287693: Update copyrightdteske2015-11-021-1/+1
|
* MFC r287803: Fix code typo (no functional change)dteske2015-11-021-3/+3
|
* MFC: 289879bapt2015-10-312-16/+48
| | | | | | | | newsyslog.conf: allow to configure the signal using the signal name. Submitted by: Alexandre Perrin <alex@kaworu.ch> Relnotes: yes Differential Revision: https://reviews.freebsd.org/D3961
* MFC r288963:delphij2015-10-294-28/+1
| | | | | Now that we own the code, use arc4random(3) unconditionally and remove the corresponding HAVE_ARC4RANDOM conditions.
* MFC r288960:delphij2015-10-291-2/+2
| | | | Use strlcpy() when the string is expected to be nul-terminated.
* MFC r288959:delphij2015-10-292-4/+0
| | | | Remove a few unused headers.
* Revert the merge of r289269 for now as it may break non-root installs.delphij2015-10-271-11/+15
|
* MFC r289269:delphij2015-10-271-15/+11
| | | | | | | | | | | | | | Use chroot(2) instead of using prefixes for files. Previously, the code prefixes the chroot path to actual file paths to simulate the effect. This, however, will not work for tzset(3) which expects the current system have a working set of timezone data files, and that is not always the case. This changeset simplifies the handling of paths and use an actual chroot(2) call to implement the effect. PR: bin/197313
* Upgrade NTP to 4.2.8p4.glebius2015-10-2611-37/+95
| | | | | | | | | | | | | | | | | Security: FreeBSD-SA-15:25.ntp Security: CVE-2015-7871 Security: CVE-2015-7855 Security: CVE-2015-7854 Security: CVE-2015-7853 Security: CVE-2015-7852 Security: CVE-2015-7851 Security: CVE-2015-7850 Security: CVE-2015-7849 Security: CVE-2015-7848 Security: CVE-2015-7701 Security: CVE-2015-7703 Security: CVE-2015-7704, CVE-2015-7705 Security: CVE-2015-7691, CVE-2015-7692, CVE-2015-7702
* MFC r289601:ngie2015-10-261-2/+1
| | | | | | | | | | Don't check if `val` is NULL before calling free; free(3) already handles this PR: 203649 Submitted by: Thomas Schmitt <scdbackup@gmx.net> Coverity CID: 1305659 Sponsored by: EMC / Isilon Storage Division
* MFC r289600:ngie2015-10-261-1/+1
| | | | | | | | | Initialize `quiet` to false so `pw groupnext` again prints out the next gid by default Reported by: Florian Degner <f.degner@gmx.de> PR: 203876 Sponsored by: EMC / Isilon Storage Division
* MFC r287520:ngie2015-10-251-0/+10
| | | | | | Parallelize the usr.sbin/ntp subdirectory build Articulate all needed dependencies for the subdirectories
* MFC r286304:ngie2015-10-251-8/+20
| | | | | | | | | | | | | | Set f_file to -1/F_UNUSED when after closing when possible This will help ensure we don't trash file descriptors that get used later on in the daemon Found via internal Coverity scan Discussed with: cem, ed, markj Differential Revision: https://reviews.freebsd.org/D3081 Submitted by: Miles Ohlrich <miles.ohlrich@isilon.com> Sponsored by: EMC / Isilon Storage Division
* MFC 289067:wblock2015-10-171-11/+11
| | | | Fix a repeated typo: rootir -> rootdir.
* MFC r289065: Add --currently-running <release> option to freebsd-update.cperciva2015-10-162-0/+10
|
* Hook sesutil(8) to the build (forgotten in previous MFC)bapt2015-10-141-0/+1
|
* MFC r288266:bdrewery2015-10-137-3/+13
| | | | Add more SUBDIR_PARALLEL.
* MFC r288120: Fix crash on parsing some inf filesamdmi32015-10-062-1/+7
|
* MFC 288272jpaetzel2015-10-051-2/+2
| | | | | | | | | Increase group limit for kerberized NFSv4 PR: 202659 Submitted by: matthew.l.dailey@dartmouth.edu Reviewed by: rmacklem dfr Sponsored by: iXsystems
* MFC r288486, r288488: Set default block size for CD to expected 2048 bytes.mav2015-10-053-2/+6
|
* MFC r288310: Add to CTL initial support for CDROMs and removable devices.mav2015-10-057-7/+53
| | | | Relnotes: yes
* MFC r288259: Remove some duplicate, legacy, dead and questionable code.mav2015-10-053-597/+27
|
* MFC r288061: Make cltd ignore HA ports.mav2015-10-051-1/+7
|
OpenPOWER on IntegriCloud