summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
...
* | Don't claim that `ranlib -t' is useful.bde1995-10-092-2/+4
| | | | | | | | | | | | | | | | Our ld is derived from gnu ld which doesn't check the timestamp on __.SYMDEF. gnu ld is designed to work with gnu ar which doesn't even have a ranlib option (gnu ar updates __.SYMDEF automatically if __.SYMDEF already exists, so gnu ld expects __.SYMDEF to be up to date if it exists).
* | Fix one column wrong offset in previous change days->dayache1995-10-081-1/+1
| |
* | Change error diagnostic to be less confusing:ache1995-10-081-1/+1
| | | | | | | | no calendar file -> no calendar file in current directory
* | Remove hack inserted by me long time ago (cd $HOME for user-called case),ache1995-10-082-6/+2
| | | | | | | | | | no other system do it and it can cause problem with multi-calendars for single user.
* | This is now perl5 friendly.jfieber1995-10-072-79/+101
| | | | | | | | | | Make server side include hooks for headers and footers controlled by a command line switch and document the feature.
* | Another place where malloc is expected to return zero'ed storage.phk1995-10-071-0/+1
| | | | | | | | (Found with phkmalloc/2 (TNG!) send me email if you want a copy.)
* | Symorder relies on malloc to return zero'ed data. Found with phkmalloc/2.phk1995-10-071-0/+1
| |
* | Die if we get errors from the tty.phk1995-10-061-3/+5
| |
* | Support for using overlapping kzip kernels that are overwritten duringpeter1995-10-062-17/+103
| | | | | | | | | | | | | | | | | | | | uncompression by the "proper" kernel. These changes also add a -v option so you can see how much room you are using, and check to make sure you're not going past the 4MB boundary. This depends on the corresponding changes to sys/i386/boot/kzipboot. Submitted by: Gary Jones(?) <gj@freefall>, and my code merged in.
* | Fix a bug in a recent commit that broke more so that itmpp1995-10-051-0/+2
| | | | | | | | | | would no longer properly detect when "vi" was being called, and thus would not call vi with the "+line#" argument.
* | Kerberos can now deal with multi-homed clients.gibbs1995-10-054-10/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Kerberos obtains a network address for the local host from the routing tables and uses it consistently for all Kerberos transactions. This ensures that packets only leave the *authenticated* interface. Clients who open and use their own sockets for encrypted or authenticated correspondance to kerberos services should bind their sockets to the same address as that used by kerberos. krb_get_local_addr() and krb_bind_local_addr() allow clients to obtain the local address or bind a socket to the local address used by Kerberos respectively. Reviewed by: Mark Murray <markm>, Garrett Wollman <wollman> Obtained from: concept by Dieter Dworkin Muller <dworkin@village.org>
* | Describe the correct default situation for the various permissionjoerg1995-10-051-3/+3
| | | | | | | | | | | | options. Submitted by: sgk@troutmask.apl.washington.edu (Steven G. Kargl)
* | Make more pass +linenumber to vi (and emacs), even if $EDITOR is used.peter1995-10-041-3/+13
| | | | | | | | Closes PR#441, but with a more generic method.
* | Enable sasc.bde1995-10-031-2/+2
| |
* | Build secure telnet if available and allowedache1995-09-291-1/+3
| |
* | Don't use gets().bde1995-09-294-6/+13
| | | | | | | | | | | | sys_curses/system.c: Don't use gets() better. Neither gets() nor fgets() is appropriate for discarding a line of input.
* | Build tools subdir first to reduce bogons caused by inadequate dependencybde1995-09-291-3/+11
| | | | | | | | | | | | | | | | | | | | handling for the tools binaries. E.g., after libc.a is changed, it previously took two `make' passes and one `make depend' pass following one of the `make' passes to bring everything up to date. Now one `make' pass followed by one `make depend' pass is sufficient. Dependency handling seems to be difficult to handle cleanly when interdependent things are built in different directories.
* | Makefile: use CFLAGS+= instead of CFLAGS=. Don't use the f2c's malloc.jmz1995-09-282-7/+15
| | | | | | | | main.c: reinstitute the -o option to rename C output file.
* | Update to the 1995/09/20 version. Previous version was 1993/12/17jmz1995-09-2850-1910/+4984
| | | | | | | | The diffs are large mainly because of prototyping changes.
* | Fix SRCS so that `make depend' works. There were some .l's and some .y's.bde1995-09-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The filenames in SRCS must have one of the extensions .s, .S, .c, or .cc if they are to be handled by bsd.dep.mk. Lex and yacc files must be converted to C files and kept around for everything to work. This is handled fairly automatically if the names of the generated C files are put in SRCS. Unfortunately these names must be put in CLEANFILES too. pcvt Makefiles: Fix DPADD. It was missing. Fix CLEANFILES. Some temporary files were missing. Fix CFLAGS. There were some `-I dir' options. There must be no whitespace separating -I and -D options from the corresponding args if these options are to be handled by bsd.dep.mk.
* | Rename PATH_LOCK to PATH_UUCPLOCKache1995-09-231-1/+1
| |
* | Fixed netstat to not bogusly mangle the argv[] command args by rewritingdg1995-09-232-15/+12
| | | | | | | | | | | | the way it stores and handles "interface". The previous behavior resulted in strange output from 'w' and 'ps' when an interface specification was given to netstat.
* | Lay some hooks for server side includes in HTML output. Specifically,jfieber1995-09-221-11/+21
| | | | | | | | hooks for custom headers and footers.
* | Stop using gnumalloc.phk1995-09-221-4/+1
| |
* | Print "1day" instead of "1days"dima1995-09-221-2/+4
| |
* | Implement a rather gross hack to identify i386 a.out core files.joerg1995-09-211-0/+10
| | | | | | | | | | | | Takes advantage of some bytes in our current tss structure that reliably have particular values (due to our current architecture or CPU requirements).
* | Use new _PATH_LOCKache1995-09-202-2/+2
| | | | | | | | Fix bug: pid was not assigned
* | Back out the change in rev.1.4 and fix the formatting of the changebde1995-09-181-7/+2
| | | | | | | | | | | | in rev.1.3. 1.4 just broke 1.3 for the -x case. This fixes PR 721 and merges archive.c with 4.4Lite2.
* | Add X11 XPM and BDF description strings. Alas, bitmaps do not havejoerg1995-09-171-0/+2
| | | | | | | | anything usable as "magic string".
* | Point passwd to the new locations of kpasswd.c and kadm.h.gibbs1995-09-141-3/+3
| |
* | Simpler fix to the find bug reported by Terry Lambert <terry@lambert.org>nate1995-09-121-0/+3
| | | | | | | | | | | | | | [ Find to a file vs. to stdout ] produces different output because find does not flush stdout when doing a -print. Submitted by: Jeffrey Hsu <hsu@freefall.freebsd.org>
* | Updating /usr/include/kerberosIV/des.h so eBones will build breaksmarkm1995-09-102-14/+1
| | | | | | | | | | | | | | rcp and rlogin. (patch supplied) Submitted by: John Capo <jc@irbs.com>
* | message catalog for fr_FR.ISO_8859-1jmz1995-09-092-0/+340
| |
* | Add fr_FR.ISO_8859-1 to LANGSjmz1995-09-091-1/+1
| |
* | Change the errx(0,...) to errx(1,...)jkh1995-09-081-2/+2
| | | | | | | | Submitted by: Mike Murphy <mrm@alpharel.com>
* | add RCS Id strings so we know what we havejulian1995-09-082-0/+6
| |
* | Submitted by: Luigi Rizzo (luigi@iet.unipi.it)julian1995-09-085-0/+384
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Obtained from: Gunther Schadow and Luigi Rizzo control program for Trust AmiScan BW (GI1904 chipset) ASC - A device driver for a handy scanner This is a device driver for GI1904-based hand scanners, e.g. the Trust Amiscan Grey and possibly others. The driver is based on the "gsc" driver and, partly, on a Linux driver. The driver has a working select(). -Luigi Rizzo (luigi@iet.unipi.it)
* | Bring Barry Morris' changes from FreeBSD 1.1.5.1 back: pass argumentsjoerg1995-09-062-9/+50
| | | | | | | | | | | | | | | | | | to the target login's shell. This allows for "su -c". Do it right this time and also explain this behaviour in the man page. :) Obtained from: bsm's work in FreeBSD 1.1.5.1
* | Increase the tty column width from 2 to 3 characters.peter1995-09-042-7/+7
| | | | | | | | | | | | | | | | This gives us more room to breath with tty names, especially with drivers that support large numbers of ports.. eg: specialix and digiboard. This does not actually change the current tty names, it just allows room for reporting more characters if the drivers use them.
* | Add pw_yp.c to SRCS. This is code that was moved to chpass, but passwd stillmarkm1995-09-031-2/+2
| | | | | | | | needs it to build.
* | Correct a typo :-).ats1995-09-021-1/+1
| |
* | Bug fix: use the use_yp() function in the chpass(1) code to determinewpaul1995-09-023-48/+34
| | | | | | | | | | | | | | | | | | correctly whether a user is local or NIS (or both, or neither). If you have a user that exists locally but not in NIS, passwd(1) could get confused and try to submit the password change to NIS. (Fortunately, yppasswdd is smart enough to spot the error and reject the change.) Bug reported by: Charles Owens <owensc@enc.edu>
* | Make use_yp() smarter about figuring out whether a user is local orwpaul1995-09-024-30/+202
| | | | | | | | | | | | | | | | | | | | NIS (or both, or neither). Also add support for -l and -y flags to force behavior to local or NIS. use_yp() also goes out of its way to retrieve the correct password database information (local or NIS) depending on what the situation since getpwent() & co. can't necessarily be trusted in some cases. Also document new flags in man page.
* | Command line arguments are now gathered by NewGetOpt. Command linejfieber1995-08-312-51/+109
| | | | | | | | | | | | | | | | syntax is slightly changed: -format is now -f format. New option: -i name This is a switch to control marked sections in SGML documents. Useful for multi-lingual documents.
* | Fix error: while getting file name, backspace not works, but produceache1995-08-301-2/+4
| | | | | | | | | | ^G instead. Proper interaction with ncurses require turn keypad off/on there.
* | Fix 8bit chars output, not highlight all of themache1995-08-301-3/+3
| |
* | While posting something to -current about this, I got an idea for makingjkh1995-08-303-11/+347
| | | | | | | | it a more ideal I18N candidate. Here it is.
* | Add ee.jkh1995-08-301-2/+2
| |
* | This commit was generated by cvs2svn to compensate for changes in r10452,jkh1995-08-309-0/+9696
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | This is `ee' - the Easy Editor. I'm bringing it in to replace vi onjkh1995-08-309-0/+9696
| / | | | | | | | | | | | | | | | | the installation floppy (and in any references in new user docs for editing files) since tossing a novice into vi with no help or clue as to what the key bindings are is both cruel and in violation of the Hague Convention. It's also much SMALLER than vi and even supports emacs key bindings for those so inclined. Submitted by: "Hugh F. Mahon" <hugh@nsmdserv.cnd.hp.com>
OpenPOWER on IntegriCloud