summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* mixer addedache1995-02-151-3/+3
|
* >Description:dg1995-02-151-1/+1
| | | | | | | | | | | | | | The "strings" program chokes if you try using "-n". >How-To-Repeat: Try "strings -n SOMENUMBER SOMEFILE". >Fix: Here's a "diff -u" patch that corrects the problem. Submitted by: Lon Willett <lon%softt.uucp@math.utah.edu> via NetBSD
* Remove usage of LINKS and LN_FLAGS=-s, this does not do the correct thingrgrimes1995-02-141-4/+7
| | | | | | for symbolic links when $DESTDIR is set. Add afterinstall: target to handle symbolic link creation.
* Changed passwd's Makefile to use the built-in LINKS mechanism to createwpaul1995-02-141-9/+4
| | | | | | | | the symlinks for yppasswd & friends (we still can't use hard links because passwd is installed immutable). This would have been simpler if the LN_FLAGS variable hadn't chosen to wait until now before leaping out of the /usr/share/mk directory and biting me in the ass. (And thus, I was enlightened.)
* Make netstat report the correct state for T/TCP.wollman1995-02-141-1/+7
| | | | Submitted by: Andras Olah <olah@cs.utwente.nl>
* Merge with eBones stuffache1995-02-111-1/+13
| | | | Submitted by: mark@grondar.za
* Fixes for chpass.jkh1995-02-092-9/+25
| | | | Submitted by: Heikki Suonsivu <hsu@cs.hut.fi>
* Add y.tab.h to CLEANFILES.jkh1995-02-091-2/+2
|
* Correct a bug in the P function: according to 7th edition UNIX (tm), thejmz1995-02-061-1/+1
| | | | | | | | | newline must be part of the pattern space i.e. `echo a|sed -e P' must print a a and not aa This is consistent with gnu sed, SunOS, Ultrix (and probably others!)
* cleaned up and modified slightly to reflect changeswpaul1995-02-011-68/+55
|
* Cleaned up Makefile a little, added man page links from ypchsh.1 ypchfn.1wpaul1995-02-011-2/+3
| | | | and ypchpass.1 to yppasswd.1. Also fixed a typo: ypshfn != ypchfn.
* Changed passwd/yppasswd's Makefile to create all symbolic links insteadwpaul1995-02-011-5/+9
| | | | | | | | of hard links: since passwd is installed immutable, an attempt to make a hard link to it during a 'make install' would fail. I didn't notice this conflict because my /usr directory is an NFS filesystem mounted from a SunOS server, so the special file mode flags had no effecti when I tested everything on my machine. Live and learn.
* Fix calculation of default field heights and a bug in the settingpaul1995-02-011-5/+8
| | | | of form dimensions.
* Clean up the parser, allow fields to be specified inline andpaul1995-02-014-278/+267
| | | | | | generally make the forms language much less verbose. Add height option for fields and calculate sensible defaults.
* Fix off by one error in calculation of `mday' (months start at 1).bde1995-01-311-2/+2
| | | | Jan 31 gave Jan 30, often for next year.
* Add dmenu.jkh1995-01-311-2/+2
|
* Obtained from: The NYS projectwpaul1995-01-314-7/+601
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the first round of changes to incorporate YP server functionality into FreeBSD. This particular change allows passwd to change either the local or NIS password, as well as the NIS GECOS and shell information. Essentially, I've taken passwd(1) and yppasswd from the yppasswd-0.5 distribution (which is part of the NYS project -- a project to provide a GNU GPL'ed suite of NIS tools) and rammed them into each other at high speed. I've tried my best to make this co-exist with the Kerberos stuff, but since I don't run Kerberos I don't have an easy way to verify that it all works. If you choose any Kerberos flags then the YP checks should be bypassed, but that may not be enough. I'll modify it some more if it turns out I broke something. For now, support for localand NIS passwords is pretty solid: - If you simply type 'passwd,' the program checks to see if you exist in the local pwd.db database. If not, you get bounced to YP. - If you try to force local functionality with the -l flag and you don't exist locally, you get an error. The -y flag can be used to force YP functionality. -f and -s let you change your full name and shell (respectively). -f *and* -s let you change all of your 'account information.' ypchfn, ypchsh, yppasswd and ypchpass are all links to passwd.
* Unify the copyright notice.jkh1995-01-302-5/+5
|
* Cleanup.asami1995-01-301-9/+3
| | | | Submitted by: Wolfram Schneider <wosch@cs.tu-berlin.de>
* Fix owner/mode for installed dataache1995-01-301-2/+2
|
* Remove creating dirs & symlinks, it is done by mtree nowache1995-01-301-12/+2
|
* Update the parser to handle the color specifications and new attrpaul1995-01-302-12/+200
| | | | options.
* add file2cphk1995-01-291-2/+3
|
* This is a small little program used to execute a bad practice a clean way :-)phk1995-01-293-0/+100
| | | | | | | | | | | | | | | | | | | | | It will read a file on stdin and write it as decimal integers on stdout, this is useful for embedding files in c-sources. There are a few places where this is needed, and this is a better way than the current practice of hand-editing the sources. The command: date | file2c 'const char date[] = {' ',0};' will produce: const char date[] = { 83,97,116,32,74,97,110,32,50,56,32,49,54,58,52,55,58,51,51,32,80,83,84, 32,49,57,57,53,10 ,0}; The manual page is 2 lines longer than the source :-)
* Add a `-s' flag for `silent' processing. Make the script return 0 forasami1995-01-282-5/+28
| | | | success and 1 for failure. Describe the options in manpage.
* Put in a much less bogus Makefile on advice from Bruce.jkh1995-01-281-7/+5
|
* Fixed coredump when issuing d$ on a blank line. Fixes bin/191.dg1995-01-281-7/+9
|
* Use the better perl script version of which submitted by Wolfram.jkh1995-01-263-0/+117
| | | | Submitted by: Wolfram Schneider <wosch@cs.tu-berlin.de>
* LIBFORMS added to DPADDache1995-01-251-1/+1
|
* LIBS changed to DPADD & LDADDache1995-01-251-1/+2
|
* Add which.jkh1995-01-251-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r5887,jkh1995-01-251-0/+62
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring in Joerg's which command. It's small, it's simple, it will stopjkh1995-01-251-0/+62
| | | | | people (like me! :) from whining! Submitted by: joerg
* More parser fixes. Store attributes properly for each field andpaul1995-01-251-8/+9
| | | | don't emit a second declaration unless it's different to the default.
* Quash another bug where if no link alias is specified apaul1995-01-251-9/+10
| | | | duplicate declaration was emitted.
* Correct default calculation of menu field widths.paul1995-01-251-1/+1
|
* Fix a serious bug where changes to a field changed all fieldspaul1995-01-251-76/+98
| | | | in the forms that used the same field declaration.
* Improve the forms language quite a bit. Most things nowpaul1995-01-252-40/+79
| | | | | | default to sensible values so you don't have to spell out every little detail for every field. Also, auto-detect the field type from the syntax.
* Merge.ache1995-01-244-8/+10
|
* This commit was generated by cvs2svn to compensate for changes in r5825,ache1995-01-241-0/+3
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Upgrade. My recent fix applied by author.ache1995-01-244-8/+18
| |
* | Bring in a number of changes from NetBSD's make, fixing quite a fewjkh1995-01-2333-749/+1489
| | | | | | | | | | | | | | | | | | | | | | | | problems in the process: 1. Quoting should work properly now. In particular, Chet's reported bash make problem has gone away. 2. A lot of memory that just wasn't being free'd after use is now freed. This should cause make to take up a LOT less memory when dealing with archive targets. 3. Give proper credit to Adam de Boor in a number of files. Obtained from: NetBSD (and Adam de Boor)
* | Don't print protocol-cloned routes by default (enabled by -a flag).wollman1995-01-233-33/+62
| | | | | | | | | | Print non-zero expiration timers. Use err(3) for error reporting.
* | A forms interface builder. Basically, it reads a forms spec file andpaul1995-01-234-0/+771
| | | | | | | | | | spits out a frm.tab.h file with all the definitions needed by the libforms interface.
* | Update comments about MISSING and GNU versions.bde1995-01-211-3/+3
| |
* | Don't default to -g in ${CFLAGS}. Developers can still use `make g=-g ...'bde1995-01-211-1/+1
| | | | | | | | | | for debugging. The default ${CFLAGS} still clobbers the system default of -O2 to -O.
* | Use exactly the same checks in excluded() as in inlist(): ignore stabs andbde1995-01-211-6/+4
| | | | | | | | | | stringless symbols in excluded(); check for too-small (nonzero) string table offsets in inlist().
* | Better protection against too long pathes and 8bit controls in fileache1995-01-211-4/+4
| | | | | | | | names, locate dumps core instead
* | Not go to interactive mode, if login failed for URLs, justache1995-01-212-5/+10
| | | | | | | | exit(1). Dedicated to Jordan.
* | In the non-PARANOID case, make sure to set `notickets' to 0 sothat login.cwollman1995-01-201-0/+1
| | | | | | | | doesn't complain.
OpenPOWER on IntegriCloud