summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Use mktemp(1) for tempfiles (concatdb.sh), and increase the number of X's.kris2000-01-123-3/+3
|
* malloc more space for temp file namekris2000-01-101-1/+1
| | | | Noticed by: marcel
* Feed mkstemp() some more X's to keep it safe.kris2000-01-102-5/+5
|
* Adapt to the new `ccp' now that the traditional-behaving /usr/bin/cppobrien2000-01-102-5/+6
| | | | | | | | script is gone. PR: 15932 Submitted by: Jos Backus <Jos.Backus@nl.origin-it.com> Tested by: brian, Manfred Antar <mantar@pacbell.net>
* Handle the case where we truss an SUGID program -- in particular, we needsef2000-01-102-3/+18
| | | | | | | | to wake up any processes waiting via PIOCWAIT on process exit, and truss needs to be more aware that a process may actually disappear while it's waiting. Reviewed by: Paul Saab <ps@yahoo-inc.com>
* Correctly backspace over number N that preceeds macros.hoek2000-01-081-7/+12
|
* Instead of reporting all 0.0.0.0 as ``default'' only reportrgrimes2000-01-071-2/+5
| | | | | | a true default of 0.0.0.0/0 as default. Reviewed by: wollman
* . mdoc(7)'fyphantom2000-01-072-15/+32
| | | | | | | | . add Xrs to hosts.equiv(5), auth.conf(5), services(5) to some pages . sort Xrs in SEE ALSO sections Patches based on PR: docs/15680 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* -permit protocol specific statistics at iflag,shin2000-01-073-9/+16
| | | | | | | | | only when either of sflag and "-f inet6" is specified. -fix the indentation of default output Specified by: Stephen McKay <syssgm@detir.qld.gov.au> Reviewed and Confirmed by: Stephen McKay <syssgm@detir.qld.gov.au>
* Back out rev 1.11, about which bde had concerns, and instead implementsheldonh2000-01-062-66/+72
| | | | | | | | appropriate bounds-checking and typecasts based on our knowledge of the desired conversion format specifier. Simplify diagnostics and take care to print the correct conversion format specifier when %l is involved.
* libipsec and IPsec related apps. (and some KAME related man pages)shin2000-01-061-1/+1
| | | | | Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
* Actually remove unrequired SRCS.bde2000-01-051-1/+0
|
* Don't build with X support if DESTDIR is defined. This preventsmarcel2000-01-051-21/+18
| | | | | | | | breaking a cross-build caused by taking the X libraries on the build machine. In general this means that we never compile with X support. The user has to manually compile doscmd for that. Suggested by: bde, imp (among others)
* Replace calendar with 2000 calendar.grog2000-01-041-128/+140
| | | | | Supplied-by: Josef Grosch <jgrosch@MooseRiver.com> PR: docs/15429
* Turn on a new /usr/bin/cpp that is a true binary rather than a shell scriptobrien2000-01-044-202/+0
| | | | | wrapper. /usr/bin/cpp knows about all the GCC predefined symbols and has the functionality of the previous EGCS 1.1.2 /usr/libexec/cpp.
* Make brandelf explain itself a little better on error.wes2000-01-042-12/+46
| | | | | | | | Also, at Boris' suggestion, add -l option to list known ELF types. PR: bin/15285 Reviewed by: bp
* Print mac addresses in standard byte:byte format rather thanjkh2000-01-031-1/+1
| | | | | | | byte.byte. This makes it consistent with our other utilities like arp(8) and ifconfig(8). Submitted by: Paul Vixie <paul@vix.com>
* Added missing DPADD's. Removed unrequired SRCS's.joe2000-01-013-1/+3
| | | | Obtained from: bde
* Fix typosru1999-12-311-2/+2
|
* Moved flags_to_string and string_to_flags into libutil. It's used injoe1999-12-303-6/+8
| | | | many places nowadays.
* Escape the ':' so that is actually makes it into the double quotes.steve1999-12-291-1/+1
| | | | | PR: 15775 Submitted by: Martin Kammerhofer <mkamm@gmx.net>
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"peter1999-12-293-5/+5
| | | | | | is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come.
* Add display of maximum allowed mbuf count to match mbuf cluster count.msmith1999-12-281-3/+11
| | | | Submitted by: Bosko Milekic <bmilekic@dsuper.net>
* Dedocument one of the BUGS listed in the last commit. The bug (needlesshoek1999-12-281-3/+0
| | | | | | | calculation of line numbers) never existed and the two bugs that made me think it existed have been fixed (see recent commits about this date to linenum.c:r.1.3 and ch.c:r.1.8 fixing broken line-number buffering and braindead algorithms respectively).
* Rather than use an LRU-ordered circular list to store buffered data,hoek1999-12-281-35/+65
| | | | | | | | | | | | | | | simply keep an index into the last access on the circular list and begin searches at that point. An LRU list is inappropriate here since the vast majority of accesses will occur in the same order that the list is created in. The only case where an LRU is remotely useful here is when reading from a file and the user is jumping to randomish positions and constantly returning to some central position. Even for this case it is such a small optimization as not to be noticed in an interactive program such as more(1). This change results in a _tremendously_ noticable speed-up when reading long files through a pipe (where long = ~200k, machine = ~2.5h single-disk worldstone).
* Delete dead code and clean comments a little.hoek1999-12-282-8/+15
|
* Getaddrinfo(), getnameinfo(), and etc support in libc/net.shin1999-12-284-47/+12
| | | | | | | Several udp and raw apps IPv6 support. Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
* Correctly maintain state when manipulating linked lists. This fixes ahoek1999-12-271-3/+8
| | | | | bug that prevented the line-number buffer from working correctly. AFAIK the bug is still present in other derivatives of more(1).
* Initialize unitialized variable from prev. commit.hoek1999-12-271-1/+1
|
* A missing verb to a sentence from last commit.hoek1999-12-261-1/+2
|
* For some reason the HOME key wasn't documented. Document it. Expandhoek1999-12-262-3/+32
| | | | | | the docs on a couple other keys. While I'm here, document another ~3 bugs that have been around for all eternity in the hope that I'll someday bother to fix them.
* Allow excessive backspacing to correctly abort an input (most significantlyhoek1999-12-262-12/+22
| | | | a search string input).
* Expand source comments a little -=> increased readability.hoek1999-12-262-8/+35
|
* Since we build and install gasp(1) in /usr/libexec/${OBJFORMAT}/,green1999-12-241-0/+1
| | | | | and it is a user-run utility, it should be in objformat, so gasp is in the ${PATH} :)
* Enable genassym.marcel1999-12-231-0/+1
|
* New command for creating assembler symbols from C.marcel1999-12-233-0/+348
|
* Say goodbye to some crufty old fortran code.kris1999-12-227-1041/+0
| | | | Reviewed by: current
* Extra sanity checks in information from file edited by user. Thisimp1999-12-211-16/+16
| | | | | | | precludes using chfn, et al, to generate a divot in /etc. Submitted by: Lukasz Luzar Forgotten about for months by: imp
* also, changed prototype of pr_rthdr(), as my previous fixshin1999-12-211-1/+1
| | | | for netstat/route.c
* Added missing declaration for argment specification at pr_rthdr(),shin1999-12-211-3/+4
| | | | | | caused by my previous patch, sorry. Also, changed its var name from 'af' to 'wid_af', to avoid confusion with global var 'af'.
* define WID_DST6 and WID_GW6 and use them only for IPv6, to keep IPv4 relatedshin1999-12-211-12/+32
| | | | | | | | | | | | information in 80 columns. TODO: IPv6 related information is not likely to be kept in 80 columns, anyway. Some more print modes could be added, but what is the priority between those modes? -print out all information even if they don't fit into 80 columns -strip off some information to fit them into 80 columns Reviewed by: markm
* Small typo fix.asmodai1999-12-201-1/+1
| | | | | PR: docs/15579 Submitted by: Noriaki Mitsunaga <mitchy@er.ams.eng.osaka-u.ac.jp>
* Second part of bin/3648: add -flags to search for specific flags.roberto1999-12-196-4/+87
| | | | | | | | I added $FreeBSD$ whicle I was here. The patch wasn't usable anymore due to its age so I adapted it. PR: bin/3648 Submitted by: Martin Birgmeier <mbirg@austria.ds.philips.com>
* Revert the libcrypt/libmd stuff back to how it was. This should not havepeter1999-12-187-19/+18
| | | | | | | | happened as it was working around problems elsewhere (ie: binutils/ld not doing the right thing according to the ELF design). libcrypt has been adjusted to not need the runtime -lmd. It's still not quite right (ld is supposed to work damnit) but at least it doesn't impact all the users of libcrypt in Marcel's cross-build model.
* Remove duplicate entrycpiazza1999-12-181-1/+0
|
* Spelling fixes. first change from openbsd second from netbsdcpiazza1999-12-181-2/+2
|
* Document -e flag.phantom1999-12-171-0/+14
| | | | | PR: docs/14936 Submitted by: Stephen J. Roznowski <sjr@home.com>
* Document -d and -o flagsphantom1999-12-171-1/+15
| | | | | Remove selfreference item from SEE ALSO section Add reference to colldef(1) to SEE ALSO section
* Install Flexlexer.h with mode 444.bde1999-12-171-1/+1
|
* Add libmd (or move it after libcrypt). We don't want the linker to bemarcel1999-12-167-18/+21
| | | | | smart because it will definitely get it wrong. This popped up during cross-linking.
OpenPOWER on IntegriCloud