summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Use the return value from snprintf() to keep a track of the length ofbrian2002-03-131-16/+17
| | | | | | | the display string in MPPEDispOpts. PR: 35836 MFC After: 2 weeks
* Don't try to cross-build sysinstall.des2002-03-121-1/+4
|
* Handle B460800 and B921600 being defined in <termios.h>brian2002-03-121-0/+6
|
* Update number of ports available.murray2002-03-111-1/+1
|
* Chase sysctl name.dd2002-03-111-1/+1
| | | | Submitted by: Christopher Sharp <christopher_sharp@web.de>
* after joerg's recent merge of i4b's isppcontrol to the main spppcontrol,hm2002-03-093-565/+0
| | | | remove now obsolete files.
* When reporting that a line is too long, include the line number in thedd2002-03-091-1/+5
| | | | | | | | error message. While I'm here, add a note that the "line too long" message isn't always accurate. PR: 35395 Submitted by: andrew@ugh.net.au
* Fix typo: s/secotor/sector/.keramida2002-03-081-1/+1
|
* - Misc grammar fixes.keramida2002-03-081-3/+3
| | | | - Add `Ar filename' to the description of the -f option.
* Minor grammar fix:keramida2002-03-081-1/+1
| | | | s/will be resume/will be resumed/
* Fix typo: capablities -> capabilities.keramida2002-03-081-1/+1
|
* Fix typo: to examining -> to examine.keramida2002-03-081-1/+1
|
* Merge a duplicate description of the -L option into the first one.keramida2002-03-081-10/+2
| | | | | PR: docs/34782 MFC after: 1 week
* Default to UTC on sparc64 also.obrien2002-03-061-1/+1
|
* Don't drop the last character from ut_line in ID0logout().brian2002-03-051-7/+8
| | | | | PR: 35531 MFC after: 2 weeks
* Unbreak PAP-only authentication.maxim2002-03-051-5/+11
| | | | | | | | PR: i386/34607 Not objected by: peter Approved by: ru Obtained from: ppp-2.4.1b2 MFC after: 1 week
* Update headerssos2002-03-041-1/+1
|
* fix the wildrunning % counter.sos2002-03-041-4/+2
|
* Don't blow away ``set escape'' settings when we've completed thebrian2002-03-043-2/+9
| | | | | | login phase. Just initialise the correct parts. Originially submitted by: Vladimir B. Machulsky <bofhmail@yahoo.com>
* Fix bug on method local named object related panic and Bankfieldtakawata2002-03-021-1/+17
| | | | operation.
* Sync with latest KAME's manpage of prefix(8).ume2002-03-011-158/+19
| | | | | Obtained from: KAME MFC After: 1 week
* Use some black make(1) magic to make pkg_install build even withoutsobomax2002-02-271-0/+5
| | | | | | Makefile.inc in parent directory (e.g. when checked out from cvs as a module). MFC after: 2 weeks
* Introduce a version field to `struct xucred' in place of one of thedd2002-02-272-2/+3
| | | | | | | | | | | | spares (the size of the field was changed from u_short to u_int to reflect what it really ends up being). Accordingly, change users of xucred to set and check this field as appropriate. In the kernel, this is being done inside the new cru2x() routine which takes a `struct ucred' and fills out a `struct xucred' according to the former. This also has the pleasant sideaffect of removing some duplicate code. Reviewed by: rwatson
* When asked to print bytes (-b option) do that and put 16 on a line.sos2002-02-261-3/+4
|
* Add a hint about -DNO_WERRORpeter2002-02-251-0/+1
|
* #include <time.h> for the definition of time functions instead ofbde2002-02-251-1/+1
| | | | | | depending on namespace pollution 2 layers deep in <sys/stat.h>. Removed unused include of <sys/stat.h>. Only its pollution was used.
* #include <time.h> for the definition of time functions instead ofbde2002-02-251-0/+1
| | | | depending on namespace pollution 2 layers deep in <sys/stat.h>.
* #include <sys/time.h> instead of depending on namespace pollution inbde2002-02-251-0/+1
| | | | <sys/stat.h> for the declaration of struct timeval.
* Improve grep'ing for variables in make.conf and rc.conf*.dougb2002-02-251-4/+4
| | | | Thanks to cjc for the idea.
* * Add a feature to do a "pre {build|install}world" check of (so far)dougb2002-02-241-26/+90
| | | | | | | | master.passwd, group, and make.conf * Add a feature to check variables in rc.conf[.local] to their counterparts in /etc/defaults/rc.conf after a run * Twiddle whitespace a little * Change some "[ -f file ] && rm file" to "rm -f file"
* Reserved one of the spare fields in struct gmon to record the historybde2002-02-211-3/+31
| | | | | | | | | | | | | | | | | | | counter type, as threatened in rev.1.8 (the density doesn't need to be recorded since it can be derived from other fields). This doesn't affect binary compatibility, but new utilities won't be able to depend on the contents of this field because libc/gmon/gmon.c was broken -- it wrote garbage to the spare fields. Added a history counter type field to struct gmonparam. This breaks binary compatibility a little, since kgmon wanted to read the whole struct. Fixed kgmon to only depend on reading the critical earlier parts of the struct. This should also fix 6+ year old breakage of binary compatibility when the profrate field was added. Only initialize the new field in struct gmon for now, so that the compatibility code for this (in kgmon) gets tested. The compatibility code has to guesstimate the value. The new field in struct gmonparam is for the kernel to initialize so that kgmon doesn't have to guess.
* Don't define NOADDITIONAL in CFLAGS again, it is already in named.hache2002-02-211-2/+1
| | | | This commit unbreak 'make depend'
* Commit some infrastructure for turning on -Werror for kernel compiles.peter2002-02-203-4/+13
| | | | | | It doesn't actually do it yet though. This adds a flag to config so that we can exclude certain vendor files from this even when the rest of the kernel has it on. make -DNO_WERROR would also bypass all of it.
* Prefix structure members to protect them against clashes with eg.alfred2002-02-202-34/+34
| | | | | | | | | c++ keywords. This keeps us in sync with NetBSD because they actually committed my delta first. Ok'd by: lennard
* Make sortdeps() working with dependency lists containing one or no elements.sobomax2002-02-201-1/+4
| | | | | Submitted by: roam MFC in: 1 week
* Provide protection against incorrect input (dependency list).sobomax2002-02-201-2/+5
| | | | Submitted by: roam
* Document NGM_PPPOE_ACNAME handling.brian2002-02-201-0/+6
|
* Handle NGM_PPPOE_ACNAME messages.brian2002-02-201-0/+5
| | | | | Submitted by: Andre Albsmeier <andre@albsmeier.net> Approved by: julian
* Add some code which read manufucturer id. This is for NEWCARD compatibility.shiba2002-02-204-0/+46
| | | | Reviewed by: imp
* Fixed divots that I created when I moved prototypes of group_from_gidimp2002-02-191-0/+1
| | | | | | | and user_from_uid to grp.h and pwd.h. Update the man pages. Submitted by: David Malone Pointy hat to: imp
* o Move NTOHL() and associated macros into <sys/param.h>. These aremike2002-02-187-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | deprecated in favor of the POSIX-defined lowercase variants. o Change all occurrences of NTOHL() and associated marcros in the source tree to use the lowercase function variants. o Add missing license bits to sparc64's <machine/endian.h>. Approved by: jake o Clean up <machine/endian.h> files. o Remove unused __uint16_swap_uint32() from i386's <machine/endian.h>. o Remove prototypes for non-existent bswapXX() functions. o Include <machine/endian.h> in <arpa/inet.h> to define the POSIX-required ntohl() family of functions. o Do similar things to expose the ntohl() family in libstand, <netinet/in.h>, and <sys/param.h>. o Prepend underscores to the ntohl() family to help deal with complexities associated with having MD (asm and inline) versions, and having to prevent exposure of these functions in other headers that happen to make use of endian-specific defines. o Create weak aliases to the canonical function name to help deal with third-party software forgetting to include an appropriate header. o Remove some now unneeded pollution from <sys/types.h>. o Add missing <arpa/inet.h> includes in userland. Tested on: alpha, i386 Reviewed by: bde, jake, tmm
* Update build infrastructure for sendmail 8.12.gshapiro2002-02-171-17/+27
| | | | | Add new build knob, SENDMAIL_SET_USER_ID, which installs sendmail as a set-user-ID root binary instead of the new method (set-group-ID smmsp).
* Update build infrastructure for sendmail 8.12.gshapiro2002-02-173-9/+52
|
* Add editmap, a new utility which comes with sendmail 8.12 for editing maps ingshapiro2002-02-172-1/+53
| | | | place.
* Merge from NetBSD:joe2002-02-162-43/+56
| | | | | * Add a -d flag to show the device drivers associated with each device. * Update to use the new speed structure entry.
* Unbogotify the comment containing the RCS Id.des2002-02-151-1/+4
|
* Remove unnecessary setjmp.h.maxim2002-02-131-1/+0
| | | | | | | Reviewed by: ru Approved by: ru Obtained from: OpenBSD MFC after: 1 week
* Unlink all log sockets at startup.maxim2002-02-131-0/+1
| | | | | | | | PR: misc/34839 Reviewed by: ru Approved by: ru Obtained from: OpenBSD MFC after: 2 weeks
* * Update (c)dougb2002-02-121-2/+5
| | | | | | | | | * Fix a problem with files that have no CVS $Id's. Thanks to naddy for spotting this one. It wasn't a _huge_ problem since almost all the files we install (except motd) have one, but still, it's a bug. * Add a divider between diff outputs, which is helpful both for logs, and for giving a good visual clue for diffs that are smaller than $LINES. Another helpful suggestion from Gary W. Swearingen, swear@blarg.net.
* * Update (c)dougb2002-02-121-1/+3
| | | | | * Expand on the definition of the -s (strict) option, at the suggestion of Gary W. Swearingen, swear@blarg.net.
OpenPOWER on IntegriCloud