summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Start the correct copy of named (pass ${named_program} to ndc(8)).dd2001-06-141-1/+1
| | | | | PR: 27051 Submitted by: Maxim Konovalov <maxim@macomnet.ru>
* This program uses ndc(8); it doesn't send a signal itself.dd2001-06-142-20/+11
| | | | | PR: 28104 Submitted by: Maxim Konovalov <maxim@macomnet.ru>
* Convert IIJ copyrights to BSD copyrights.brian2001-06-1340-687/+972
| | | | Approved by: Toshiharu OHNO <tohno@sirius.ocn.ne.jp>
* Fix usage bogon (-d doesn't take any arguments).bmah2001-06-131-2/+2
| | | | MFC after: 3 days
* Add a -s option to pkg_version, which limits output to packagesbmah2001-06-132-7/+23
| | | | | | | | matching a given string. PR: 26114 Submitted by: edwin@mavetju.org (with modifications and manpage update) MFC after: 3 days
* Fixed world breakage on systems where ntohl() doesn't return u_longbde2001-06-131-17/+4
| | | | | | | | | | | | | (e.g., on alphas, or even on i386's with a POSIX-200x-conformant ntohl() (ntohl() returns uint32_t which is u_int on i386's)). Fixed related bugs and bogons while I'm here: - ntohl() was "fixed" for printing in 1 place by casting to "(unsigned int )". This breaks the value on systems where u_int is smaller than uint32_t, and has 2 style bugs. - spell u_int consistently (never use "unsigned"). - break K&R support some more (don't cast malloc()'s arg to a wrong type...).
* Use getdtablesize() instead of OPEN_MAX.des2001-06-131-1/+1
| | | | Submitted by: bde
* Add terminal type configuration to the Options screen. It allows selectingolgeni2001-06-133-0/+34
| | | | | | | | a monochrome display after booting into sysinstall, if you have any trouble with the default color scheme. Approved by: jkh MFC after: 2 weeks
* Plug two memory leaks: call login_close() after login_getclass(), anddd2001-06-131-2/+6
| | | | | | | use free_entry() instead of free() to free a struct _entry. PR: 28108 Submitted by: Mark Peek <mark@whistle.com>
* Fix about 90-100 warnings one gets when trying to compile lpr&friendsgad2001-06-1222-568/+405
| | | | | | | | | | | | with BDECFLAGS on, mainly by adding 'const' to parameters in a number of routine declarations. While I'm at it, ANSI-fy all of the routine declarations. The resulting object code is exactly the same after this update as before it, with the exception of one unavoidable change to lpd.o on freebsd/alpha. Also added $FreeBSD$ line to lpc/extern.h lpc/lpc.h lptest/lptest.c Reviewed by: /sbin/md5, and no feedback from freebsd-audit
* Properly quote recursive pkg_add operations so that filenames withjkh2001-06-111-1/+1
| | | | spaces or special characters in them won't barf.
* Check for the existence of the Makefile in the port skeleton directorytobez2001-06-111-2/+12
| | | | | | | | | | before running make. If the package origin points to a non-existent or stale port, report this package as orphaned, instead of producing more general `unknown in index' message. PR: 27707 Submitted by: myself, roamer Approved by: bmah, markm
* Backout removal of -I${.CURDIR}/../../../sys in previous revision.ru2001-06-112-1/+2
| | | | | | | It is needed to pick up (missing in SHARED=copy case) netatm/uni/ headers. The right fix would be to install missing netatm/uni headers.
* Backout previous change (removal of -I${.CURDIR}/../../sys/netinet).ru2001-06-114-2/+4
| | | | | | | | | | This is needed to pick up the right headers. Wrong headers from src/contrib/ipfilter are used otherwise. The right fix would be to fix contrib/ipfilter C sources to pick up headers from <sys/netinet>. Noticed by: peter
* Pass on the verbose option to fetchGetURL().des2001-06-111-3/+4
| | | | | | | In the child that's set up to run tar(1), close all file descriptors except stdin, stdout and stderr. PR: bin/27760
* Sync with recent KAME.ume2001-06-1165-1586/+3452
| | | | | | | | | | | | | | | | | | This work was based on kame-20010528-freebsd43-snap.tgz and some critical problem after the snap was out were fixed. There are many many changes since last KAME merge. TODO: - The definitions of SADB_* in sys/net/pfkeyv2.h are still different from RFC2407/IANA assignment because of binary compatibility issue. It should be fixed under 5-CURRENT. - ip6po_m member of struct ip6_pktopts is no longer used. But, it is still there because of binary compatibility issue. It should be removed under 5-CURRENT. Reviewed by: itojun Obtained from: KAME MFC after: 3 weeks
* WARNS=2 cleanup, ANSIfication, manpage mdoc(7) cleanup.roam2001-06-113-128/+117
| | | | | | | | | | | | Once again, as explained in my messages to -audit, the ANSIfication comes as part of the preparation to add a new -d command-line flag to send output to stdout/stderr. That commit will come in a week, pending any further comments/objections. For those who have missed the -audit mails, it's at http://people.FreeBSD.org/~roam/bsd/rarpd/usr.sbin-rarpd-d.patch Asbestos suit: on ;) Reviewed by: dd, silence on -audit MFC after: 1 month
* ISO_* -> ISO*ache2001-06-114-4/+4
|
* Add a comma between the two names in the CONTRIBUTERS section.dd2001-06-101-1/+1
|
* Correct cross-reference:sobomax2001-06-073-4/+4
| | | | | | portmap.8 --> rpcbind.8 Submitted by: .Xr testing script
* - Renamed the ``proxy'' modifier of the -d flag to ``pub'',ru2001-06-072-27/+53
| | | | | | | | | | | | | to be consistent with the -s flag. Updated documentation on what this modifier does. - Added the ``only'' keyword to the -s and -S flags, that could be used to created "proxy-only" published entries. Previously, arp(8) created an entry of this type only in the absence of the route to a destination. PR: bin/12357 MFC after: 1 week
* Initialize the sa_flags member of an auto struct sigaction variable.jdp2001-06-061-0/+1
| | | | | | | It contained whatever garbage happened to be on the stack. PR: bin/27457 (not confirmed yet, but almost certain) MFC after: 1 day
* Get rid of se_ctladdrinitok, which doesn't do anything and seemesdwmalone2001-06-062-16/+0
| | | | | | | to have been accidently imported when ipv6 support was added to inetd. Approved by: ume
* Spelling fix ("independantly" -> "independently")chris2001-06-061-1/+1
| | | | | PR: 25648 Submitted by: Jens Schweikhardt <schweikh@schweikhardt.net>
* Fetch the default maximum TTL value from the net.inet.ip.ttl MIB.ru2001-06-061-1/+2
| | | | | PR: bin/19598 MFC after: 1 week
* Note that -a is ignored if -s is also specified.ru2001-06-061-0/+6
|
* Part #2 of the <machine/ioctl_fd.h> => <sys/fdcio.h> move: handle thejoerg2001-06-064-5/+4
| | | | tools in usr.sbin/fd*.
* PR: bin/26817hm2001-06-051-2/+8
| | | | | | Submitted by: Clement Ballabriga <clement@asso.ups-tlse.fr> Reviewed by: hm Check for read errors from the controlling tty when in fullscreen mode.
* Correct cross-references:sobomax2001-06-051-1/+1
| | | | | | | | setsockopt.3 --> setsockopt.2 syslog.8 --> syslogd.8 tcpdump.8 --> tcpdump.1 MFC after: 1 week
* Correct cross-references:sobomax2001-06-053-5/+5
| | | | | | | | | | | | ng_bpf.8 --> ng_bpf.4 ng_ether.8 --> ng_ether.4 ng_iface.8 --> ng_iface.4 ng_pppoe.8 --> ng_pppoe.4 ng_socket.8 --> ng_socket.4 ng_tty.8 --> ng_tty.4 ng_{type}.4 --> /dev/null MFC after: 1 week
* Fixed pkg_add so when it does not find a package, it returns != 0.pirzyk2001-06-041-1/+2
| | | | | | PR: bin/23083 Submitted by: Patch submitted by Maxime Henrion <mux@qualys.com> MFC after: 2 weeks
* Now that we've got the ne765.h file installed under <dev/ic/>, use itjoerg2001-06-041-2/+1
| | | | | | here instead of the old "/sys/isa/ic/..." hack. This should fix building the world for machines that don't have a /sys symlink, finally.
* Fix the default number of virtual consoles in the usage.hlp file: thereolgeni2001-06-041-1/+1
| | | | | | were 3 virtual consoles in older releases, but now they are 8. MFC after: 1 week
* Renamed to README.natbrian2001-06-041-352/+0
|
* Add BSD style copyrights (with permission from Charles Mott where appropriate)brian2001-06-047-95/+254
| | | | Deprecate -alias further (after a repo-copy)
* mdoc(7) police: minor markup cleanup.ru2001-06-041-6/+3
|
* msdos -> msdosfsru2001-06-041-8/+8
| | | | | | | | null -> nullfs umap -> umapfs union -> unionfs Approved by: obrien
* Correct a comment - the time service returns seconds since 1900 not 1970.dwmalone2001-06-041-1/+1
| | | | Submitted by: ru
* This patch cleans up the ident stuff in inetd. The code which hasdwmalone2001-06-043-123/+145
| | | | | | | | | | | | | | | | | | | been patched so many times it was a bit of a mess. There are style, code and man page cleanups. The following are the functional changes: The RFC only permits the returning of 4 possible error codes, make sure we only return these (PR 27636). Use MAXLOGNAME to determine the longest usernames. Add a -i flag, which returns the uid instead of the username (this is from a PR 25787, which also contained alot of the cleanups in this patch). PR: 25787, 27636 Partially Submitted by: Arne.Dag.Fidjestol@idi.ntnu.no Reviewed by: Arne.Dag.Fidjestol@idi.ntnu.no, green MFC after: 3 weeks
* Resetting using COR bit 7 appears to be bad on pci based systems.imp2001-06-041-0/+2
| | | | #ifdef it out for now.
* You can't free a string and then use it as the error message topaul2001-06-041-1/+2
| | | | | | | errx. Instead use warn to print the string, then cleanup and exit normally. This fixes a core dump if the executable to be run doesn't exist.
* Add diskcheck-daemon.phk2001-06-034-0/+1014
| | | | | | | | | | | | | With a small disk being 20GB these days, chances are pretty good that an ailing sector will not be read while still being recoverable by the drive. Diskcheck daemon will read disks in the background at a low rate and that way give the diskdrive a chance to detect and correct soft read errors before they become hard errors. Idea by: phk Written by: ben
* Remove pim6[ds]d from the tree. The software had a restrictive licenseume2001-06-0393-34962/+0
| | | | than we can handle. pim6[ds]d are available as ports instead.
* Fix a grammar bogon and removed whitespace at EOL.schweikh2001-06-031-8/+8
| | | | MFC after: 1 week
* Remove double //'s in path.obrien2001-06-021-1/+1
|
* msdos -> msdosfs.ru2001-06-014-7/+7
|
* mount_msdos(8) -> mount_msdosfs(8).ru2001-06-011-1/+1
|
* - VFS_SET(msdos) -> VFS_SET(msdosfs)ru2001-06-011-1/+1
| | | | | | - msdos.ko -> msdosfs.ko - mount_msdos(8) -> mount_msdosfs(8) - "msdos" -> "msdosfs" compatibility glue in mount(8)
* Remove vestiges of MFS.ru2001-06-013-6/+3
|
* Starting with 5.0-R, do not support `.' as a owner / group delimiter.obrien2001-05-311-1/+0
|
OpenPOWER on IntegriCloud