summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Un-kmemize. Portions of the tty mode code have been temporarily disabled;des2002-05-232-84/+147
| | | | | | everything else, including dead kernel support, works just like before. Sponsored by: DARPA, NAI Labs
* Nits in previous commits.des2002-05-231-3/+3
| | | | Sponsored by: DARPA, NAI Labs
* Cull large amounts of dead code (deprecated since 1997)des2002-05-232-586/+6
| | | | Sponsored by: DARPA, NAI Labs
* ANSIfy.des2002-05-231-61/+40
| | | | Sponsored by: DARPA, NAI Labs
* Staticize.des2002-05-231-50/+50
| | | | Sponsored by: DARPA, NAI Labs
* Whitespace cleanup.des2002-05-231-6/+6
| | | | Sponsored by: DARPA, NAI Labs
* Unbreak tty mode (cons was renamed to constty a while ago)des2002-05-231-1/+1
| | | | Sponsored by: DARPA, NAI Labs
* load_env(), the function that attempts to parse a crontabroberto2002-05-231-23/+76
| | | | | | | | | | | line as an environment variable assignment, is broken and not conformant to its description in the manual page. I think it is worthwhile to have that fix in 4.6. PR: bin/38374 Submitted by: Thomas Quinot <thomas@cuivre.fr.eu.org> MFC after: 2 days
* This manpage is for Alpha only.ru2002-05-231-1/+1
|
* Increase the maximum FSM option length to 50brian2002-05-222-3/+3
|
* Add some missing #includes that weren't required due to namespace polutionbrian2002-05-223-2/+3
| | | | | | in our headers. Submitted by: bde
* Eliminate free'ing already freed chunks.sobomax2002-05-221-2/+3
| | | | MFC after: 1 week
* Added support for ia64 and sparc64.ru2002-05-212-0/+10
|
* Mention our support of the authentication side of rfc2548brian2002-05-211-1/+1
|
* Add two FTP mirrors in France:roberto2002-05-202-0/+8
| | | | | | | - ftp7 in Paris (ftp.club-internet.fr) - ftp8 in Stransbourg (ftp.u-strasbg.fr) MFC after: 1 day
* Bootstrap elf2aout(1) for sparc64; used to build sys/boot/sparc64/boot1.ru2002-05-201-1/+29
|
* MFS: silence compiler warnings.sobomax2002-05-201-7/+7
|
* Kill the stray #include line.ru2002-05-201-1/+0
|
* s/u_int/u_int32_t/ru2002-05-201-8/+9
|
* Fix IP address typo.dd2002-05-201-1/+1
| | | | | PR: 38313 Submitted by: Jeff Ito <jeffi@rcn.com>
* Work around a code generation bug of GCC 3.1 by replacingknu2002-05-191-14/+14
| | | | | | | | | | | | | | | | | `/2' with `>>1'. In the context `>>1' is more appropriate because it looks like the division is used to restore a shifted value. GCC GNATS PR: c/6677 This fixes a problem where wheel-up movement is taken as wheel-down in the sysmouse protocol. Do not assume the plain char's are signed; use `signed char' where char's need to be signed. Discussed on: audit Pointed out by: bde
* Document RAD_MICROSOFT_MS_CHAP2_SUCCESS.brian2002-05-181-0/+5
|
* Get byte swapping primitives from sys/endian.h now that they are exportedjake2002-05-171-5/+1
| | | | to userland. This makes elf2aout work as a cross tool.
* MFS: Extend a buffer size so that packages with particularily deep dependencybrian2002-05-171-1/+1
| | | | lists install properly.
* Stop this program's abuse of malloc(3). Its return value doesn't need thesejmallett2002-05-174-17/+14
| | | | | ugly explicit casts, and its argument doesn't need explicitly cast to u_int, especially if sizeof() is being used.
* Put back <string.h>brian2002-05-171-0/+1
|
* - Convert a bunch of macros to the actual function they're calling. Thesearr2002-05-1613-267/+187
| | | | | | | | | | | include: UM_ALLOC -> calloc, malloc UM_FREE -> free UM_COPY -> bcopy UM_ZERO -> bzero This is the first step towards removing these macros.
* - Convert a bunch of macros to the actual function they're calling. Thesearr2002-05-164-73/+56
| | | | | | | | | | | include: UM_ALLOC -> calloc, malloc UM_FREE -> free UM_COPY -> bcopy UM_ZERO -> bzero This is the first step towards removing these macros.
* Remove cross reference to pkg_update(1).eric2002-05-161-1/+0
| | | | Submitted by: dd
* Replace the perl script version of this with a sh(1) script.markm2002-05-164-142/+114
| | | | Submitted by: Riccardo "VIC" Torrini <riccardo@torrini.org>
* Don't install scriptdump which is written in Perl. This isume2002-05-161-1/+1
| | | | corresponding to removal of Perl from base system.
* Add some OpenBSD includesbrian2002-05-161-0/+4
|
* Fix a mis-placed #else/#endifbrian2002-05-161-2/+1
|
* Handle MS-CHAPv2 authentication correctly via the RADIUS server (if it'sbrian2002-05-165-48/+114
| | | | | | | | | | configured). Handle internal failures in radius_Authenticate() correctly. Bump the ppp version number. This doesn't yet work with MPPE. More will follow. Sponsored by: Mozoon
* more file system > filesystemtrhodes2002-05-163-6/+6
|
* Consistancy check: s/file system/filesystem/gtrhodes2002-05-1610-14/+14
|
* pciconf(8) has an incorrect synopsis which argues the output from thetrhodes2002-05-151-2/+2
| | | | actual program.
* Explicitly cast NCONTINENTS to int to silence an overflow warning.des2002-05-151-1/+1
|
* Remove bogus cast.des2002-05-151-1/+1
|
* Unbreak Alpha build.des2002-05-151-1/+2
|
* Unbreak Alpha build.des2002-05-151-2/+4
|
* Use fgetln to remove the static limit on the length of lines iniedowse2002-05-141-14/+15
| | | | | | /etc/exports. Oversized lines were unlikely due to the large 10k limit, but any found would cause mountd to exit with an error. Also fix one or two compiler warnings.
* - Make use of DEPOROGINs (if there are any) when installing package;sobomax2002-05-147-137/+267
| | | | | | | - fix few bogosities here and there; - move some common routines into the library. MFC after: 2 weeks
* Trivial language fixes.dannyboy2002-05-141-3/+3
| | | | | PR: 38015 Submitted by: Chris Pepper <pepper@mail.rockefeller.edu>
* Fix an include for NetBSDbrian2002-05-141-0/+3
|
* Avoid a rather bizarre warning from gcc 3.1:brian2002-05-141-1/+1
| | | | /usr/src/usr.sbin/ppp/cbcp.c:566:61: warning: trigraph ??! ignored
* o Clean up some #includesbrian2002-05-1442-133/+163
| | | | | | | | | | | | | | | | | | o Bump version number to 3.0.4 o When talking to a RADIUS server, provide a NAS-Port-Type. When the NAS-Port-Type is Ethernet, provide a NAS-Port value equal to the SESSIONID from the environment in direct mode or the NGM_PPPOE_SESSIONID message in other modes. If no SESSIONID is found, default to the interface index in client mode or zero in server mode. When the NAS-Port-Type is ISDN, set the NAS-Port to the minor number of the physical device (ie, the N in /dev/i4brbchN). This makes it easier for the RADIUS server to identify the client WRT accounting data etc. Prompted by: lsz8425 <lsz8425@mail.cd.hn.cn>
* Mention the ``end of output'' for each periodic script.brian2002-05-141-0/+3
| | | | | | Submitted by: David Wolfskill <david@catwhisker.org> PR: 37036 MFC after: 1 week
* Calculate the number of open links properly when deciding on whether tobrian2002-05-141-11/+10
| | | | | | | | just send PROTO_IP packets when we've got only one link up in multi-link mode. Problem noted by: Adrian Close <adrian@fernhilltec.com.au> MFC after: 1 week
* Fix a syntax errorbrian2002-05-131-0/+1
|
OpenPOWER on IntegriCloud