summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix the brain-o which prevented the Custom installation item fromjkh1999-12-222-2/+2
| | | | | | working. It was, as I predicted, a stupid bug and thanks to the submitter for spotting it. I'll also re-roll some 3.4-RELEASE install floppies for this.
* Fix minor typo.archie1999-12-221-1/+1
|
* Properly manify this manpage.asmodai1999-12-211-2/+1
|
* Manual page style work.julian1999-12-212-21/+37
| | | | | Submitted by: Alexey Zelkin <phantom@FreeBSD.org> thanks!
* Fix my '#'-at-end-of-lines change, spammed by a subsequent commit.brian1999-12-201-3/+10
|
* Use getpwuid()->pw_dir instead of $HOME when expanding ``~''.brian1999-12-201-10/+6
|
* Use getpwuid() instead of getlogin() in ``allow users''.brian1999-12-201-4/+5
|
* Add missing linefeed.brian1999-12-201-1/+1
|
* Cosmetic: clean up some parenthesis confusionbrian1999-12-201-10/+5
|
* Handle comments at the end of lines.brian1999-12-203-25/+44
|
* Notice and warn about unterminated quoted strings in commands.brian1999-12-2013-44/+100
| | | | The entire command is ignored if the syntax is invalid...
* Implement mbuf allocation internally by maintaining 8 buckets ofbrian1999-12-205-21/+82
| | | | | | | different sized mbufs, and mallocing them in chunks of 20 mbufs at a time. This improves back-to-back throughput by between 7 and 8%
* Cosmetic: Make struct mbuf more like kernel mbufs.brian1999-12-2030-519/+527
|
* configApache does not exist anymore.dcs1999-12-201-1/+0
| | | | | PR: 9582 Submitted by: Stephan Lagerholm <istephan@unilog.se>
* Now that we have an elf(5) we can x-ref it here.billf1999-12-201-0/+1
|
* Whoops, this function is supposed to return a boolean status, notjkh1999-12-201-1/+1
| | | | flags.
* Do better things with router configuration (use proper display variable,jkh1999-12-194-4/+14
| | | | for one thing - it's router_enable to check, not router).
* Whoops, I broke the doc browser (not that anyone would notice since nobodyjkh1999-12-191-4/+4
| | | | READS the docs, but anyway.. :). Fix it.
* D'oh! Inserted a clear() in a *very* wrong place with my last commit.jkh1999-12-191-1/+0
|
* Bah, I got the MFC and this commit backwards. :)jkh1999-12-194-5/+2
|
* This commit was generated by cvs2svn to compensate for changes in r54816,peter1999-12-193-0/+322
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import NetBSD's mailwrapper to redirect /usr/sbin/sendmail to the user'speter1999-12-193-0/+322
| | | | | | | | | | | | chosen mailer. Obtained from: NetBSD
| * Import Lite2's src/usr.sbin, except for timed. All changed filesbde1997-08-021-66/+54
| | | | | | | | except one unimportant one have already left the vendor branch.
* | MFC: can't stop tweaking this compulsively.jkh1999-12-192-2/+20
| |
* | cosmetics missed in last commit.jkh1999-12-192-28/+58
| |
* | More cosmetic surgery and a nasty null pointer bug in index.c fixed.jkh1999-12-195-68/+113
| |
* | Be paranoid about refreshing after an action.jkh1999-12-191-2/+1
| |
* | Revert the libcrypt/libmd stuff back to how it was. This should not havepeter1999-12-182-4/+4
| | | | | | | | | | | | | | | | happened as it was working around problems elsewhere (ie: binutils/ld not doing the right thing according to the ELF design). libcrypt has been adjusted to not need the runtime -lmd. It's still not quite right (ld is supposed to work damnit) but at least it doesn't impact all the users of libcrypt in Marcel's cross-build model.
* | Use long long format specifiers and cast each parameter to long long.marcel1999-12-181-14/+6
| | | | | | | | | | | | | | This avoids the ugly #if ARCH/#else/#endif construct. Prompted to by: bde Could have thought of this himself: marcel
* | Yet more cosmetic fixes (I have a little time to kill while waiting forjkh1999-12-182-0/+5
| | | | | | | | | | something else, so I might as well tweak 3.4's look-and-feel for the better while I'm at it - final release build should be sometime later on tonite).
* | Learn to do pointer arithmatic (doh!)brian1999-12-181-1/+1
| |
* | Add more strategic screen clearsjkh1999-12-181-1/+5
| |
* | Better screen handling in X desktop setup.jkh1999-12-184-26/+2
| | | | | | | | Don't get cute with nested dialogs now.
* | o Don't use long for 64 bit variables. Use u_int64_t instead.marcel1999-12-172-47/+62
| | | | | | | | | | | | o Fix printf format specifiers on Alpha and add i386 version. o Minor style fixes while there. o Add -Wall compiler option.
* | Back out previous commit, which broke mouse wheel support in moused.sheldonh1999-12-172-251/+43
| | | | | | | | Requested by: yokota
* | Add a missing '"' in the examples.obrien1999-12-171-1/+1
| |
* | Add another strategic screen clear.jkh1999-12-172-2/+14
| |
* | In retrospect, msgNotify() should leave its contents on the screenjkh1999-12-1721-39/+55
| | | | | | | | | | longer to give the user something to look at while things are happening. Change it to do so and insert the appropriate screen saves elsewhere.
* | Bump default root size to 50MB on i386 (70MB on Alpha).jkh1999-12-172-6/+6
| | | | | | | | Requested incessantly by: billf
* | Bye bye xntpd, enter ntp.roberto1999-12-161-1/+1
| | | | | | | | Reviewed by: phk
* | Remove the old binaries (they've been renamed) without the 'x').roberto1999-12-162-0/+6
| | | | | | | | Suggested by: phk
* | Add libmd (or move it after libcrypt). We don't want the linker to bemarcel1999-12-162-4/+4
| | | | | | | | | | smart because it will definitely get it wrong. This popped up during cross-linking.
* | "char *area" -> "char **area", to match the source code.nik1999-12-161-1/+1
| | | | | | | | | | PR: docs/14738 Submitted by: Mori Kouji <moriko@yakumo.noe.mcu.or.jp>
* | Properly disable COMPAT_3X for alpha.jkh1999-12-151-1/+1
| |
* | Allow elf2exe to be compiled on architectures other than Alpha. Thismarcel1999-12-151-1/+1
| | | | | | | | is trivially accomplished by including sys/elf64.h instead of elf.h.
* | - Improve the three button emulation by introdusing a small stateyokota1999-12-152-43/+251
| | | | | | | | | | | | | | | | machine. The three-button emulation of moused has been somewhat difficult to use for many people. I hope this update fixes it. - Add a new option, -E, to set timeout value to detect two buttons are pressed down simulteneously. The default value for this timeout is 200msec.
* | Put up some more helpful dialog boxes.jkh1999-12-153-5/+6
| | | | | | | | Adjust some text to make more sense.
* | Replace spaces with a tab to fix build breakagecwt1999-12-151-1/+1
| |
* | update to isdn4bsd beta release 0.90hm1999-12-1493-1178/+5755
| |
* | Install `chown' into /sbin rather than /usr/sbin as `chown' is needed byobrien1999-12-141-1/+7
| | | | | | | | | | `MAKEDEV'. And one might need to `MAKEDEV' inorder to get a device node in order to mount /usr from.
OpenPOWER on IntegriCloud