summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Cosmetic in usage string.charnier1997-06-191-1/+1
|
* Use warn(3).charnier1997-06-191-7/+8
|
* Use err(3). Add missing prototypes. Cosmetic in usage string.charnier1997-06-191-11/+20
|
* Use err(3). Add usage().charnier1997-06-191-34/+21
|
* Use err(3).charnier1997-06-191-21/+13
|
* Try again to explain the existence of lchown() and the absence ofjdp1997-06-191-12/+7
| | | | lchmod() and lutimes().
* Fix crash when halting where APM was configured but not enabledwollman1997-06-192-2/+6
| | | | | | by checking whether APM is active in apm_power_off() and returning if not. (The code was already written with the expectation that this function would return if it fails.)
* Add cron_enable and inetd_enable flags to rc.conf.pst1997-06-182-5/+12
| | | | | WARNING: don't update rc and forget to update rc.conf, or you won't be able to telnet back into your box after a reboot.
* Various typos in man page. Cosmetic in usage string. Use err(3) insteadcharnier1997-06-182-34/+22
| | | | of fprintf. Remove unused variables.
* Sync man page and usage string. Remove unused -p option from getopt call.charnier1997-06-181-2/+2
|
* Sync man page and usage string.charnier1997-06-181-10/+4
|
* Sync beetween man page and usage string.charnier1997-06-182-4/+4
|
* Fprintf -> warn.charnier1997-06-181-8/+5
|
* Typo.charnier1997-06-181-2/+3
|
* 1. Add a noWarn flag so that scripts can turn warnings off.jkh1997-06-1813-21/+43
| | | | 2. If hostname not set from script, bring up interactive dialog anyway.
* Add `B' to list of flags to pass through from C*FLAGS when using mkdepasami1997-06-182-11/+11
| | | | | | | | | (bsd.dep.mk) and compiling assembly language sources (bsd.lib.mk). This doesn't change anything for our current source tree, but if you want to use the -B switch in C*FLAGS to specify the location of compiler subprograms, now you can do it. Reviewed by: bde (implicitly)
* Move the "umask ?= 0022" check (a warning only) from the defaultasami1997-06-181-6/+6
| | | | | | | | "do-install" target to the beginning of the "install" meta-target, so that ports that define their own do-install will also run it without having to duplicate it themselves. Tested by: rebuilding all packages
* Add "-I${DESTDIR}/usr/include" to CFLAGS if DESTDIR is defined, justasami1997-06-182-2/+8
| | | | | | | | like bsd.lib.mk and bsd.prog.mk. It doesn't add it to CXXINCLUDES, I don't think anybody has written a kernel module with C++. (Not that I think DavidG will allow it anyway. :) Reviewed by: bde
* Protect against garbage mbufs in pppstart.brian1997-06-181-2/+7
| | | | | | | | Remove previous hack in pppfcs(). This is still not the correct solution. We shouldn't have any incorrect mbufs. This patch does however make pppd/natd work (rather than jamming the interface).
* Check named_enable rather than just named_flags.jkh1997-06-181-3/+3
| | | | PR: 3893 (sort of)
* Add for public examination the beginnings of the per-host cache supportwollman1997-06-184-0/+580
| | | | | which will for the basis of RTF_PRCLONING's more efficient, better- designed replacement.
* Typo police.alex1997-06-181-1/+1
|
* Correct the section number in the cross-reference for the publickeyjdp1997-06-171-1/+1
| | | | file.
* Work around a bug (deficiency?) in the libdes Secure RPC compat interface.wpaul1997-06-171-24/+58
| | | | | | | | | | | | | | | | | | | | | | | | The way Secure RPC is set up, the ecb_crypt() routine is expected to be able to encrypt a buffer of any size up to 8192 bytes. However, the des_ecb_encrypt() routine in libdes only encrypts 8 bytes (64 bits) at a time. The rpc_enc.c module should compensate for this by calling des_ecb_encrypt() repeatedly until it has encrypted the entire supplied buffer, but it does not do this. As a workaround, keyserv now handles this itself: if we're using DES encryption, and the caller requested ECB mode, keyserv will do the right thing. Also changed all references to 'rc4' into 'arcfour' just in case some litigious bastard from RSA is watching. Note that I discovered and fixed this problem while trying to get a part of NIS+ working: rpc.nisd signs directory objects with a 16-byte MD5 digest that is encrypted with ecb_crypt(). Previously, only the first 8 bytes of the digest were being properly encrypted, which caused the Sun nis_cachemgr to reject the signatures as invalid. I failed to notice this before since Secure RPC usually never has to encrypt more than 8 bytes of data during normal operations.
* Added CONTEC C-NET(9N) and C-NET(98)P2 support.kato1997-06-171-2/+415
| | | | Submitted by: Chiharu Shibata <chi@rd.njk.co.jp>
* correct the wrong ATM option name for native atm accesskjc1997-06-173-12/+12
| | | | | | | | | | NETNATM --> NATM reported by Bruce Evans. Bruce also pointed out that NATM is confusing since config(8) defines NATM as the number of atm pseudo device in "BUILD_DIR/atm.h". We might change the name in the future but leave it as it is for now.
* Cosmetic: Fix help syntax.brian1997-06-171-6/+4
|
* Handle redial tries correctly under -ddialbrian1997-06-171-10/+11
|
* Fix infinite loop.davidn1997-06-161-2/+2
| | | | | PR: 3878 Submitted by: roman@rpd.univ.kiev.ua
* Put TCP/IP logs back on one line.brian1997-06-161-18/+46
|
* Set netfd to STDOUT_FILENO rather than STDIN_FILENO.brian1997-06-161-2/+2
|
* Correct filter docs.brian1997-06-162-8/+8
| | | | | PR: 3464 Submitted by: Stephen J. Roznowski <sjr1@flash.net>
* Remove call to daemon(). Just call setsid() and closebrian1997-06-161-7/+10
| | | | | any relevent descriptors (0,2,[1]). We've already fork()d. PR: 3874
* Ouch!!! This should fix a serious build problem after the addition of thedyson1997-06-161-0/+173
| | | | | new preliminary AIO support. Unfortunately, I had a stray copy of aio.h that made me think that things worked.
* Merge from Lite2.bde1997-06-163-133/+104
| | | | | | | | | | | | - use new getvfsbyname() interface. - new -A option, like -a except only mounted file systems are unmounted. All non-cosmetic FreeBSD changes in umount.c, except ignoring of realpath() failures, went away because they are done better in Lite2. realpath() failures must be ignored so that non-pathnames like "<above>:/foo" and "host:/bar" get as far as mount(2). Reviewed by: dfr
* Fixed comment.kato1997-06-161-5/+4
| | | | Submitted by: Chiharu Shibata <chi@rd.njk.co.jp>
* Give up automatic detection of card model. Since DP8390 based NICskato1997-06-161-21/+11
| | | | | | | are similar to each other, it is difficult to detec card type automatically. Reviewed by: Chiharu Shibata <chi@rd.njk.co.jp>
* Typo fix.max1997-06-161-2/+2
| | | | | PR: 3868 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* Use err(3) instead of local copy.charnier1997-06-161-7/+13
|
* Use err(3) instead of local err() (a errx() like function).charnier1997-06-161-21/+19
|
* Use err(3).charnier1997-06-161-26/+12
|
* Fix 2 typos.charnier1997-06-161-3/+3
|
* Minor optimization in fxp_intr.dg1997-06-162-10/+8
|
* Modifications to existing files to support the initial AIO/LIO anddyson1997-06-1614-9/+193
| | | | kernel based threading support.
* Add initial AIO/LIO kernel thread support files. This is preliminary, anddyson1997-06-162-0/+432
| | | | further features will be added.
* Upgrade NFS to support the new vfs_bio resource/buffer management.dyson1997-06-164-4/+28
|
* Correct the return code for the mlock system call. Also add the stubsdyson1997-06-151-2/+32
| | | | for mlockall and munlockall.
* Fix a reference problem with maps. Only appears to manifest itself whendyson1997-06-151-1/+5
| | | | sharing address spaces.
* Remember to zero sockaddr_in struct before calling uaddr_to_sockaddr() towpaul1997-06-151-0/+1
| | | | | populate it. Not doing this can result in a garbage sockaddr_in, which will cause connect() to block inside clnttcp_create().
* srandomdev: use stack junk value in the fallback code tooache1997-06-151-2/+3
|
OpenPOWER on IntegriCloud