summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* kldload ng_pppoe as necessarybrian2001-04-101-0/+5
|
* Allow user to omit font size specification when loading a font. In additionsobomax2001-04-094-43/+131
| | | | | | | | | | | | | | | the following fixes had been made: - check the size of the font being loaded and compare it with possible sizes to minimise possibility of loading something that is not a fontfile at all and turning console screen into garbage; - prevent buffer overflow (and coredump as a result ) when loading valid uuencoded file with size that exceeds allocated buffer; - correct and improve several error messages. Approved by: -audit, -hackers (silently)
* Clarify that we're talking about KBytes per second vs kBits per second.jkh2001-04-091-1/+1
| | | | Reminded by: bde
* Change the behaviour of mixer slightly such that not explicitly specifyinggreid2001-04-092-5/+10
| | | | | | | | a mixer device will set/get the master volume levels PR: 25156 Submitted by: Tony Finch <dot@dotat.at> Reviewed by: cg, nik
* Don't complain about deprecated environment variables, like MUSIC_CD,joe2001-04-081-8/+9
| | | | | | | | | | being present in the environment if the user has CDROM defined, or has specified a device on the command line. This avoids users of ports like 'workman' that use these variables getting gratuitous warnings from cdcontrol. Suggested by: John Sellens <jsellens@generalconcepts.com>
* According with RFC 2330 ("Framework for IP Performance Metrics", fromjkh2001-04-082-2/+2
| | | | | | | Paxson et al, Status: Informational, May 1998), we should use "bits per second" and "k" as 1000 not 1024 for throughput measures. Submitted by: Eduardo Souza Machado da Silva <esms@acm.org>
* beforeinstall -> SCRIPTS.ru2001-04-0714-87/+27
|
* Make sure the euid is restored in an obscure error situation.gad2001-04-061-3/+4
| | | | Submitted by: J Wunsch <j@ida.interface-business.de> in freebsd-audit
* It's possible to kldload netgraph (as well as the other ng_* bits),brian2001-04-051-2/+2
| | | | so do it if required.
* Bump the default / size up another 10MB to 120MB.obrien2001-04-052-2/+2
| | | | Requested by: jhb
* Remove -Wall. It breaks compiling with non-gcc compilers.obrien2001-04-051-1/+1
|
* Default the UTC question to "yes" on the Alpha.obrien2001-04-051-3/+10
|
* This builds fine with -Wall.obrien2001-04-051-1/+1
|
* When we change the interface MTU, run through the routing table and tweakbrian2001-04-057-143/+272
| | | | all route MTUs too.
* Add the VLAN interface type to the list of ARP-capable interface types.yar2001-04-041-2/+5
|
* mdoc(7) police: removed hard sentence break.ru2001-04-041-2/+3
|
* mdoc(7) police: removed hard sentence breaks.ru2001-04-041-5/+10
|
* mdoc(7) police: you don't need to use enclose macros for blocks of text.ru2001-04-041-1/+1
|
* mdoc(7) police: .Nm remembers its argument on the first call.ru2001-04-041-1/+1
|
* Document ``special <progname> ident <identifier>'' command.ru2001-04-041-0/+17
|
* - Call `subclean' after `clean' for each program.ru2001-04-041-2/+2
| | | | - Eliminate compiler warning.
* Implement a package number comparison routine for pkg_version(1)bmah2001-04-034-31/+201
| | | | | | | | | | | | that actually conforms to the Porters Handbook. Add a -t option to pkg_version(1) for doing comparison testing. Add a script (and make test target) to do some regression tests on the package number comparison routine, to help debug future revisions. Submitted by: knu Procrastination by: bmah
* Be a bit more persistent when the NET_RT_IFLIST sysctl returns ENOMEMbrian2001-04-031-18/+27
| | | | rather than dropping out immediately.
* Don't say ``PPP enabled'' if we're given the -quiet switchbrian2001-04-031-2/+4
|
* Update for tcpdump 3.6.2fenner2001-04-032-73/+68
|
* Backout revision 1.6 (removed the NOSHARED bit.)ru2001-04-021-0/+1
| | | | | | | These must be compiled static so that it is possible to use them early in the boot process. Requested by: imp
* Removed the NOSHARED bit.ru2001-04-021-1/+0
|
* Fix a grammar bogon.dd2001-04-021-1/+1
|
* Don't assume challenges and responses don't contain embedded '\0's.brian2001-04-014-15/+12
| | | | | | | | Mschapv2 response generation may produce embedded NULs... causing us to send a bogus response to the radius server and end up failing the client's valid response. Problem pointed out by: Eugene Vigovskiy <vigov@com2com.ru>
* Give a little more variety in the /etc/exports example.obrien2001-04-012-4/+4
|
* Remove NOSHARED.iwasaki2001-04-011-1/+0
| | | | | | | | The usr.sbin/acpi/ utilities should be compiled non-static. It just followed the usr.sbin/pccard/Makefile.inc way last time. Pointed out by: ru and msmith Committed at: BSD HANAMI in Japan 2001
* -DRELEASE_CRUNCH moved into crunchgen(1) config files forru2001-03-311-6/+0
| | | | release building. Remove a hack that is no longer needed.
* MFC candidatejesper2001-03-301-1/+1
| | | | | | | Change the default mode from ad-hoc to infrastructure, as noted in src/share/man/man4/an.4 rev 1.8
* `buildopts' may affect the selection of object files.ru2001-03-301-1/+1
| | | | | | | Make sure we pass $(BUILDOPTS) to the `clean' target so that `make clean' works on the same set of object files. Otherwise, we may end up with an incorrectly built and up-to-date object file.
* Correct message to say "shutting down" rather than just "shutting"jkh2001-03-292-6/+6
| | | | Noticed by: Joachim Strömbergson <watchman@ludd.luth.se>
* Change NO_MAKEDEV to a finer granularity method:asmodai2001-03-291-1/+1
| | | | | | | | | | NO_MAKEDEV_INSTALL and NO_MAKEDEV_RUN. The former implying the latter. The names imply what they do. The last commit by DES based on a PR defeated the original idea behind NO_MAKEDEV, which was not to run MAKEDEV, but to do the installation of MAKEDEV. This should satisfy both parties on the MAKEDEV challenge. Reflect this in mergemaster, this might later on be decided to be set to NO_MAKEDEV_INSTALL, for now I kept to the old behaviour.
* Change NO_MAKEDEV to a finer granularity method:asmodai2001-03-291-1/+1
| | | | | | | | | NO_MAKEDEV_INSTALL and NO_MAKEDEV_RUN. The former implying the latter. The names imply what they do. The last commit by DES based on a PR defeated the original idea behind NO_MAKEDEV, which was not to run MAKEDEV, but to do the installation of MAKEDEV. This should satisfy both parties on the MAKEDEV challenge. Reflect this in the documentation.
* Kill vn related manual pages, they're not used any more.ben2001-03-291-275/+0
| | | | Approved by: phk
* Note that the -v option is not supported. Don't remove the actualdd2001-03-291-0/+2
| | | | | | | | text because the code is still in pstat.c, and may be reincarnated at some point. PR: 26054 Approved by: nik
* Fix some minor nits:ben2001-03-291-6/+6
| | | | | | | | | IEEE802.11 -> IEEE 802.11 (infrastructure) mode. -> (infrastructure mode). place of ".". PR: 25985 Submitted by: SUZUKI Koichi <metal@vc-net.ne.jp>
* Allow ident requests with trailing junk following the terminating "\n".dwmalone2001-03-281-1/+3
| | | | | Reviewed by: ben Approved by: green
* Bring the PPPoE interface UP if requiredbrian2001-03-284-13/+28
| | | | Suggested by: archie
* Mention that the vga(4) driver supports 90-column video modes.dd2001-03-281-0/+10
| | | | | | PR: 26050 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su> Approved by: nik
* Add some comments to two examples and extend a ``set ifaddr''.brian2001-03-282-6/+6
|
* Finally fix __yp_ping(). We can't use the old locally defined clntudp_call()wpaul2001-03-271-239/+26
| | | | | | | method anymore since the code inside the RPC library has changed too much. Now that the clnt_dg module has the necessary code internally, we can yank out the local method code and turn on the ASYNC hack with clnt_control(). This will make the -m flag work again.
* Document LOG_CONSOLE.cwt2001-03-271-3/+6
|
* Mirror the newfs(8) defaults change I made in rev 1.33 of newfs.c whereobrien2001-03-272-2/+2
| | | | I made `22' the default number of cylinders per group.
* Fix LDADD and add missing DPADD.ru2001-03-273-6/+12
|
* give the "netgrent" functions a home in netdb.halfred2001-03-272-6/+1
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-26214-95/+198
| | | | - MAN[1-9] -> MAN.
OpenPOWER on IntegriCloud