summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Declared msginfo, shminfo, and seminfo structs.dg1994-09-191-1/+5
|
* Declare fuction setpassive in file cmds.c void and update correspondingswallace1994-09-182-1/+2
| | | | prototype declaration in extern.h.
* Kludge to workaround ftp coredumping when password is specified beforedg1994-09-181-1/+1
| | | | | | login in .netrc. Submitted by: John Kohl
* Add support for passive mode FTP (default off) to base FTP client to supportpst1994-09-156-0/+68
| | | | | users behind packet filtering firewalls. Obtained from: David Carrel <carrel@cisco.com>
* Added $DESTDIR toswallace1994-09-151-1/+1
| | | | | $DESTDIR/usr/include/sys/ioctl.h $DESTDIR/usr/include/sys/ioctl_compat.h so ioctl.c is generated properly using 2.0 include files in $DESTDIR.
* Back out 'not choose first (two-letter) name' fix, all two-letter namesache1994-09-151-9/+4
| | | | already removed from 4.4 termcap
* Imported the NetBSD version which acts a lot more like the SYSV program.dfr1994-09-133-338/+593
| | | | Obtained from: NetBSD
* Added ipcrm.dfr1994-09-131-1/+1
|
* Utility for deleting message queues, semaphores and shared memory segments.dfr1994-09-133-0/+260
| | | | Obtained from: NetBSD
* Added ipcs.dfr1994-09-131-1/+1
|
* Added from FreeBSD-1.1.5 with some additions to list shared memory segments.dfr1994-09-132-0/+383
|
* Add f2c, rpcgen and rpcinfo, need a decission on cpp and uucp.rgrimes1994-09-121-3/+3
|
* Change all references to LIBTERM and -ltermlib to LIBTERMCAP and -ltermcaprgrimes1994-09-115-9/+9
|
* Speed matching code never successful, because ospeed range is [0..17]ache1994-09-092-10/+46
| | | | | | but termios speed range is [0..115200]. Of cource ospeed initialized with wrong value too which cann affects terminals with padding, fixed. 57600,115200 added.
* Use second terminal name instead of obsoleted and duplicatedache1994-09-091-4/+9
| | | | first two-letter names (from 1.1.5.1)
* From 1.1.5.1csgr1994-09-081-1/+1
| | | | | | | | >From Arne Bier <csar@cs.ru.ac.za> while running more(1), if you enter ":a" to get the name of the file being viewed, more dumps core when you hit enter (as prompted). This is due to more(1) attempting to find the length of a NULL string. Submitted by: Geoff.
* Add code to pull options out of FINGER environment variable if present.pst1994-09-082-5/+38
| | | | | | | Yes, has same stupid bug as more(1), options must be specified as one argument. Submitted by: pst
* Don't exit early if malloc() fails (never exit early now; the `fatal'bde1994-09-081-10/+12
| | | | | | | flag to err() is useless). The following files might be much smaller so malloc() might work for them. Clean up formatting of the -x change.
* Tell netstat about the new multicast forwarding statistics. For the moment,wollman1994-09-081-8/+23
| | | | | don't try to do any multicast forwarding cache printouts; it's not clear that netstat can do anything particularly useful or meaningful.
* Fix a longstanding bogon with setenv usage.jkh1994-09-071-1/+1
| | | | Submitted by: jkh
* Install Luke's enhancements for finger.pst1994-09-076-24/+117
| | | | | | | | | | By default, behave like the old ugly 4.4bsd finger and print office information instead of remote login information. It's an easy one line fix to make it behave like most other vendor's fingers if we decide to change the default. Reviewed by: pst
* Problem:jkh1994-09-071-1/+27
| | | | | | | | | | | | | | | Accounts that have "pw_change" set, are supposed to change their passwords by the date specified in "pw_change". If they have not changed their passwords by that date, currently they get "LOCKED OUT" of the system. This is not the correct behavior, the user should be prompt (forced?) to change their password at this time. If the behavior of "pw_change" was meant to be a LOCKOUT, then you should use "pw_expire". Solution: Instead of locking out the user, prompt them to change their password. Reviewed by: jkh Submitted by: rls
* Reviewed by:ats1994-09-061-1/+1
| | | | Add entries for the speed 57600 and 115200 to the allowed speeds.
* New flag -u to suppress functions whose name does not begin with anbde1994-09-053-10/+32
| | | | | | | | underscore. Use it to avoid seeing badsw when profiling the kernel. Print times more accurately (e.g. usec in %8.0f format instead of msec in %8.2f format for averages) if hz >= 10000. This should have no effect now since profhz is only 1024.
* Build database at build time instead of at install time.bde1994-09-051-2/+7
|
* u_long -> unsigned long so that we don't depend on namespace pollutionbde1994-09-052-15/+17
| | | | in <stdio.h>.
* Define __GNUC__ as 2 same as cc -E would do.bde1994-09-052-5/+5
|
* Reviewed by:ats1994-09-041-1/+1
| | | | | | | Submitted by: Get the man page installed. Does anyone know the reason for the name xinstall instead of install for this directory ? Would life more easy to get this whole thing under install.
* Reviewed by:ats1994-09-041-1/+1
| | | | | Submitted by: Add back the baud rates above 19200, as we have them already under 1.1.x.
* Shell script containing the steps followed in importing file(1).csgr1994-09-031-0/+17
| | | | | Reviewed by: Geoff. Submitted by: Rod Grimes.
* Changes to file(1) for FreeBSD:csgr1994-09-035-133/+48
| | | | | | | | | | | | | - Makefile: bmake the sucker - file.1, magic.5: replace __MAGIC__ and __SECTION__ - add Magdir/freebsd - add file to usr.bin/Makefile A note on the FreeBSD magic entry: The magic number "000000407" is reported as "impure format". This stops file(1) telling us that our object files are "PDP-11 executables". (Saying anything more than "impure format" would probably be bogus. Submitted by: Geoff.
* This commit was generated by cvs2svn to compensate for changes in r2479,csgr1994-09-03102-72/+5269
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring in file 3.14 by Ian Darwin (and Christos Zoulas)csgr1994-09-03102-72/+5269
| | | | | | | | | | | | | | | | | | The following files were moved to different names: - file.man -> file.1 - magic.man -> magic.5 The following file was removed: - Magdir/Makefile
* | Add and properly install localesache1994-09-033-0/+210
| |
* | - Bring in -x option changes from 1.xcsgr1994-09-033-6/+25
| | | | | | | | | | - eval -> err_val : slightly more meaningful (eval is what you do in Linda ;-)) Submitted by: Geoff.
* | Fixed stupid bug which prevented any command line options from beingdg1994-08-311-1/+1
| | | | | | | | | | | | understood. Submitted by: Uwe Arndt (arndt@mailhost.uni-koblenz.de)
* | Use cc -E instead of cpp for the preprocessor by default. cc -E isbde1994-08-301-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | correct for C sources that are compiled by cc, while cpp (/usr/bin/cpp) is bogus since it invokes /usr/libexec/cpp with different flags. 1.1.5 uses plain cc. This should be equivalent after -M is added, but cc -M foo.s is completely broken (it invokes the assembler) while cc -E -M foo.s just does nothing instead of generating a foo.o: foo.s dependency. IF $MKDEP_CPP is set, use it as the cpp instead of cc -E. Assembler sources that are preprocessed using cpp directly should be mkdep'ed with MKDEP_CPP=cpp. Such sources shouldn't exist but we still have lots. foo.S should be compiled by cc -traditional (cc will invoke the preprocessor) and foo.s should be compiled by cc (cc won't invoke the preprocessor).
* | Use gnumalloc.dg1994-08-291-0/+3
| |
* | Add dependencies on libraries to DPADD. Someday this should be donebde1994-08-283-0/+3
| | | | | | | | | | | | automagically. -lfoo has to be right to work, but ${LIBFO0} is too easy to forget or misspell; nothing checks it and it should be different for shared libraries.
* | Reviewed by:ats1994-08-281-0/+10
| | | | | | | | | | | | | | Submitted by: Put in a signal handler to catch the SIGSYS signal that indicates that ktrace was not built into the kernel and prevent ktrace to core dump somewhere.
* | add rup rusers rwallcsgr1994-08-281-2/+2
| | | | | | | | Submitted by: Geoff
* | This commit was generated by cvs2svn to compensate for changes in r2347,csgr1994-08-283-0/+262
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | rwall from FreeBSD 1.1.5.1csgr1994-08-283-0/+262
| | | | | | | | | | | | | | | Reviewed by: Geoff Submitted by: Christopher G. Demetriou
* | | This commit was generated by cvs2svn to compensate for changes in r2345,csgr1994-08-283-0/+351
|\ \ \ | |/ / | | | | | | which included commits to RCS files with non-trunk default branches.
| * | rusers from FreeBSD 1.1.5.1csgr1994-08-283-0/+351
| | | | | | | | | | | | | | | Reviewed by: Geoff. Submitted by: John Brezak
* | | This commit was generated by cvs2svn to compensate for changes in r2343,csgr1994-08-283-0/+330
|\ \ \ | |/ / | | | | | | which included commits to RCS files with non-trunk default branches.
| * | rup from FreeBSD 1.1.5.1csgr1994-08-283-0/+330
| / | | | | | | | | Reviewed by: Geoff Submitted by: John Brezak
* | Fix big f*ckup by doing "make nocrypt"csgr1994-08-2711-435/+10
| | | | | | | | | | (Don't think I don't realize what a big f*ckup this was.) Submitted by: geoff.
* | Change references to flex(1) and flexdoc(1) to lex(1) andcsgr1994-08-272-18/+18
| | | | | | | | | | lexdoc(1). Submitted by: geoff
* | Do not install as flexcsgr1994-08-273-6/+4050
| | | | | | | | Submitted by: Geoff
OpenPOWER on IntegriCloud