summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* 1) Fix local_passwd to co-operate with dual-personality crypt(3).markm1995-12-163-10/+26
| | | | | | | | | | | Changing a local passwd will now keep the encryption type that was originally used to encrypt the password, so folks adding DES to their systems will not be irritated/confused by having MD5'ed passwords in their master.passwd. Coming later is an option to allow the user to choose the encryption type. 2) Fix a bunch of compiler warnings announced by turning on -Wall. I did not get them all, that will come a bit later.
* More XDR routine cleanups. These three programs should be the onlywpaul1995-12-151-8/+9
| | | | ones that require this: the others call the yplib functions in libc.
* Reduced vm dependencies. Only `struct vmmeter.h' is required.bde1995-12-132-4/+7
| | | | | | Unfortunately, the sysctl number for reading this struct is bogusly placed in <vm/vm_param.h> instead of with the declaration of the struct.
* Localize itache1995-12-131-4/+5
|
* Add explicit #include of <sys/vmmeter.h> after the last round of <vm/vm.h>peter1995-12-131-0/+1
| | | | changes.
* add a #include <sys/vmmeter.h> since we are using the vmmeter structurespeter1995-12-131-0/+1
| | | | | and this was once (but no longer it seems) included by <vm/vm.h> It should now compile again.
* Clean up. (I hope I'm doing this right.)wpaul1995-12-1313-679/+4152
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update rpcgen with the one from the TI-RPC 2.3 distribution. Note that when built for FreeBSD, this version of rpcgen assumes backwards compatibility mode by default. This means that it will produce ONCRPC 4.0 compatible code unless otherwise instructed, instead of the other way around. One incompatibility has also been worked around: this rpcgen normally always emits an '#include <stropts.h>' directive whether you select backwards compatibility mode or not. We don't have STREAMS, so this behavior has been changed: now it will only emit this line if run in TI-RPC mode. The 'generate output files in current directory instead of the directory where the protocol definition file lives' hack from the original rpcgen has been preserved. Notable new features: - Can be used to generate RPC servers that can be launched from port monitors such as inetd(5). - Can generate ANSI C code. - Can generate sample client and server top-level programs and makefiles in addition to the usual client and server stubs. - Can generate inline XDR routines.
* This commit was generated by cvs2svn to compensate for changes in r12795,wpaul1995-12-132-0/+482
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import a newer and more functional version of rpcgen.wpaul1995-12-1315-629/+4591
| | | | | | | | Obtained from: the Sun TI-RPC 2.3 source distribution
| * This commit was manufactured by cvs2svn to create branch 'SUNRPC'.cvs2svn1994-08-071283-292518/+0
| |
* | Fix a cosmetic null termination problem for completeness.peter1995-12-111-1/+2
| | | | | | | | | | | | | | The #ifdef NEWSALT code doesn't NULL terminate the salt string.. We dont appear to use this code anymore, but it shouldn't hurt Submitted by: Laurence Lopez <lopez@mv.mv.com>
* | Add support for high-range FTP data portspst1995-12-108-16/+79
| |
* | Move out some of the shell builtin bogosity from printf's source tojoerg1995-12-101-14/+1
| | | | | | | | sh's builtin/bltin.h.
* | Check the # of arguments, instead of silently dumping core.joerg1995-12-101-0/+2
| |
* | Small tweak: the 'is exisating password an empty string' check isn'twpaul1995-12-091-2/+3
| | | | | | | | | | | | quite right. (Thic causes you to get prompted for an 'Old Password' when changing someone's NIS password even if your password isn't set yet.) Do it like local_passwd.c does.
* | Don't #define NO_CONST. Defining it caused type mismatches forbde1995-12-071-1/+0
| | | | | | | | | | qsort()'s compare arg and the problem fixed by defining it has apparently gone away.
* | Initialize some uninitialized variables to fix a bug that sometimesdg1995-12-061-1/+1
| | | | | | | | | | resulted in msgs doing strange things, including getting stuck in an infinite loop.
* | Submitted by: John Hayjulian1995-12-051-6/+7
| | | | | | | | more IPX related fixes
* | Updated to BSD4.4lite2. Fixes PR836. `echo abcd | tr a-d A-BC-D' nowbde1995-11-281-3/+3
| | | | | | | | works.
* | Make tip recognize EOF in more cases.phk1995-11-261-6/+17
| |
* | Merge with current. Back out all trailing spaces changes, theyache1995-11-2313-143/+152
| | | | | | | | hits again and again.
* | This commit was generated by cvs2svn to compensate for changes in r12461,ache1995-11-231-1/+1
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import of 1.9.5, one my fix included to mainstreamache1995-11-236-7/+27
| | |
* | | Increase width of Network column from 11 to 13 for the AF_INET case.se1995-11-221-2/+2
| | | | | | | | | | | | This seems to have been missed, when the recent IPX changes went in ...
* | | Amend my fix a bit. My way failed to take leap years into account. Thewpaul1995-11-211-11/+4
| | | | | | | | | | | | | | | | | | | | | simplest thing is to just calculate the days using curtime - boottime / 86400. The modification for this is less obtrusive anyway. Suggested by: Bill Fenner <fenner@parc.xerox.com>
* | | Correct the man pages, USD doc and online help to refer to /var/mailmarkm1995-11-206-8/+8
| | | | | | | | | | | | instead of {usr|var}/spool/mail
* | | Default file creation mask was 666 (allow othres write anythingache1995-11-191-2/+2
| | | | | | | | | | | | to msgs directory), change it to 644
* | | Rup uses tm_yday in its uptime printout, but ignores tm_year. This meanswpaul1995-11-191-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | that if you do an rup on a machine that's been running longer than a year, you get the wrong day count. Now we factor in 365 * (curtime.tm_year - boottime.tm_year) to get the correct value. (I noticed this while running rup on a SunOS machine I have that's been up 525 days. My FreeBSD machines all said it had only been up for 160 (525-365) days. :)
* | | Fixed afterinstall rule:bde1995-11-181-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | - apply chmod to the targets, not to the sources. - apply chown to the targets. It is still bogus to install by building in the target directory. See mklocale/data/Makefile for a better method.
* | | Dynamically allocate line buffers, instead of assuming that all thejoerg1995-11-151-6/+31
| | | | | | | | | | | | world would fit into BUFSIZ.
* | | Fix the bug that caused the AF_UNIX domain sockets to not be shown..peter1995-11-151-1/+1
| | | | | | | | | | | | | | | (it was nlist()ing a wrong symbol name). Only problem is that I'd grown quite partial to the inet-only version.. :-)
* | | Obtained from: pope gregory and julius caesarjulian1995-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 27c27 < 11/29 Thanksgiving Day (Last Thursday in November) --- > 11/23 Thanksgiving Day (4th Thursday in November) it's not that the date was wrong for this year (it was the wrong year.. it was that the ALGORYTHM was wrong.. very confusing for non americans wondering why americans were going to be on holiday on the 23rd..
* | | Re-wrote the locate.updatedb script in /bin/sh for speed and portability.nate1995-11-092-1/+80
| | | | | | | | | | | | Obtained from: Partially my work in 1.
* | | Author's cosmetic fixesache1995-11-081-1/+1
| | |
* | | Author's fixes of backspace problem, slightly different then mine wasache1995-11-081-8/+6
| | |
* | | Well, Jochen adopted most of my submissions. So only the differentjoerg1995-11-063-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | style of error reporting (i prefer gcc style to be consistent with the compiler) is left, plus a minor nit he's most likely been overlooking. There are still problems with bootstrapping, and you should expect troubles when linting libc...
* | | This commit was generated by cvs2svn to compensate for changes in r12099,joerg1995-11-0537-0/+20618
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Jochen Pohl's lint(1) from NetBSD. Yet another import.joerg1995-11-0537-0/+20618
| / / | | | | | | | | | | | | | | | | | | | | | | | | This is just a vendor import by now. I'll wait until i'll get the imported files back via CTM before applying the FreeBSD patches. Don't use it yet. Submitted by: Jochen Pohl <jpo.drs@sni.de> Obtained from: (NetBSD -- this version is directly from Jochen)
* | | Do unctrl in right wayache1995-11-051-6/+12
| | | | | | | | | | | | Handle '\377' properly
* | | Repair the detection of undefined symbols that my last "quick fix" commitpeter1995-11-031-2/+3
| | | | | | | | | | | | | | | | | | | | | broke. It's much easier to debug the symbol export lists in lkm makefiles if you know what your errors are during the build process. :-) Bleah.. symorder.c is *horrible*. :-(
* | | Cleanup make process per Bruce suggestionsache1995-11-035-20/+97
| | |
* | | Add $id$ and ${COPY}ache1995-11-031-2/+2
| | |
* | | Cleanup make process per Bruce suggestionsache1995-11-037-18/+343
| | |
* | | Fix the :S modifier to substitute in each word of the variable, accordingadam1995-11-011-16/+6
| | | | | | | | | | | | | | | | | | | | | to the description in the manpage. g flag means "replace every occurence in each word", and its absence means "replace first occurence in each word". Previously, absence of the g flag was implemented to mean "replace first occurence found in all words, and then stop replacing", which was incorrect.
* | | Fix ranlib to work with odd-length extended names.ache1995-11-011-1/+1
| | | | | | | | | | | | Submitted by: Jim Leppek <jleppek@harris.com>
* | | Merge in changes from ppp-2.2's chat onto the mainline...peter1995-10-313-274/+514
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r11987,peter1995-10-311-3/+4
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Vendor branch import of chat from ppp-2.2 package..peter1995-10-313-268/+510
| | | |
* | | | <sys/user.h> -> <sys/time.h>phk1995-10-301-2/+2
| | | | | | | | | | | | | | | | Spotted by: bde
* | | | Remove char->int promotion.ache1995-10-291-6/+4
| | | | | | | | | | | | | | | | Fix uncontrol function for 8bit chars.
OpenPOWER on IntegriCloud