mdodd
582f479cac
Remove an unnecessary cast.
2002-08-07 11:35:18 +00:00
ache
376dbc34ba
Back out workaround of fixing "suspend/fg" by price of breaking "stop $$/fg".
...
This is real kernel bug (threads) and don't attempt to mask it by
workarounds to increase chances to fix it in the kernel.
2002-08-07 05:44:50 +00:00
mdodd
d20661ba22
- Use time.h not sys/time.h.
...
- Fix printf format errors.
Submitted by: bde
2002-08-06 12:46:14 +00:00
grog
64d495bae6
Remove Australia from list of locations supposedly having a bank
...
holiday on 6 August. Since this claim isn't dependent on the weekday,
I have my strong doubts about the other locations too, but I can't
confirm, so I'm leaving them in.
2002-08-05 23:54:22 +00:00
mdodd
e46b84ca00
Remove extra space in output.
2002-08-05 14:56:20 +00:00
mdodd
a4b3e13b54
Diff reduction.
2002-08-05 13:23:41 +00:00
mdodd
2ba9baa8d3
Use timespec not timeval.
2002-08-05 12:22:55 +00:00
jake
38c44f7803
Ported to sparc64.
2002-08-04 17:57:01 +00:00
bde
4418f4740b
Include <sys/time.h> for the declaration of struct timeval. Do not
...
depend on namespace pollution in <signal.h>. (truss shouldn't be
using timevals anyway, since it was implemented long after timevals
were obsoleted by timespecs.)
2002-08-04 10:57:41 +00:00
mdodd
c3ab10b179
Add options to print the argument and environment string parameters to
...
execve().
This could be done in a more general manner but it still wouldn't
be very pretty.
MFC after: 3 weeks
2002-08-04 02:24:21 +00:00
mdodd
b4aa304f72
Add a "FreeBSD ELF32" entry to ex_types[].
2002-08-04 02:20:06 +00:00
mdodd
ca2c836450
Terminate the output line when a non-returning syscall is printed.
2002-08-04 01:28:13 +00:00
mdodd
3cb287247d
Add options to print absolute and relative timestamps.
...
PR: bin/25587 (in part)
MFC after: 3 weeks
2002-08-04 01:27:31 +00:00
mdodd
65f8611398
Allow tracking fork()ed children.
...
PR: bin/25587 (in part)
MFC after: 3 weeks
2002-08-04 01:02:52 +00:00
mdodd
357fc6060d
Parameterize globals.
...
PR: bin/25587 (in part)
MFC after: 3 weeks
2002-08-04 00:46:48 +00:00
robert
1495d7e56f
Use a cast to `void *' before casting to a pointer to a structure
...
to stop GCC emitting warnings about increased alignment requirements
which broke the build for sparc64.
Approved by: des
2002-08-02 11:57:59 +00:00
des
1d14d5adc9
Don't depend on namespace pollution from <netinet/in_pcb.h>.
...
Submitted by: bde
2002-08-01 16:49:31 +00:00
des
7884f69d0c
Implement the -l and -c options, which I'd forgotten.
2002-08-01 11:02:30 +00:00
des
06dac20202
Rewrite sockstat(1) in C.
...
Sponsored by: DARPA, NAI Labs
2002-07-31 12:32:03 +00:00
fanf
cd1b46e6b0
Fix some bugs in in-place editing:
...
(1) errors from freopen were not reported correctly
(2) large files were not handled correctly
(3) read-only files broke things
MFC after: 1 week
2002-07-30 19:42:18 +00:00
tjr
e465cc4382
Ignore leading semicolons on commands; required by SUSv3.
...
Obtained from: NetBSD (kleink, Aymeric Vincent)
2002-07-30 14:07:30 +00:00
tjr
6d20181e60
When translating and -C is specified, behave as if the complemented set was
...
in the locale collating order as required by SUSv3.
2002-07-29 23:42:00 +00:00
tjr
fb4f03d256
When translating and the -c option is specified, handle the case where the
...
second string argument is more than one character in length in the way
required by SUSv3 (and the way GNU textutils and SVR4 do it).
2002-07-29 14:50:54 +00:00
ru
a8adf98c82
Drop support for COPY, -c has been the default mode of install(1)
...
for a long time now.
Approved by: bde
2002-07-29 09:40:17 +00:00
ru
2a8927efce
Ignore -C, -p, and -S options of install(1) when used with the -d
...
option. Warn about COPY being phased out. Restore the old method
of always comparing before installing: INSTALL="install -C".
Requested by: bde
2002-07-29 08:51:04 +00:00
des
403946d7ed
fetch(1) is WARNS-5 clean (tested on i386 and Alpha)
2002-07-28 21:09:57 +00:00
des
9413d584e7
Use strtol(3) instead of a home-grown version, and fix a "possibly
...
unitialized variable" warning.
2002-07-28 21:09:25 +00:00
dwmalone
8e2ebdedb2
Add enough consts to keep everyone happy.
2002-07-28 16:23:28 +00:00
dwmalone
3f2a3935bb
Don't reuse a const char * when we really want a char *.
2002-07-28 16:17:38 +00:00
dwmalone
4233e58352
Improve WARNS situation for kdump:
...
1) Define _KERNEL while including sys/time.h to get some function prototypes.
2) Add prototypes and ANSIify definitions.
3) Constness changes.
4) Remove register keyword.
5) Actually return a sensible value from main.
6) Make fread_tail take a void * instead of a char *.
7) Avoid a signedness warning by casting to a size_t. Should be safe
enough 'cos we also check for nonnegativity.
8) Be extra chummy with sigset_t rather than passing a struct to printf
and pretending it is an int.
2002-07-28 16:05:07 +00:00
dwmalone
391a69a94d
ANSIify function definitions to avoid a warning.
2002-07-28 15:50:38 +00:00
dwmalone
39f15130f8
The return value of snprintf should be always nonnegative, so it should
...
be safe to cast it to a size_t before comparing it to a sizeof().
2002-07-28 15:41:15 +00:00
dwmalone
1dca0716ff
ANSIify function definitions to avoid a warning.
2002-07-28 15:32:17 +00:00
dwmalone
bf25e6dcaf
ANSIify function definitions to avoid a warning.
...
Minor constness changes.
2002-07-28 15:28:38 +00:00
dwmalone
0e9dee55c6
ANSify function definitions to avoid a warning.
2002-07-28 15:25:15 +00:00
dwmalone
3f5f42dd5a
ANSIify function definitions to avoid a warning.
2002-07-28 15:22:43 +00:00
dwmalone
165587ded9
ANSIify function definitions to avoid a warning.
...
PR: 38930
Submitted by: keramida
2002-07-28 15:20:10 +00:00
dwmalone
6b76694948
ANSIify function definitions to avoid a warning.
2002-07-28 15:13:17 +00:00
dwmalone
c86f1a950a
ANSIify function definitions to avoid some warnings.
...
Include stdlib.h for exit.
2002-07-28 15:02:24 +00:00
dwmalone
fe8579aa8f
ANSIify function definitions to avoid a warning.
...
Minor constness changes.
2002-07-28 14:55:59 +00:00
dwmalone
59dc008527
ANSIify function definitions to avoid a warning.
2002-07-28 14:41:26 +00:00
jmallett
fd7aefbcf8
Search the include path for the argument to -f, to make lives easier for
...
those of us who want to figure out how old Jim Mock is, but only want to
type 'calendar -f calendar.freebsd'. This is done in a way that should
be totally backwards compatible with no noticable differences, at all.
Reviewed by: mux
MFC after: 4 weeks
2002-07-28 13:46:09 +00:00
dd
82b3ef0386
Add a -v option that prevents switching virtual terminals while this
...
terminal is locked. This permits the user to easily lock the entire
console from a single terminal.
2002-07-28 07:13:53 +00:00
jmallett
5a6eb0ca5f
Print a warning when we are given two scripts for one target. This is neither
...
as wide-reaching nor intensive as NetBSD's similar, but the warning uses the
same text.
Inspired by: NetBSD
2002-07-28 03:52:41 +00:00
grog
9cf68e2eb9
Clarify J.S. Bach's life: he was only born once, and he died in Leipzig.
...
Add entry for Antonio Vivaldi's death.
2002-07-28 00:42:02 +00:00
imp
7701b3e2af
Back out jmallett's realpath changes. They break a set of makefiles that
...
we use in sublte ways with relative paths. Until they can be resolved,
back out these changes and put a big comment about why using realpath is
busted.
Approved by: jmallett
MFC After: 100 millifortnights
2002-07-26 21:50:36 +00:00
tjr
32b632dfec
Use sigaction(2) instead of signal(3) to avoid the signal handler being
...
re-entered.
2002-07-26 05:25:12 +00:00
johan
b54fc31edc
Define all paths in pathnames.h
...
Approved by: joerg, sheldonh (mentor)
2002-07-25 23:04:31 +00:00
tjr
b47ef0cbaf
Give an example showing how to change the mesg status of terminals
...
other than the default one.
PR: 13073
2002-07-25 05:16:49 +00:00
robert
aa7e4582e3
style(9): - Put a space after the 'return' keyword.
...
- Wrap lines longer than 80 characters.
2002-07-24 18:54:59 +00:00
robert
a0562d2132
Use an ANSI-C function definition rather than a
...
K&R one to avoid a warning.
2002-07-24 18:39:51 +00:00
robert
6eea4ee200
- Add a COMPATIBILITY section explaining that the default
...
behaviour of obtaining the affected terminal has changed.
- Refer to the user's terminal instead of the current
terminal session.
- Tell the reader what the utility does when it is invoked
without arguments.
Submitted by: johan
2002-07-24 18:37:22 +00:00
robert
6edce70ffe
Allow selection of the affected terminal using redirection
...
of standard input or standard output, like mesg(1) does.
Suggested by: sheldonh
2002-07-24 15:48:17 +00:00
johan
544f1a7f94
Teach whereis(1) about games.
...
Approved by: joerg, sheldonh (mentor)
2002-07-24 14:35:29 +00:00
jdp
86b3836232
Widen struct sockbuf's sb_timeo member to int from short. With
...
non-default but reasonable values of hz this member overflowed,
breaking NFS over UDP.
Also, as long as I'm plowing up struct sockbuf ... Change certain
members from u_long/long to u_int/int in order to reduce wasted
space on 64-bit machines. This change was requested by Andrew
Gallatin.
Netstat and systat need to be rebuilt. I am incrementing
__FreeBSD_version in case any ports need to change.
2002-07-24 03:02:43 +00:00
trhodes
cef72b6149
Revert previous delta for cut(1) and calendar(1) as they were not applied
...
correctly. My fault, forgot that -current was checked out.
2002-07-23 15:09:56 +00:00
jmallett
558b722f1e
Remove duplicate __FBSDID() - spotted by trying to build with a non-GNU
...
compiler.
2002-07-23 14:39:20 +00:00
ru
1419e21345
Dependencies are delimited by space not tab.
2002-07-23 09:15:45 +00:00
eric
7ff3e005dc
Handle directories correctly.
...
PR: 40801
MFC after: 5 days
2002-07-23 04:54:57 +00:00
trhodes
2f537c20aa
Revert last commit. Sorry for breaking things
2002-07-22 21:45:16 +00:00
trhodes
e123a791c5
MFC: Fix some grammar, greater reduce diffs to HEAD
2002-07-22 21:14:16 +00:00
ume
a3550f2858
add -4 and -6 option to be able to specify an address family.
...
Requested by: matusita
MFC after: 1 week
2002-07-22 17:19:54 +00:00
robert
28e1b1786c
- Use MAXLOGNAME - 1 rather than UT_NAMESIZE.
...
- Remove the inclusion of <utmp.h>.
2002-07-22 11:36:25 +00:00
robert
ea42527996
- Use MAXLOGNAME - 1 instead of UT_NAMESIZE.
...
- Do not pretend there is something like '/etc/utmp'.
2002-07-22 11:32:16 +00:00
tjr
b8007ee7a0
Correct syntax error, remove the unescaped newline between "||" and the
...
command it is intended to test. pdksh and bash caught this syntax error,
sh(1) did not behave as intended.
PR: 40386
2002-07-22 05:35:59 +00:00
ru
516f6d963f
Fixed improper SCRIPTS assignment that broke `clean'.
2002-07-21 21:03:47 +00:00
johan
9f194c6b43
Only use one %s when there is only one argument to print.
...
Submitted by: keramida
Approved by: sheldonh (mentor)
2002-07-21 15:11:32 +00:00
charnier
26ad533edb
Removal of spaces at EOL. Add __FBSDID. New function xmalloc, xrealloc,
...
xstrdup. There is a crash() function that do cleaning before exiting the
program. The new functions are wrappers that make use of crash() in case
of allocation failure. warn, exit -> err.
Reviewed by: alfred
2002-07-21 12:55:04 +00:00
charnier
9f90b488fd
s/A last utility last appeared/A last utility appeared/ (horikawa).
...
Use .Pa for wtmp.
Submitted by: horikawa
2002-07-21 12:45:54 +00:00
dillon
62fef107e4
Add the tcps_sndrexmitbad statistic, keep track of late acks that caused
...
unnecessary retransmissions.
2002-07-19 18:29:38 +00:00
markm
d283bf5723
Merge conflicts.
2002-07-19 16:38:21 +00:00
markm
b2c9482532
This commit was generated by cvs2svn to compensate for changes in r100360,
...
which included commits to RCS files with non-trunk default branches.
2002-07-19 15:19:23 +00:00
markm
e290933e4d
Snapshot of NetBSD's (x)lint. Little functionality, just some code
...
tidy-ups.
2002-07-19 15:19:23 +00:00
markm
31fbc209c3
s/inline/__inline/
2002-07-19 14:12:27 +00:00
markm
35b3fd6802
Merge from import. The import was done ages ago, and this diff has been
...
carried since then.
2002-07-19 14:10:35 +00:00
markm
7b9c43466d
s/inline/__inline/
2002-07-19 13:49:37 +00:00
markm
32ac7e2965
"inline" fixing. Replace "inline" with "__inline" to make more BSD
...
standard (and easier to define away with support in cdefs.h).
Also convert two function-like macros to static inline functions
for lint and the debugger.
2002-07-19 13:38:43 +00:00
ru
cd7c90d38f
s/${INSTALL} -c/${INSTALL} ${COPY}/
2002-07-18 12:07:49 +00:00
scop
5252eb95e9
Add myself.
...
Approved by: knu (mentor)
2002-07-17 19:00:37 +00:00
roberto
c9fb996f3c
Fix installworld.
...
Submitted by: Udo Schweigert <Udo.Schweigert@siemens.com>
2002-07-17 15:35:31 +00:00
wollman
b5e36ca813
A little bit more thought has resulted in a generic script which can
...
implement any of the useless POSIX-required ``regular shell builtin''
utilities, saving one frag and one inode each. The script moves to
usr.bin/alias which is alphabetically the first of these commands.
2002-07-16 22:16:05 +00:00
wollman
2183121c4b
Forgot to change command name in Makefile. (Where's the pointy hat?)
2002-07-16 21:14:01 +00:00
wollman
55d0b83955
POSIX requires these shell builtins to also exist as totally pointless
...
external commands. Since they serve no useful purpose, it's OK that their
implementation is not the most efficient possible.
2002-07-16 21:13:11 +00:00
kbyanc
5e26e30d89
Fix incorrect cast.
2002-07-16 05:57:21 +00:00
dd
9bc51ba681
Use proper article.
2002-07-16 05:38:26 +00:00
wollman
90c7f9135a
Support POSIX ``programming environment'' mistake.
2002-07-15 22:51:24 +00:00
rse
5b0288dd0c
s/progname/procname/ to be consistent with the other occurrences
...
of the option -c argument in SYNOPSIS and DESCRIPTION.
2002-07-15 11:33:30 +00:00
alfred
0524c94cee
revert WARNS=4, it makes the alpha compile sad.
2002-07-15 09:53:34 +00:00
keramida
f7cbdf51ed
mdoc fun: add a few more sentence breaks.
2002-07-15 07:51:10 +00:00
keramida
bfae74eab6
Kill excessive whitespace between macro arguments.
2002-07-15 07:35:36 +00:00
keramida
be36fd0f14
mdoc style: break up sentences
2002-07-15 07:16:54 +00:00
jmallett
fed551e328
Bit-width fields should be of type 'int'.
2002-07-15 06:57:25 +00:00
jmallett
35fdcc10ba
Use %zu to print size_t.
2002-07-15 06:57:01 +00:00
keramida
f5da93b3aa
Fix last hard sentence break.
2002-07-15 06:15:38 +00:00
keramida
402593a44e
^Z suspends any and all programs that don't do anything special about
...
it. There's really no reason to explicitly mention it here.
Suggested by: Mark Valentine <mark@thuvia.demon.co.uk>
2002-07-15 05:54:35 +00:00
tjr
3635de5b6e
Support larger files (at least 64-bit offsets) by using off_t instead of
...
int to store offsets.
2002-07-15 05:31:55 +00:00
jmallett
5cf2af5a27
Kill extraneous whitespace.
2002-07-15 02:15:12 +00:00
keramida
6823a7fabe
^Z doesn't "stop" systat, but it "suspends" it.
...
PR: docs/40489
Submitted by: Dave McCammon <davemac11@yahoo.com>
2002-07-15 01:53:29 +00:00
alfred
c288b01e7d
WARNS=4
2002-07-14 18:23:22 +00:00
alfred
adf0fb9f4e
WARNS=4, add
2002-07-14 18:21:07 +00:00
alfred
6241f40508
WARNS=2, de-__P()
2002-07-14 18:16:06 +00:00
alfred
b7f8470fdf
WARNS=2
2002-07-14 17:55:35 +00:00
alfred
d95d8b89ab
- TI-RPC is now the default again for code generation.
...
- As before, inetd support support is turned of per default.
Code for inetd can be made with -I.
- Support for ``transport monitors'' and the NLSPROVIDER env
variable is still there , even if their use is not clear in
non TLI stream based systems like Free-/NetBSD. It can be activated
with -P.
- There are a few corrections in rpcgen.1 and usage function to conform
to the code. Added and documented -P
- I removed the #ifdefs checks for Free-/NetBSD since we are the only
ones who use this code. MaxOS X may have the same limitations as
we have, so this code will correctly build for them.
- Generate correct cflags.
Submitted by: mbr, Jean-Luc Richier <Jean-Luc.Richier@imag.fr>
PR: bin/29175, misc/27816
2002-07-14 17:54:00 +00:00
charnier
abd215c87f
The .Nm utility
2002-07-14 15:12:00 +00:00
luigi
0a62a25a08
Clear local screen when ^D is typed.
...
Use setproctitle to remove arguments from 'ps' output.
MFC after: 3 days
2002-07-14 14:08:43 +00:00
ache
662958d09e
More Russian holidays
...
PR: 39578
Submitted by: Sergey A. Osokin <osa@FreeBSD.org.ru>
2002-07-14 13:29:27 +00:00
jmallett
8dcca6c133
Add a default case to the getopt(3) switch, remove a blank line nearby.
2002-07-14 02:34:37 +00:00
jmallett
868a694e34
Functions declared as <type> <identifier>(<nil>) should be declared as
...
<type> <identifier>(<void-type>) in ANSI C.
2002-07-14 02:03:23 +00:00
jmallett
1c19cb9624
Remove prototype for main().
2002-07-14 02:00:45 +00:00
jmallett
62f24912aa
Typo fixo: imbedded => embedded
2002-07-13 22:47:40 +00:00
tjr
2665673777
Account for space used by environment variables in a similar way to
...
xargs(1) when handling -exec ... {} + constructions.
2002-07-13 08:08:46 +00:00
ru
1713155fc2
Make dirty, rotten hack really work. As of rev. 1.16, ${BINDIR}
...
is only defined after <bsd.prog.mk> is included, and .if make(1)
conditionals are evaluted on the first pass.
Spotted by: Michael Bretterklieber <mbretter@jawa.at>
2002-07-12 14:49:25 +00:00
joerg
1d2b625a3d
Complete rewrite, once again.
...
This is basically a ``C compilation'' of the former whereis.pl file,
employing the same algorithms, and aiming at being mostly
UI-compatible to the old (legally tainted) 4.3BSD whereis(1). In
comparision, the 4.4BSD-Lite version is just another variant of
which(1) only, where in particular the option to search for source
directories is sorely missing.
While i was at it, i added two more options which i contemplated doing
long since. -x will suppress the run of locate(1) to find sources
that could not be found otherwise, potentially saving a lot of time
(but obviously, risking to not find some sources that are well hidden
in the tree). -q will omit the leading name of the query, so in
particular, you can now do something like:
cd `whereis -qs ls`
I'd explicitly like to thank johan for his review which was quite a
bit more than an average review, including sending me a lot of diffs.
Reviewed by: johan
2002-07-11 21:20:54 +00:00
bde
26d377573f
Set NO_WERROR to ignore the following warning which is emitted on
...
alphas:
.../elf2aout.c:130: warning: cast increases required alignment of
target type
The warning is about casting ((char *)e + phoff) to a struct pointer,
where e is aligned but phoff might be garbage, so I think the warning
should be emitted on most machines (even on i386's, alignment checking
might be on) and the correct fix would involve validation phoff before
using it.
2002-07-11 18:06:09 +00:00
peter
956c81630a
Bring getconf back in from the cold.
2002-07-11 07:28:21 +00:00
dd
e0d563743c
Correct a comment: Typing in the root password at the "Key:" prompt
...
doesn't (and shouldn't) work.
2002-07-10 04:05:33 +00:00
dd
d18ad3c432
Fix indentation: Don't use space where tabs will do; specifically,
...
don't use spaces at the beginning of a line where tabs are normally
used (the worst thing was that half of this file was right (tabs) and
half was wrong (spaces), making for painful reading).
Reviewed by: /sbin/md5, diff -b
2002-07-10 04:03:33 +00:00
ache
d9db561695
Remove tcsetpgrp() stuff across suspend/continue because it cause upper level
...
tcsh killed on resume (fg). It is because tcsh is interactive itself and
do its own things with terminal group.
2002-07-09 19:11:12 +00:00
joerg
d82238c914
Add definitions for the industry-standard DLT density codes.
...
Obtained from: Quantum DLT8000 manual
MFC after: 1 week
2002-07-09 11:26:09 +00:00
joerg
53a32e18d8
The rate between EUR and USD has never been as large as our old value
...
(1.12) since the introductions as a common EU currency. Anyway, since
the rate now seems to stabilize just around 1.00, fix up our value
here.
MFC after: 1 day
2002-07-09 08:47:03 +00:00
johan
784b48a6bb
Add ability to only beep when mail arrives.
...
comsat:
only send two bell charecters if S_IXGRP is set and S_IXUSR is not.
biff:
add new option 'b' to set S_IXGRP.
PR: 10931
Submitted by: Andrew J. Korty <ajk@purdue.edu>
Approved by: sheldonh (mentor)
MFC after: 1 month
2002-07-09 02:16:49 +00:00
johan
f271ae2de5
Add DIAGNOSTICS section to describe exit values.
...
Approved by: sheldonh (mentor)
MFC after: 1 week
2002-07-09 02:13:26 +00:00
tjr
7cab19d576
Make cspace()'s second argument const. Make `escapes' in lputs() const.
2002-07-08 06:00:55 +00:00
tjr
ae7a40f1aa
Silence WARNS=4 by passing a non-const buffer to regerror(). Since it
...
doesn't actually use the buffer when errbuf_size == 0, pass NULL.
2002-07-08 05:36:24 +00:00
robert
8f46f70dc0
Remove a debug output statement.
2002-07-07 15:29:00 +00:00
robert
2284d5668e
- Fix the code in sbuf_need() to double the allocation size until
...
the new content size fits into the sbuf, instead of assuming
that allocating twice the old size is enough.
- Use memmove(3) rather than strcpy(3) to copy overlapping
strings.
PR: bin/39930
2002-07-07 15:24:36 +00:00
mike
27f3da3573
Don't depend on pollution in <limits.h> for the definition of
...
<stdint.h> macros.
2002-07-05 15:58:27 +00:00
tjr
8fe7f967d2
Correct the History section; uniq(1) appeared at least as early as V3.
...
Move the section to after Standards.
2002-07-05 09:44:47 +00:00
tjr
5fe78a36e5
Remove redundant description of input_file and output_file arguments.
2002-07-05 09:37:34 +00:00
tjr
3594350f00
Use err instead of errx when malloc fails. "malloc" is not a helpful
...
error message.
2002-07-05 09:28:13 +00:00
johan
02e0ee4130
Restore copyright and RCSID.
...
Remove duplicate $FreeBSD$, $NetBSD$.
Submitted by: mike
Approved by: sheldonh (mentor)
2002-07-04 12:29:39 +00:00
tjr
25aa3182cb
Update another mention of <CR><CR> I missed the first time around (rev 1.2)
2002-07-04 05:16:19 +00:00
johan
4d3938381c
Reconnect whereis
...
Approved by: sheldonh (mentor)
2002-07-03 19:23:50 +00:00
johan
33c8d5df08
Switch to c version
...
Approved by: sheldonh (mentor)
2002-07-03 19:22:52 +00:00
johan
ee3a0a0b04
compact synopsis
...
s/program [program ...]/program .../
s/program [...]/program .../
Approved by: sheldonh (mentor)
2002-07-03 19:20:59 +00:00
johan
7e4388a823
Remove -p flag.
...
OpenBSD's implementation lacks -p, and we don't want to
support the option now, only to lose it if/when we later
switch to OpenBSD's implementation.
This functionality is provided by which(1).
Approved by: sheldonh (mentor)
2002-07-03 19:19:54 +00:00
johan
b45df6b9b5
Add __FBSDID.
...
Remove __COPYRIGHT, __RCSID which caused an assembler warning.
Approved by: sheldonh (mentor)
2002-07-03 19:17:59 +00:00
johan
2e9ef09d73
Change to NetBSDs version of whereis.
...
Approved by: sheldonh (mentor)
Obtained from: NetBSD
2002-07-03 19:16:31 +00:00
johan
f6c6d3c4f3
Disconnect whereis while importing version from NetBSD
...
Approved by: sheldonh (mentor)
2002-07-03 19:05:15 +00:00
tjr
f3c503c6ca
Note that two carriage returns aren't required after entering the
...
initial setup anymore (since process.c rev. 1.25). Add $FreeBSD$.
MFC after: 2 weeks
2002-07-03 14:42:53 +00:00
tjr
110c2de07c
Avoid checking whether each line is the last line of the file when we don't
...
need to know. Instead, check when we are trying to match a "$" address.
This does not change the way sed processes regular files, but makes it behave
more sensibly when used interactively.
PR: 40101
MFC after: 2 weeks
2002-07-03 14:38:27 +00:00
tjr
f71af381af
Don't let the pattern space become null if the `x' command is used when the
...
hold space is null; some functions assume it's never null.
MFC after: 3 days
2002-07-03 14:32:43 +00:00
ru
352eaf673d
mdoc(7) police: added missing markup bits, lowercased argument names.
2002-07-03 12:24:11 +00:00
suz
bf33ab99c5
fixed typo.
...
obtained from: KAME
MFC after: 3 days
2002-07-03 06:48:12 +00:00
trhodes
bba5eae362
Fix grammar in 1 sentence
...
Reword 'Usually faster in most cases' to 'and is faster in most cases'
PR: 40024 (partly)
2002-07-02 21:13:15 +00:00
ru
5179f05e33
Reimplemented bsd.nls.mk using bsd.files.mk and bsd.links.mk.
...
Provided the (previously missing) dependency on source files
for intermediate .msg files.
Provided the default for NLSSRCDIR (defaults to .CURDIR).
Slightly changed the API: NLS should now list plain locale
names, without the .msg suffix.
When included from bsd.prog.mk, NLSNAME defaults to PROG.
2002-07-02 12:37:09 +00:00
mini
712f956e9e
Add -g option, which restricts printing of the gecos fields to just the user's
...
real name.
PR: bin/39462
Submitted by: Mike Makonnen <makonnen@pacbell.net>
Obtained from: NetBSD
MFC after: 1 week
2002-07-02 08:00:20 +00:00
jmallett
617eb0d7c2
Back out my minorly disputed and possibly not well thought out changes to how
...
arguments are processed, at least temporarily.
2002-07-01 18:03:30 +00:00
markm
ebb4feef4b
Modernise; ISOify, use __FBSDID(), use headers instead of hand-declaring.
...
Fix easy warnings.
2002-07-01 16:40:33 +00:00
johan
ff24be4b5a
Add my DoB
...
Approved by: sheldonh (mentor)
2002-07-01 16:02:05 +00:00