summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Drop setuid ASAP, to minimize code executed as root.fenner1996-08-091-3/+18
| | | | Reviewed by: pst
* Make broadcast clients work.phk1996-08-061-1/+1
|
* Gratuitous whitespace change so that I can commit the source of the recentpst1996-08-051-3/+1
| | | | | | buffer overflow patch. Reviewed by: pst Submitted by: Dave Andersen <angio@aros.net>
* Fix up some more buffer overflow problems.pst1996-08-052-5/+9
|
* Fix a couple of bogons. The first two were brought to my attentionwpaul1996-08-041-9/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | by Peter Wemm: - In yppasswdproc_update_1_svc(), I wasn't paying attention and put a couple of lines of code _after_ a return() instead of before. (*blush*) - The removal of certain temp files didn't always work (this showed up mostly if you were using /etc/master.passwd as your NIS passwd template instead of /var/yp/master.passwd). This is because the whole temp file creation mechanism I was using was tragically broken (you can't rename across filesystems). This problem I found myself: - If you have a very large password database (30,000 or more entries), there can be a delay of several seconds while pw_copy() copies the ASCII template file and subsitutes in the modified/new entry. During this time, the clnt_udp() code in the RPC library may get impatient and retry its request. This will get queued at the server and be treated as a second request. By then the password change will have been completed and the second request will fail (the old password is no longer valid). To attempt to fix this, we save the IP address and port of each request and ignore any subsequent requests from the same IP and same port that arrive within five minutes of each other.
* Enhance crunchgens understanding of our new /usr/obj/`pwd` strategy.phk1996-08-041-6/+15
|
* Try to make screen update more efficient (less flickering) by morejkh1996-08-0321-87/+80
| | | | judicious use of dialog_clear_norefresh().
* Make the same fix to the disk partition editor screen.jkh1996-08-032-12/+8
|
* Fix an embarassing bogon in the key input code. I'll roll another snapjkh1996-08-032-12/+8
| | | | boot floppy for this one..
* Use the defines and macros defined in /sys/pccard/cis.h to make the codenate1996-08-011-24/+25
| | | | | | easier to understand. LOTS more work needed in this area. Inspired by: The Nomad code
* Whoops! VTYs return zero values for TIOCGSIZE! Work around this.jkh1996-08-012-4/+4
|
* Don't query DNS if we haven't got it configured.jkh1996-08-011-12/+16
|
* Handle SIGPIPE in a couple of crucial places.jkh1996-08-012-8/+26
|
* Put verbosity in the right place.jkh1996-08-011-3/+3
|
* Purely cosmetic tweaks.jkh1996-08-012-5/+5
|
* Clean up the results from getch().jkh1996-08-014-8/+8
|
* Close PR#1542. Don't just assume 24 lines, get the tty size.jkh1996-08-0112-32/+56
| | | | | | | Some things may still display text on the 24th line, but that's because they've always been screens designed to fit into a minimal real-estate and have hardwired assumptions about the dimensions. They'll be a little harder to make dynamic.
* Make -force work for pkg_add.jkh1996-07-311-2/+2
|
* Add a required save/restorejkh1996-07-312-2/+6
|
* Try again.jkh1996-07-312-4/+4
|
* Don't munge keystrokes.jkh1996-07-318-40/+54
|
* Prevent Geometry warning messages when the disk is already "dedicated"jkh1996-07-312-22/+12
|
* More minor tweaks (that I'm trying to get into the SNAP).jkh1996-07-312-30/+30
|
* Detect which partitions have already been created with `auto' so as not to ↵jkh1996-07-3110-196/+244
| | | | | | | | create them twice. Various cosmetic tweaks.
* Add MD5 checksums to packing list for all files during pkg_create and usejkh1996-07-3012-74/+105
| | | | | | | | | later at pkg_delete time to verify that you're deleting what you added. This, of course, does NOT cover the case where a file you still need hasn't changed! That's a tougher problem to solve, and this provides only the minimal amount of safety belt. MD5 checksums are stored in comment fields, so packages produced with these tools are backwards compatible with the older ones.
* "appeared in 4.2BSD.." changed to "appeared in 4.2BSD."alex1996-07-271-1/+1
|
* Fix the services.byname target so that it creates search keys for thepeter1996-07-251-4/+6
| | | | | | | aliases of the "official" names as well, because now that getportbyname() does a yp match, it no longer found the entries under the alias. This broke rsh(1), because it looks up "shell/tcp" while the official name in /etc/services is "cmd/tcp".
* Add some explanation on TMPDIR.phk1996-07-241-1/+11
| | | | Submitted by: Chuck Robey <chuckr@Glue.umd.edu>
* Fix typo in last commit, it seems that a hash comments out a \ at the endpeter1996-07-241-4/+4
| | | | | | | | of line. Also, fix existing bug in ethers.byname, it was passing an unknown option to yppush. This appears to have been a cut/paste slip intended for a $(DBLOAD) command above it.
* Add sample rules for amd.host, mostly from the AMD docs, but tweaked to fitpeter1996-07-241-2/+26
| | | | | | | | the FreeBSD Makefile.yp structure by me. This allows you to have a single amd map for all machines in a cluster. In /etc/sysconfig, it would look something like: amdflags="-p -a /net -c 1800 -l syslog /host amd.host"
* Merge from vendor branch. The rttrace program is gone (subsumed by rtquery).wollman1996-07-2216-2008/+1857
| | | | There is a new routed.h which wil be imported separately.
* Initial revisionwollman1996-07-221-0/+159
|
* Fix some bogus argument handling - whups! James was right..jkh1996-07-222-4/+6
|
* Bring in some fixes from NetBSD and re-hack our syslogd to be option-compatiblepst1996-07-222-19/+28
| | | | | | | | | with theirs (change the -I option to -s (but leave -I in for backwards compat.) Also eliminate an make sane some magic numbers, and fix a small bug where we'd send to an unopened socket. Reviewed by: wollman Obtained from: NetBSD
* Reset Pred1 protocol on FCS errors.phk1996-07-211-1/+2
|
* 'mkaliases' is broken (strips spaces) so don't use it,adam1996-07-181-11/+8
| | | | | perhaps it can be removed altogether. corrected typos
* Remove eeprom too as more unused stuff.gpalmer1996-07-185-327/+1
| | | | Pointed out by: Thomas Graichen <graichen@axp5.physik.fu-berlin.de>
* These old files are no longer relevant to the current routedwollman1996-07-187-1639/+0
| | | | implementation.
* Merge from vendor branch. We are now completely up-to-date withwollman1996-07-185-202/+385
| | | | respect to the ADO timezone code.
* This commit was generated by cvs2svn to compensate for changes in r17211,wollman1996-07-185-27/+173
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Second part of the timezone code import for version 96h. This includeswollman1996-07-1810-396/+791
| | | | | | | | | | a number of bug fixes to the compiler (which bugs would previously have caused undesirable behavior during transition times).
| * This commit was manufactured by cvs2svn to create branch 'ADO'.cvs2svn1994-09-131-0/+5
| |
* | Import fixes from NetBSD to print NFSv3 packets.dfr1996-07-187-489/+1360
| | | | | | | | Obtained from: NetBSD
* | Correct the Unix programmer's error #1: "char c = getc();".joerg1996-07-171-2/+4
| | | | | | | | | | | | Closes PR # bin/1386: lpf Text Filter does not w... Submitted by: andreas@marvin.RoBIN.de
* | Increased listen() queue-depth limit to 64.dg1996-07-171-2/+2
| |
* | 1. Fix the CD installation bogon for Novice install I mentioned.jkh1996-07-169-133/+189
| | | | | | | | 2. Add some code for dealing with a ports collection on the second CD now.
* | Make crunchgen match the new obj/ convention.phk1996-07-151-1/+1
| |
* | Damn - looks like upgrade got broken along the way and it's not somethingjkh1996-07-143-32/+48
| | | | | | | | | | | | | | I usually test, so... :-( Guess we'll have to slide the tag forward on these two files - Peter, could you do the honors? I've been up for the last 30 hours or so and I just *know* that any attempt on my part to do this would probably end up deleting the entire repository somehow. :-)
* | Make CD version clash non-fatal.jkh1996-07-131-5/+3
| |
* | Back out my change for Peter which did transfer timings based on currentjkh1996-07-131-7/+7
| | | | | | | | | | chunk rather than distribution - it's just caused the numbers to fluctuate too wildly, sorry Peter! ;-(
OpenPOWER on IntegriCloud