summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Fix style bugs in the previous commit (which weren't in bde's patch)des2003-03-111-2/+0
|
* Reset SIGTSTP handler to default both for parent and child process.davidxu2003-03-111-3/+4
| | | | Submitted by: bde
* Clean up the ETA logic a bit and make sure it works for restarted transfers.des2003-03-111-7/+8
|
* Clarify that -r implies -R.des2003-03-111-0/+2
|
* Fix long standing job control bug. SIGTSTP shouldn't be ignored.davidxu2003-03-111-1/+0
| | | | | | Special instructions tested: suspend stop $$
* Add an embellished lesspipe.sh as described in the man page.obrien2003-03-062-0/+15
| | | | P.S. it is stupid I have to define both SCRIPTS and SCRIPTSNAME.
* Update Judaic calendar for this year.dwmalone2003-03-051-208/+206
| | | | | | PR: 48297 Submitted by: Josef Grosch <jgrosch@mooseriver.com> MFC after: 3 days
* Kill #ifdef NS and some leftover #ifdef ISO code. Re-pack the nlist[]peter2003-03-056-1397/+34
| | | | array, it isn't likely to find any ARPAnet IMP drivers in FreeBSD.
* Kill references to netns in comment about how it conflicted with netipx sopeter2003-03-051-2/+0
| | | | it was ignored all this time.
* Don't complain about an early end-of-file in the -r case rather thanfanf2003-03-041-1/+1
| | | | the opposite. Does this pointy hat look good on me?
* mdoc(7) police: Revision.ru2003-03-031-31/+25
|
* Forgot to update the date field; from David Magda <dmagda@magda.ca>.jmallett2003-03-011-1/+1
|
* Add functionality to only list hosts specified on the command line. If nonejmallett2003-03-012-67/+101
| | | | | | | | | | | | | are specified the old behaviour is old. The submitted applied a much cleaner diff to ruptime.c, however it did not cover cases like listing failures. It would probably be a good idea to move the printing from the ruptime function, and have that function just be used to build the list, as that would unbreak sorting, but this diff is intended to be clear, relative to the original code. As the sort order is the order specified on the command line, for now, such is documented in the manual page accordingly. Submitted by: Edward J. M. Blocklesby <ejb@lythe.org.uk> MFC after: 3 weeks
* The .Nm utility.keramida2003-02-281-4/+9
|
* Spellcheck.nectar2003-02-281-2/+2
|
* Update for version 3.41.obrien2003-02-281-3/+6
|
* Document the fact that VTY locking is easily bypassable when DDBmux2003-02-271-1/+5
| | | | is compiled in the kernel. Also add some useful xrefs to lock(1).
* Pull some common uu/b64 code out into shared functions. Move somefanf2003-02-271-36/+44
| | | | | | | | | | end-of-file checks out of the inner base64 loop, and remove the trailing whitespace stripper. The latter was added in rev 1.23 but the actual fix for the problem was in 1.24 -- b64_pton doesn't mind extra whitespace. (However there's a bogus comment in OpenSSH's uuencode.c that also mentions problems with trailing whitespace and b64_pton, but their real problem is the comment field in the key file.)
* Document uudecode's new relaxed mode for handling raw data.fanf2003-02-271-3/+25
|
* Add a relaxed mode for handling raw input which is missing thefanf2003-02-271-11/+36
| | | | | initial and possibly the final framing lines. This is particularly handy for dealing with broken files or fragments of MIME messages.
* Be POSIXly correct in the handling of /dev/stdout -- it's a "magic cookie"fanf2003-02-271-2/+3
| | | | not a special file.
* Extend our -R extension which sets the number of arguments in which -I willjmallett2003-02-262-3/+9
| | | | | | | replace to support magic values less than zero, which mean to just go nuts and expand as many as we want. MFC after: 2 weeks
* De-typo usage string.jmallett2003-02-261-1/+1
|
* The usage string: renice [priority | [-n incr]] ... assumed that the partcharnier2003-02-262-7/+13
| | | | | | `priority | [-n incr]' was optionnal which is wrong according to the code. Add FreeBSD Id. Reviewed by: maxim
* The cmp utility has the questionable feature of using mmap whendas2003-02-261-0/+21
| | | | | | | | | | | comparing regular files. Add a SIGSEGV handler to make its behavior less surprising when a read error occurs. The handler does not attempt to distinguish errors from file truncation, but anyone actively modifying a file while trying to compare it shouldn't even expect something sane to happen. PR: 45391 Reviewed by: mike (mentor)
* mdoc(7) police: Scheduled sweep.ru2003-02-243-3/+3
|
* Fix style bugs in previous commit.mike2003-02-241-7/+5
|
* Let everyone know when to send the gifts.das2003-02-211-0/+1
| | | | Reviewed by: mike (mentor)
* Remove "sleeper" nonsense.tjr2003-02-211-4/+1
|
* Some things don't build for PowerPC yet.obrien2003-02-211-2/+7
| | | | List from: benno
* Removed extra parentheses.ru2003-02-201-1/+1
|
* Fixed comment.ru2003-02-203-3/+3
|
* o Allow "buckets" in mb_alloc to be differently sized (according tobmilekic2003-02-203-41/+64
| | | | | | | | | | | | | | | | compile-time constants). That is, a "bucket" now is not necessarily a page-worth of mbufs or clusters, but it is MBUF_BUCK_SZ, CLUS_BUCK_SZ worth of mbufs, clusters. o Rename {mbuf,clust}_limit to {mbuf,clust}_hiwm and introduce {mbuf,clust}_lowm, which currently has no effect but will be used to set the low watermarks. o Fix netstat so that it can deal with the differently-sized buckets and teach it about the low watermarks too. o Make sure the per-cpu stats for an absent CPU has mb_active set to 0, explicitly. o Get rid of the allocate refcounts from mbuf map mess. Instead, just malloc() the refcounts in one shot from mbuf_init() o Clean up / update comments in subr_mbuf.c
* Back out the removal (here too) of the "custom" version ofru2003-02-192-1/+2
| | | | | | | | | <sys/endian.h>. It is needed to cross-build sparc64 on RELENG_4 and to build sparc64 on say 5.0-DP1 (on systems without <sys/endian.h>). This will be revisited when we create RELENG_5. Spotted by: make universe
* chflags(1) repo copied, usr.bin->bin.obrien2003-02-184-345/+0
| | | | | We've been installing chflags(1) into /bin since 2000-11-10, so this shouldn't cause any problems.
* Correctly alphabetize options[] so we don't stop at -nouser when searchingdes2003-02-181-1/+1
| | | | | | | | for -not. PR: bin/48423 Submitted by: Matsumura Naoki <matsu@jp.FreeBSD.org> MFC after: 3 days
* Add #include <sys/resource.h>phk2003-02-161-0/+1
| | | | | My apologies for missing these #includes, I must have confused the dependencies with a wrong timestamp or something.
* Add #include <sys/resource.h>phk2003-02-163-0/+3
|
* Remove #include <sys/dkstat.h>phk2003-02-166-6/+0
|
* Back out previous commit, I wasn't thinking clearly.des2003-02-151-2/+1
|
* Set PAM_RHOST to "localhost" if no remote host was specified. This allowsdes2003-02-151-1/+2
| | | | pam_opieaccess() to work as expected for local logins.
* Update for version 3.40.obrien2003-02-151-2/+8
| | | | | | * We have inttypes.h (yes, even in RELENG_4). * We now have GNU getopt, so lets be the first thing in the tree to acutally use it...
* Add the Space Shuttle Columbia incident to calendar.history. While hereseanc2003-02-153-37/+51
| | | | | | move LOTR "history" events into their own calendar file. Link calendar.lotr into calendar.world to preserve visibility of this pre-trendy gem in BSD.
* Add __unused to the declaration of yyrcsid in a more portable way.davidc2003-02-121-1/+4
| | | | Discussed with: alfred, bde, jmallett, obrien
* Get Fox Talbot's birth year right. How could anybody have expectedgrog2003-02-111-1/+1
| | | | photography in the 15th century?
* - Determine the size of buffers with sizeof() instead of usingrobert2003-02-101-7/+7
| | | | | plain magic numbers - one of them was apparently wrong but unharmful. - Remove empty line.
* Make this work without COMPAT_43 by using tcgetattr()/tcsetattr() insteadtjr2003-02-101-10/+10
| | | | of ioctl TIOCGETP/TIOCSETP.
* Backout my previous commit as requested. This solution generatesdavidc2003-02-081-2/+1
| | | | parsers that are non-portable.
* Use waitpid() instead of wait() since we know the pid of the process wedes2003-02-081-1/+2
| | | | are waiting for, and we don't want to reap the wrong process.
* I seem to have never added myself to the FreeBSD birthday calendar.chris2003-02-081-0/+1
|
OpenPOWER on IntegriCloud