summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* If HISMACADDR is set in the environment (by pppoed), pass the value tobrian2004-06-261-0/+16
| | | | | | | | the RADIUS server as RAD_CALLING_STATION_ID. PR: 44310 Submitted by: Gleb Smirnoff <glebius@cell.sick.ru> MFC after: 2 weeks
* Remove dependency on dev/usb/usbdevs.h, in preparation for itsimp2004-06-251-2/+4
| | | | | | disappearing from the tree. We already were splitting the baby (using the symbol for the vendor BROADCOM, but not for the device). Use #defines for both.
* Adjust the system endian and a.out headers to be more MI and cross-buildingobrien2004-06-229-353/+165
| | | | | | friendly. Use the systems headers rather than local versions. Reviewed by: ru
* libcompat doesn't seem to be needed any more.phk2004-06-211-2/+2
|
* libcompat doesn't seem to be necessary any more.phk2004-06-211-3/+0
|
* Merge changes from the tzcode2004a import.stefanf2004-06-205-51/+89
|
* Fix the format-string in a call to err(). It was causing a warning ifgad2004-06-201-1/+1
| | | | compiled on 4.x-stable.
* This commit was generated by cvs2svn to compensate for changes in r130780,stefanf2004-06-201-97/+0
| | | | which included commits to RCS files with non-trunk default branches.
* This commit was generated by cvs2svn to compensate for changes in r130777,stefanf2004-06-204-26/+1028
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the rest of tzcode2004a, the bits needed for the timezone compiler.stefanf2004-06-209-92/+1162
| | | | | | | | Obtained from: ftp://elsie.nci.nih.gov/pub/tzcode2004a.tar.gz
* | Fix the check for a "duplicate filename to compress", so that we're checkinggad2004-06-191-1/+1
| | | | | | | | | | | | | | | | | | the *filename* and not the pid_file(!). Stupid brain-fault on my part. This could cause a segfault under -neworder if newsyslog had to rotate multiple files, and later ones had specifed the 'N' flag. Bug first reported by: le MFC after: 3 days
* | Use strlcpy(3) to replace the idiomaticrobert2004-06-173-30/+18
| | | | | | | | | | | | | | strncpy(d, s, l); d[l - 1] = '\0'; statements.
* | Document boot0sio and note that it requires modem handshake to work.phk2004-06-171-2/+9
| |
* | Fix a bug which occurred when the home directory given by therobert2004-06-171-1/+2
| | | | | | | | | | | | | | | | -d option was equal to the one already saved and which caused the pw utility to avoid updating values passed by other options processed before the -d option in the code path. Spotted by: Richard Caley <rjc@interactive.co.uk>
* | Tabs were accidentally lost in the last commit.mux2004-06-161-0/+3
| | | | | | | | Submitted by: Liam J. Foy <liamfoy@sepulcrum.org>
* | Assorted markup, spelling, and grammar fixes.ru2004-06-161-2/+3
| |
* | mdoc(7) policebms2004-06-161-2/+2
| | | | | | | | Submitted by: ru
* | Document the behaviour of the net.link.ether.inet.proxyall sysctl MIBbms2004-06-161-0/+19
| | | | | | | | | | | | | | | | variable. PR: docs/21826 Reviewed by: ru Requested by: Bernd Luevelsmeyer
* | Factor out some duplicated code and fix some style(9) issues.mux2004-06-141-69/+62
| | | | | | | | Submitted by: Liam J. Foy <liamfoy@sepulcrum.org>
* | Improve spec to spec comparison output.phk2004-06-141-3/+20
| |
* | Document -d flagphk2004-06-141-0/+4
| |
* | Language tweak in explaining the mouse wheel's functionality.obrien2004-06-141-2/+2
| |
* | Sync up with KAME. The main change is to try to avoid exposingdwmalone2004-06-131-56/+36
| | | | | | | | | | | | | | exposing information about the endianness and alighment requirements in the packets sent by traceroute6. Obtained from: KAME
* | Assorted markup, grammar, and spelling fixes.ru2004-06-1315-359/+490
| |
* | Be smarter about printing non-ethernet link-level addresses.dfr2004-06-131-3/+13
| |
* | Switch to using the "neworder" for rotating log files, by default. Thegad2004-06-121-1/+9
| | | | | | | | | | | | | | main advantage of this is that daemon's are only signalled once per run, instead of once for each file that is rotated. MFC after: 2 weeks
* | Add some more details about what traceroute6 does.dwmalone2004-06-091-3/+40
| | | | | | | | | | | | Submitted by: Orla McGann <orly@redbrick.dcu.ie> Obtained from: KAME MFC after: 2 weeks
* | Update kvm mode to match kernel changes.phk2004-06-091-3/+3
| |
* | Add note that rmuser will clean up any IPC mechanisms owned by the user.csjp2004-06-081-0/+3
| | | | | | | | Approved by: bmilekic (mentor)
* | Avoid assignments to cast expressions.stefanf2004-06-081-1/+1
| | | | | | | | | | Reviewed by: md5 Approved by: das (mentor)
* | - Don't use argv[i] when i is uninitialised.stefanf2004-06-081-3/+2
| | | | | | | | | | | | | | - Cast isdigit's argument to unsigned char. - Remove the now unused variable i. Approved by: das (mentor)
* | Drop the include for <stdint.h>, it was only needed when this wasgad2004-06-071-1/+0
| | | | | | | | | | | | | | using __DECONST() for something, and that reference has been removed. Noticed by: Helge Oldach MFC after: 13 days
* | Add an "oldorder" option, so that when the default changes to "neworder",gad2004-06-071-0/+8
| | | | | | | | | | | | people have a way to drop back to the previous logic. MFC after: 13 days
* | In "neworder" processing, reduce the delay between signals to separategad2004-06-071-10/+38
| | | | | | | | | | | | | | | | processes, and balance that by adding a 10-second delay after all the processes have been signaled. Also improvement a few messages printed with `-n' or `-v' processing (mostly signal-related messages). MFC after: 13 days
* | Major re-ordering of the steps that newsyslog will use when processinggad2004-06-071-0/+425
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | files to rotate. The new order will first rotate all files that need to be rotated, and then send a single signal to each process which needs to be signaled, and finally it will compress all the files which were rotated. This means daemons will be signaled once per run of newsyslog, instead of once per file rotated. Also, files will be compressed in order of file-size (smallest to largest). Also, it waits for each file to be completely compressed before starting the next one (effectively as if the 'w' flag is specified for all entries in newsyslog.conf). This avoids the situation of having 10 gzip's going at the same time (each with a log.0 and a log.0.gz file active), and it also means that file attributes can be reliably set on files after they are compressed. NOTE: This commit does define NEWORDER (which you could get rid of if you really don't trust this), but it does not flip the "-D neworder" switch. So, at the moment none of these changes happen unless you request them (perhaps by adding '<debug> neworder' in newsyslog.conf). PR: bin/25070 inspired some parts of this Submitted by: parts from bin/25070 done by Helge Oldach MFC after: 14 days
* | A variety of minor changes. Allow users to set a debugging option viagad2004-06-071-67/+120
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the newsyslog.conf file. Rename one size-related variable, and move another one from the stack into conf_entry. Add a routine to change file-attributes (chown, chmod, chflags), instead of having several places doing the same sequence of system-calls. A few cosmetic/style changes. These should not effect any users. Most of these probably look pointless, but they are the "insignificant parts" of a much larger update that I'll be committing soon. Doing these as a separate update should make that update easier to read. MFC after: 14 days
* | Accept full path names in addition to base names for shells.mtm2004-06-062-11/+16
| | | | | | | | | | Make explicit in the documentation that valid shells need to be supplied only if the -S option is not given.
* | Tidy up markup.ru2004-06-061-19/+24
| |
* | Tell crunchide to deal with arm elf binaries as well.cognet2004-06-061-0/+4
| | | | | | | | Rescue can now be built for arm.
* | Markup nits.ru2004-06-051-7/+11
| |
* | Reapply traditionally lost fixes.ru2004-06-051-6/+4
| |
* | Reapply traditionally lost fixes, fixed some more.ru2004-06-051-38/+43
| | | | | | | | This manpage needs an English clenup.
* | Markup and grammar nits.ru2004-06-051-31/+23
| |
* | Removed redundant mdoc(7) macro calls.ru2004-06-051-2/+2
| |
* | Markup and punctuation nits.ru2004-06-052-28/+27
| |
* | Markup nits.ru2004-06-052-11/+13
| |
* | Added forgotten -w to the usage().ru2004-06-041-1/+1
| |
* | Added forgotten -d to the usage().ru2004-06-041-1/+1
| |
* | Added forgotten -w to the SYNOPSIS.ru2004-06-041-4/+4
| | | | | | | | Trim whitespace at EOL.
* | Fixed warnings (missing .Ed call).ru2004-06-041-11/+11
| | | | | | | | | | Fixed grammar (missing punctuation). Fixed screwup with the SEE ALSO section.
OpenPOWER on IntegriCloud