bde
e93d50ef3b
Don't assume that time_t is long.
1998-06-29 17:25:46 +00:00
bde
122886a1e0
Don't assume that time_t is long.
1998-06-29 17:06:00 +00:00
bde
d1ade19b07
Don't assume that time_t is long.
1998-06-29 15:52:49 +00:00
steve
1f377d980c
Fix a few typos.
...
PR: 7092
Submitted by: Kauzo Horikawa <h-horik@yk.rim.or.jp>
1998-06-27 20:32:41 +00:00
rnordier
ac15457e4b
Correct typo: loosing --> losing
1998-06-26 14:25:18 +00:00
ghelmer
c957b12bc9
Update vmstat portion of man page to reflect the statistics currently
...
shown by systat's vmstat display.
PR: docs/3764
1998-06-25 22:04:48 +00:00
peter
1fd5135a7b
Merge ppp 2.3.3 -> 2.3.5 changes (for what it's worth)
1998-06-23 21:58:41 +00:00
ghelmer
074f4bd5fa
Minor grammar and punctuation cleanup.
...
Reference /etc/periodic/daily instead of /etc/crontab.
1998-06-23 16:52:59 +00:00
dt
f48c45f907
Make value of SIZE accurate.
...
Obtained from: ps(1)
1998-06-21 18:00:34 +00:00
wosch
ee69dd69c5
Create a save TMPDIR using `mktemp -d'.
1998-06-18 09:26:22 +00:00
jkoshy
56c4243e86
Remove compile time dependency on ARG_MAX.
...
This fix only removes the dependency on compile time constants. The code
has other (old) problems that need to be addressed.
PR: 1791
Reviewed-by: bde, tegge
1998-06-17 12:58:43 +00:00
steve
32510ecfb5
sprintf -> snprintf to avoid potential buffer overflow.
...
PR: 6907
Submitted by: Archie Cobbs <archie@whistle.com>
1998-06-14 16:03:40 +00:00
steve
6f5e754491
Correct the description of the last four fields.
...
PR: 6926
Submitted by: Josh Gilliam <josh@quick.net>
1998-06-13 19:14:14 +00:00
peter
1f5c254c67
Make -V expand it's arguments. This means that instead of 'make -V OBJS'
...
printing something useless (to a shell) like: ${SRCS:N*.h:R:S/$/.o/g}
it will instead print the actual ${OBJS} value.
1998-06-13 11:55:57 +00:00
peter
e819351604
"./strip maybe_stripped" doesn't work too well if maybe_stripped is an
...
elf executable..
1998-06-12 16:22:25 +00:00
peter
bd88b2c525
The doscmd build process and doscmd.kernel loader is very a.out specific
...
and doesn't fly too well on in an elf enviroment yet.
1998-06-12 16:18:27 +00:00
peter
fdde6212a2
#include <arpa/inet.h>
1998-06-12 14:18:33 +00:00
peter
8eddb2ad66
Add -DFREEBSD_AOUT to CFLAGS to ensure we get the correct definitions
...
from <link.h>
1998-06-12 14:11:15 +00:00
peter
e6d8366d25
#include <arpa/inet.h>
...
Also, use real struct in_addr rather than u_long.
1998-06-12 13:04:59 +00:00
peter
0b9db54b14
#include <arpa/inet.h>
1998-06-12 12:55:46 +00:00
peter
33df921953
#include <arpa/inet.h>
1998-06-12 12:37:15 +00:00
ache
8181ce88bf
Local filesystems are ufs not ffs
...
Submitted by: "D. Rock" <rock@cs.uni-sb.de>
1998-06-11 03:47:29 +00:00
thepish
e154f69df4
Submitted by: Peter Hawkins thepish@freebsd.org
...
Small man page fix (missing ']' in [:alpha:] example)
1998-06-11 02:14:58 +00:00
phk
7a64d46ca3
Spelling fixes.
...
PR: 6903
Reviewed by: phk
Submitted by: Josh Gilliam <josh@quick.net>
1998-06-10 12:34:27 +00:00
peter
7a359c2e0c
fchflags(8) -> fchflags(2)
...
Submitted by: Kenneth Merry <ken@plutotech.com>
Also, while here, mention that other FS's don't do flags.
1998-06-10 07:17:59 +00:00
imp
04f329cb39
sizeof(foo - 1) isn't the same as sizeof(foo) - 1.
...
Pointed out by: Theo De Raadt.
1998-06-09 14:51:05 +00:00
imp
078b9d996a
Remove unused strvisx.
1998-06-09 04:35:20 +00:00
imp
8c96be00ef
Don't assume that hp->h_lenght == 4. Be conservative in its use.
...
Submitted by: J. Assange a long time ago.
1998-06-09 04:31:02 +00:00
imp
9a6732bd4e
o Use snprintf rather than sprintf.
...
o Revert gid to caller before a shell so we can run setgid.
o minor style nits to make bruce happy :-)
o use strncpy correctly.
1998-06-09 04:28:05 +00:00
imp
765f577232
Use mkstemp rather than mktemp for yacc's temp files. This change was made
...
to OpenBSD a long time ago and to my tree shortly thereafter. I think theo
made this change, or one similar to it, but I could be wrong.
1998-06-09 04:20:51 +00:00
imp
a51cfac665
o Use snprintf rather than sprintf
...
o Add more checks for buffer overflows
o Use snprintf rather than strcat/cpy and have better checks for max
length exceeded.
Most of these changes are not exploitable buffer overruns, but it never
hurts to be safe.
Inspired by and obtained from: OpenBSD
1998-06-09 04:17:29 +00:00
imp
94f67b7ef5
o Use snprintf over sprintf.
...
o Use strncpy correctly.
o Use enough buffer for line.
Inspired by or Obtained from: Similar changes in OpenBSD
1998-06-09 04:13:03 +00:00
imp
41a9e1ce2d
Make sure we pass the length - 1 to readlink, since it adds its own
...
NUL at the end of the path.
Inspired by: OpenBSD's changes in this area by theo de raadt
1998-06-09 04:10:08 +00:00
imp
276491a1c6
$@ is deprecated, use ${.TARGET} instead. Ditto for other single character
...
$n.
PR: conf/3273
1998-06-09 04:07:23 +00:00
jkoshy
8cfd64279d
Reword to remove confusion between su(1)'s "-c" option and that of the shell
...
being invoked. Add example that clarifies usage of "-c".
PR: 6859
1998-06-08 05:29:51 +00:00
thepish
71003d7a95
PR: docs/5628
...
Submitted by: MITSUNAGA Noriaki mitchy@er.ams.eng.osaka-u.ac.jp
Correct formatting error in display of the "-i size" option description section.
1998-06-06 15:16:02 +00:00
steve
260fa64a35
Fix a bunch of spelling errors.
...
PR: 6856
Submitted by: Josh Gilliam <josh@quick.net>
1998-06-04 21:06:07 +00:00
bde
8c0f65d342
Don't forget to pretend that `make -n -jN' makes the targets that it
...
says it pretends to make.
This bug was apparently harmless except for normal cases involving
.ORDER statements when it made debugging of -jN using -n very
confusing. E.g., for:
.ORDER: beforedepend .depend
depend: beforedepend .depend
where beforedepend depends on something so that it is not initially
up to date, `make [-n] -j2 depend' causes `make' to wait for itself
to make beforedepend. This works fine without -n. The job to make
beforedepend has normally been started, and beforedepend is marked
as made when the job completes. However, with -n, the pseudo-job
for making beforedepend has normally completed, and in any case
there was no chance of beforedepend being marked as made. `make'
actually exited almost immediately with status 0 instead of waiting
forever.
1998-06-04 05:48:57 +00:00
jkoshy
15683e67b6
Spelling corrections.
...
PR: 6829
Submitted by: Josh Gilliam <josh@quick.net>
1998-06-03 04:21:41 +00:00
thepish
74cae44c57
PR: bin/6828
...
Submitted by: njs3@doc.ic.ac.uk
Obtained from: NetBSD
Implement embedded variable expansion
1998-06-02 13:11:04 +00:00
peter
0a878d2304
Treat an EOPNOTSUPP from fchflags() as a non-fatal case. Only warn about
...
it if flags were explicitly specified on the command line. Do not warn
if we were merely trying to preserve flags or remove UF_NODUMP. NFS does
not support flags.
I'm not sure that this is ideal, but it should do for now. Installing
a plain file onto a NFS server must work, we used to silently ignore the
attempt. Doing a binary install looses the flags anyway since cpio
doens't preserve them with the cdrom/network images.
XXX make world should not use flags or chown/chgrp in the obj/tmp area.
This is based on a suggestion from Ken Merry <ken@plutotech.com>.
1998-06-02 12:00:08 +00:00
jhay
39c5e7fee1
Look for kzhead.o and kztail.o in /usr/lib/aout.
1998-06-01 18:34:19 +00:00
peter
b491d0778a
SUBDIR += ldd
1998-06-01 14:30:58 +00:00
peter
11088cd559
ldd standalone build, after repository copy.
1998-06-01 13:55:12 +00:00
amurai
daec942153
Trim a domain part for wtmp as same as showed by "netstat -r".
...
Here is a some example for avoiding a confusion.
It asssumes a logged host domain is "spec.co.jp". All
example is longer than UT_HOSTNAMELEN value.
1) turbo.tama.spec.co.jp: 192.19.0.2 -> trubo.tama
2) turbo.tama.foo.co.jp : 192.19.0.2 -> 192.19.0.2
3) specgw.spec.co.jp : 202.32.13.1 -> specgw
Submitted by: Atsushi Murai <amurai@spec.co.jp>
1998-06-01 08:47:04 +00:00
bde
317c29f913
Fixed double slashes in pathnames.
1998-05-31 11:32:38 +00:00
jb
ca4b05419a
objformat is part of the i386 mid life identity crisis. On alpha, things
...
are in their normal places, so objformat isn't required.
1998-05-31 10:48:06 +00:00
phk
d3d65c6b2e
Some cleanups related to timecounters and weird ifdefs in <sys/time.h>.
...
Clean up (or if antipodic: down) some of the msgbuf stuff.
Use an inline function rather than a macro for timecounter delta.
Maintain process "on-cpu" time as 64 bits of microseconds to avoid
needless second rollover overhead.
Avoid calling microuptime the second time in mi_switch() if we do
not pass through _idle in cpu_switch()
This should reduce our context-switch overhead a bit, in particular
on pre-P5 and SMP systems.
WARNING: Programs which muck about with struct proc in userland
will have to be fixed.
Reviewed, but found imperfect by: bde
1998-05-28 09:30:28 +00:00
danny
f5105e25f5
Reviewed by: Peter Hawkins <thepish@FreeBSD.org>
...
Add s and w flags to show duration in or with seconds.
1998-05-28 00:58:29 +00:00
jhay
02b6208b98
Correctly display the interrupt counts.
...
Reviewed with optimizations by: Tor Egge <tegge>
1998-05-27 21:01:37 +00:00
peter
4e47d8ced5
Convert to more canonical format.. It seems that both Soren and I were
...
working on this in parallel.. :-(
1998-05-27 15:43:24 +00:00
sos
327c9c51a0
Compile & use objformat as it was intended to, I have no idea why
...
that failed for me before :(
1998-05-27 07:59:37 +00:00
sos
bc60c8025e
ELF preparation step 2:
...
Move a.out libraries to /usr/lib/aout to make space for ELF libs.
Make rtld usr /usr/lib/aout as default library path.
Make ldconfig reject /usr/lib as an a.out library path.
Fix various Makefiles for LIBDIR!=/usr/lib breakage.
This will after a make world & reboot give a system that no
longer uses /usr/lib/*, infact one could remove all the old
libraries there, they are not used anymore.
We are getting close to an ELF make world, but I'll let this
all settle for a week or two...
1998-05-26 20:12:56 +00:00
sos
37218a2785
Get owner/group/modes right
1998-05-26 12:27:37 +00:00
sos
31e5866c45
Oops, remember CFLAGS...
...
Also compile directly to the target on install.
1998-05-26 06:51:28 +00:00
danny
360b2c0bec
PR: 1904
...
Abort if given uname is > MAXLOGNAME-1
1998-05-26 06:39:08 +00:00
steve
57e422edf2
"EOF of file..." is written to stderr and not stdout.
...
PR: 6756
1998-05-26 00:39:12 +00:00
sos
ea8b97a093
ELF preparation step 1:
...
Move our old a.out utils to /usr/libexec/aout.
Enable binutils and put the utils in /usr/libexec/elf
Enable objformat, a little helper program that calls the right
utils based on /etc/objformat and $OBJFORMAT.
This will enable the ELF generating tools.
Remember that this is only step one, the system is still compiled
and run in a.out format ONLY.
Problem left to solve: The BSD manpages wins over the GNU equivalents
as the are installed last. We need to distinguish between the manpages
somehow...
1998-05-25 17:34:42 +00:00
sos
872aa46baf
Only compile on install.
1998-05-25 15:00:49 +00:00
sos
e93c797887
Make objformat DTRT when in the make world environment.
1998-05-25 14:42:22 +00:00
des
60d78a8916
Back out Steve's fix, as this was already fixed by me in revision 1.6
1998-05-25 12:04:47 +00:00
steve
538a485014
Only allow 'who' and 'who am i' as valid usages.
...
PR: 6294
Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
1998-05-25 07:19:07 +00:00
steve
75cfd8e8c2
Allow spaces in the filename to be decoded to.
...
PR: 4882
Submitted by: Slaven Rezic <eserte@cs.tu-berlin.de>
1998-05-25 06:27:09 +00:00
steve
3b0c6ff2d7
Allow a user in group 0 to su(1) to root if their primary
...
group is 0 in /etc/passwd even if they aren't listed
as a member in /etc/group. This is more inline with
what the group manpage says.
PR: 6696
Submitted by: Max Euston <meuston@jmrodgers.com>
1998-05-25 03:34:52 +00:00
steve
d0fc5c4c1b
Add a graceful jumping off point with a new .error directive.
...
PR: 6720
Submitted by: Niall Smart <njs3@doc.ic.ac.uk>
1998-05-25 03:28:37 +00:00
jkoshy
ff464ca1d1
Sort SEE ALSO section alphabetically.
1998-05-22 11:09:01 +00:00
jkoshy
25789e916f
Cosmetic fix. Compute header field widths from UT_{HOST,LINE,NAME}SIZE
...
instead of hardcoding header line.
PR: 6325
1998-05-21 08:46:48 +00:00
rnordier
bee67649e2
Support integer constant unsigned-suffix and long-long-suffix.
1998-05-19 20:41:20 +00:00
pb
03f5c91484
Make "netstat -s" display stats on fast-forwarded packets.
...
Obtained from: NetBSD code
1998-05-19 16:00:55 +00:00
jkoshy
5a379d943a
Use the correct name of the login.conf(5) capability (`passwordperiod' ->
...
`passwordtime').
1998-05-19 03:48:07 +00:00
markm
4226789a18
Include correct header to get definition of struct sockaddr_un.
1998-05-16 21:35:37 +00:00
wollman
949dcf30df
Fix rev. 1.7: get offsetof from the correct header file.
1998-05-16 18:04:00 +00:00
ache
1ec8848ea4
Fix broken sun_len usage: it is not sun_path length but bigger
1998-05-16 08:31:49 +00:00
wollman
e37570d812
mbuf, inet, and unix modules no longer read kvm.
1998-05-15 20:19:21 +00:00
jb
232e685ed6
More programs are now broken on alpha due to the libbind changes
...
that prevent the programs from being linked static (duplicated
symbols).
Other programs depend on kernel internals. These will have to wait
for a custom alpha kernel. For now, let's just make the build safe.
1998-05-15 12:33:56 +00:00
jb
41abcb86d3
Change variable from long to time_t where they are passed by reference
...
to time().
1998-05-15 12:28:43 +00:00
jkoshy
715f414038
Add cross references for find(1), locate(1), whereis(1) and which(1).
...
Submitted by: Josh Gillam <josh@quick.net>
PR: docs/6642
1998-05-15 11:22:42 +00:00
jb
d464adb4c0
Change the name of a variable from _start to s_start. On alpha there
...
must be a library function called _start.
1998-05-15 09:26:28 +00:00
jkoshy
b964b328b6
Allow `w' to treat a corrupted "utmp" as a non fatal error.
...
PR: bin/2832
1998-05-14 10:13:24 +00:00
phk
4c734c0e4d
.Sh ENVIRONMENT VARIABLES -> .Sh ENVIRONMENT
...
PR: 6599
Reviewed by: phk
Submitted by: Josh Gilliam <josh@quick.net>
1998-05-13 07:57:49 +00:00
jb
25a20d1f0e
Fix broken (at least on alpha, but probably on i386 too) code which
...
is supposed to walk an arry of character pointers, not an array of
characters.
1998-05-13 05:50:42 +00:00
wosch
e06e501ff8
Some commands are shell builtins. Execute the builtins by the shell
...
and not directly by make(1).
PR: bin/6550
Submitted by: Theo de Raadt <deraadt@cvs.openbsd.org & wosch
1998-05-12 11:54:12 +00:00
bde
3325f91b7d
Fixed missing dependencies on headers generated by rpcgen, as usual.
...
Removed bogus dependencies of generated .c files on generated headers.
Sorted sources lists.
1998-05-10 16:01:36 +00:00
wollman
a654d73c6b
Fix my last change: the .Fx macro doesn't do anything useful without an
...
argument, so use `.Tn FreeBSD' instead.
1998-05-09 21:39:49 +00:00
wollman
845ecc3d6b
Documentation fix: delete references to T/TCP as they are not relevant
...
to the case in question. (Said case being quite clearly defined by
the basic TCP specification, RFC 792.)
1998-05-09 20:50:37 +00:00
des
e80744306c
Arrggghhhh... forgot to strip the / after outputting %2f
1998-05-09 08:56:07 +00:00
des
bc55335b0d
Map a leading / in -c argument to %2f instead of dropping it silently.
...
PR: bin/6558
1998-05-09 08:41:23 +00:00
fenner
014829c6bf
Describe absolute paths in FTP URL's. This patch has been sitting
...
around uncommitted for 2 months =(
1998-05-09 07:33:09 +00:00
max
3d49c4c947
In the SEE ALSO section, {get,set}rlimit are said to be in the section
...
3 which are actually in the section 2.
Pointed out by: Brian Reichert <reichert@numachi.com>
PR: 6480
1998-05-08 14:46:23 +00:00
bde
9667ed0a16
Added y.tab.h to SRCS. This should have been used to get dependencies
...
on y.tab.h generated. It will soon be used to tell bsd.dep.mk that
y.tab.h itself needs to be generated.
1998-05-05 13:16:35 +00:00
bde
06d8ed4b9f
Put y.tab.h back in SRCS. This used to be the best way to get
...
dependencies on y.tab.h generated. It will soon be used to tell
bsd.dep.mk that y.tab.h itself needs to be generated.
1998-05-05 13:00:26 +00:00
charnier
810a5d762e
Add usage() and rcsid. Remove unused #include. -Wall.
1998-05-05 06:13:47 +00:00
alex
25b5448723
Permit double digit year values to be used in the next millenium.
1998-05-05 01:53:15 +00:00
rnordier
bb6e1ba0c0
Make compatible with standard what command:
...
Implement -s option
Keep going if a file is not found
Append ':' to printed filenames
Include backslash in terminal characters
Make exit status dependent on a match having been found
Revise manpage accordingly
1998-05-04 22:26:56 +00:00
bde
f701fbc7d5
Fixed races in `make -jN' using new yacc rules.
1998-05-04 20:09:06 +00:00
bde
0f56e51538
Simplified by using new yacc rules and by not generating y.tab.h.
1998-05-04 19:25:41 +00:00
bde
1819d65461
Simplified by using new yacc rules. The new lex rules can't be used
...
here, at least without ifdefs for the bootstrap.
1998-05-04 19:10:20 +00:00
bde
c1ea7ba30d
Simplified using new yacc rules and by not generating y.tab.h. The
...
lex source is still handled bogusly.
1998-05-04 18:40:18 +00:00
steve
33ffab8aa4
Be picky about the format of the commandline and cleanup
...
a warning related to qsort.
PR: 6420
Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
1998-05-03 23:22:37 +00:00
steve
a0bf7cf6b6
Add the year to the 'wtmp begins...' line.
...
PR: 6421
Submitted by: phk
1998-05-03 23:19:15 +00:00
steve
b62764e4ba
Remove (now) invalid .Xr trsp 8
...
PR: 6494
Submitted by: Don Morrison <dmorrisn@u.washington.edu>
1998-05-03 21:34:34 +00:00
peter
d835322e55
Update for bind-8
1998-05-03 05:16:58 +00:00
dfr
f28fdede6f
Add ELF support.
1998-05-01 08:40:11 +00:00
peter
4535454511
*blush*, typo during last minute editing..
1998-04-30 16:50:07 +00:00
peter
0534b5c829
Change euid while reading the user's .login_cap file in case the homedir
...
is on a NFS partion without root read access. Also, flip euid again for
the duration of the chdir() to the homedir for the same reason.
PR: 5145
Submitted by: Joel.Faedi@esial.u-nancy.fr
Also tested by: A Joseph Koshy <koshy@india.hp.com>
1998-04-30 16:48:20 +00:00
ache
2c460ce94b
Use NL_CAT_LOCALE to activate LC_MESSAGES
1998-04-30 12:49:11 +00:00
ache
3462ea1e26
Add (unsigned char) cast to ctype macros
1998-04-30 10:31:38 +00:00
ache
854c44e14a
Make 'y' command 8bit clean
...
PR: 6458
1998-04-29 21:58:36 +00:00
imp
80f5545693
Use historically correct error message in some cases, optionally.
1998-04-28 05:08:10 +00:00
des
b7cdb32ea9
Check that user really typed "who am {I,i}", and that no stray
...
arguments are given.
Note that usage() and the manpage disagree...
PR: bin/6294
Suggested by: Ruslan Ermilov and Bruce Evans
Submitted by: Ruslan Ermilov (partly)
1998-04-26 19:10:51 +00:00
bde
ddb80fc7dd
Fixed `make -j9' by putting generated headers in ${SRCS}. Removed bogus
...
dependencies of generated .c files on generated headers (these made
`make -JN' work provided `depend' was made first). Sorted sources lists.
1998-04-26 16:31:14 +00:00
phk
13f19b6005
When all transformation rules to or from a suffix disappeared, make tries
...
to free the suffix. I think, it is a very strange idea. (Or, maybe, it is a
POSIX requirement?) And it is done incorrectly. Apparently, it even don't
update the list of known suffixes (but it is an other bug).
PR: 4254, 4692, 4783
Reviewed by: phk
Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
1998-04-26 09:44:48 +00:00
phk
188299fe30
fix ncal.1 grammar
...
PR: 6394
Reviewed by: phk
Submitted by: Josh Gilliam <josh@quick.net>
1998-04-26 06:21:29 +00:00
dg
abb0f6fda9
Output mbuf clusters as current/peak/max. Requires new kern.ipc.nmbclusters
...
sysctl variable (previously committed).
1998-04-24 04:30:27 +00:00
phk
d11d4df3a2
netstat truncates info in sockaddr* between kgetsa and p_sockaddr
...
by dereferencing pointer to smaller structure
PR: 5256
Reviewed by: phk
Submitted by: Gregory D. Moncreaff <moncrg@bt340707.res.ray.com>
1998-04-22 06:54:31 +00:00
eivind
2a80c88a1e
Add a forgotten 'static'.
1998-04-21 02:44:12 +00:00
eivind
c8cdab147c
Make brandelf test for known brands, and introduce a '-f' option to
...
bypass the testing.
Partially submitted by: Brian Feldman <green@feldman.dyn.ml.org>
1998-04-21 02:31:09 +00:00
joerg
41f2b5a06e
Define '\t' as a printable character, so it can be displayed on the
...
screen. isprint(3) doesn't do this, but isprt() apparently expected
this to be the case.
1998-04-20 13:37:29 +00:00
charnier
70fabc443b
Correctly operate on hardlink when source and destination are not on the same
...
device.
PR: bin/3158 (part 2)
1998-04-20 06:20:24 +00:00
phk
30a62a3f70
Like most Unices FreeBSD should have a larger tty field at least
...
as large as UT_LINESIZE (/usr/include/utmp.h). If the tty name is logged
with this size why isn't the w command reporting it?
(We should probably report the tty/cua prefix then as well ? /phk)
PR: 4187
Reviewed by: phk
Submitted by: Jorge M. Goncalves <ee96199@tom.fe.up.pt>
1998-04-19 18:32:01 +00:00
phk
6dffba718f
The current version of netstat does not print the interface
...
name for AF_LINK routing entries. This makes debugging
network problems more difficult.
PR: 4182
Reviewed by: phk
Submitted by: Craig Leres <leres@ee.lbl.gov>
1998-04-19 18:18:25 +00:00
phk
01f3719f2f
Ctags write to buffer beyond the end of it when the source file
...
doesn't end with '\n'. It brings segmentation fault.
PR: 4812
Reviewed by: phk
Submitted by: Shigio Yamaguchi <shigio@wafu.netgate.net>
1998-04-19 18:00:49 +00:00
phk
100f9b99a0
mt should report the compression status.
...
PR: 5276
Reviewed by: phk
Submitted by: Matt Dillon <dillon@best.net>
1998-04-19 17:28:14 +00:00
danny
fdf7addba7
PR: 4866
...
Submitted by: fenner
Make man page reflect reality.
1998-04-14 22:08:48 +00:00
peter
88d08c78f7
Add mktemp directory
1998-04-14 07:40:47 +00:00
peter
9996027f00
Bring in an old faithful tool I've been using for just over 4 years now
...
(originally on a different OS without mkstemp()), albeit somewhat
bashed and hacked into something that doesn't look too much like
the original any more. It should be upwardly compatable with
OpenBSD's mktemp(1) but does a couple of extra things.
I've taken OpenBSD's mktemp.1 man page and adapted it to suit.
1998-04-14 07:39:57 +00:00
phk
ced7ca4b35
Better SYNOPSIS
...
PR: 6294
Reviewed by: bde, phk
Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
1998-04-14 06:42:18 +00:00
phk
72bef97abd
add strings(1) to what(1) "SEE ALSO"
...
PR: 6289
Reviewed by: phk
Submitted by: Josh Gilliam <josh@quick.net>
1998-04-14 06:31:23 +00:00
steve
c056e50072
Document the use of sendmail options on the commandline.
...
PR: 4778
Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
1998-04-14 00:59:29 +00:00
steve
e7ef89f59e
Don't let secs variable wrap if <= 2.
...
PR: 6290
Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
1998-04-14 00:23:54 +00:00
peter
7c3222498a
Add a new -F flag which is a superset of -f. It will cause tail to
...
stat() the file being followed and do a close/reopen if the file has been
renamed and/or rotated. This is damn useful for leaving running on files
in /var/log when newsyslog(8) rotates them.
1998-04-06 16:13:49 +00:00
charnier
fe8f3a58ea
Prevent rdist from dumping core: do not free() pointer before using it.
...
Add rcsid. Document -D flag (debug mode). Remove unused includes.
PR:bin/3158 (part 1)
1998-04-06 06:18:32 +00:00
danny
4fb6c831df
PR: bin/6193
...
Submitted by: Max Euston <meuston@jmrodgers.com>
Make times between 0000-0059 and 1200-1259 show as 12:xx, not 0:xx
1998-04-01 21:34:10 +00:00
markm
ff4953fbcc
Rats. I was too fast here. Re-enable SUID mode for the non-Kerberos
...
case.
1998-03-26 19:43:06 +00:00
markm
37c04b1be1
Quite a while back KTH (who are the good folks who wrote our KerberosIV)
...
announced a K4 weakness with their rsh/rlogins. We were not put in any
danger by this, as we were not using KTH rlogin/rsh, but the patches
in themselves, had some good points. This lot means we can run our
rlogin without it being SUID root. Win win win. There are other KTH
cleanups as well.
1998-03-26 18:03:41 +00:00
markm
c99468d1f8
Remove unneeded crud.
1998-03-26 17:55:27 +00:00
eivind
0954aa00b4
Remove special global tags support; we don't do it that way anymore.
1998-03-26 16:12:14 +00:00
jb
021631b797
Ouch, that nm is aout which is not alpha-friendly. Make it i386
...
specific.
1998-03-24 01:43:45 +00:00
bde
d3106031d1
Ifdefed conditionally-unused variables.
1998-03-23 14:14:24 +00:00
charnier
409a50cddf
.Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.
1998-03-23 07:48:45 +00:00
charnier
a5e89829a6
Add rcsid. Sort #includes.
1998-03-23 07:47:31 +00:00
charnier
750ab90255
Add const to rcsid.
1998-03-23 07:46:23 +00:00
charnier
10361cb9b6
.Nm nice -> .Nm.
1998-03-23 07:45:40 +00:00
charnier
b56244b975
Add rcsid. Correct -Wall warning.
1998-03-23 07:41:49 +00:00
steve
a4f109814d
Reword using who.1 as a good example of where to start.
...
Submitted by: bde
1998-03-22 17:39:08 +00:00
jb
d85ca411dd
Remove a bunch of unsupported machines, and the 'other' case where
...
some subdirs were only processed for install and clean (which caused
builds to fail on alpha). Install and clean should always follow
SUBDIRS.
1998-03-22 08:55:28 +00:00
peter
d0a0b2bbfb
merge ppp-2.3.3 changes onto mainline
1998-03-21 20:47:53 +00:00
bde
d172708658
Honour -static in LDFLAGS.
...
Install using ${INSTALL}, not `install'. Install generated files using
${COPY}, not -c. Install using a single command when this is easy.
1998-03-21 12:51:44 +00:00
bde
e0eeac5f43
Don't use beforedepend to break things. The usual fix of putting
...
generated sources in SRCS breaks because compile_et uses an evil
include of one .c file in another. Use a worse fix. Perhaps
DPSRCS is useful after all.
Don't put *.y in SRCS. Put the generated file in SRCS instead.
This fixes incomplete dependencies (mkdep can't work on *.y).
Don't override the default .l.c rule. Just use LFLAGS.
Fixed some style bugs.
1998-03-20 16:21:39 +00:00
bde
0bb04ebbef
Updated MISSING list.
1998-03-20 12:34:21 +00:00
jb
de6bdd1c61
Some things only work on i386.
1998-03-13 19:41:06 +00:00
peter
e2f452734c
This commit was generated by cvs2svn to compensate for changes in r34448,
...
which included commits to RCS files with non-trunk default branches.
1998-03-10 05:20:58 +00:00
peter
c0166228ff
Import intial version of an a.out/elf tool wrapper/selector. It is
...
not active yet, just a work-in-progress.
1998-03-10 05:20:58 +00:00
jb
3993727e63
cksum does a 32-bit checksum, so it needs to use u_int32_t variables,
...
not u_long. With this change, cksum stops core dumping on alpha (not
a good sign!) and actually computes the same values as it does on i386.
1998-03-10 05:03:49 +00:00
ache
81b26c0896
Localize it
1998-03-08 20:56:43 +00:00
wosch
a301d87415
Change default temporary directory (TMPDIR) from /tmp to /var/tmp.
...
Mosts users seems to have a larger /var/tmp partition
than /tmp - IMHO silly but who cares?
1998-03-08 16:09:31 +00:00
wosch
583f1a9569
Improve shell variable substitution.
1998-03-08 15:28:37 +00:00
peter
7e266dccdf
Rewrite script as a select loop rather than as a twin reader/write process.
...
This allows simple logging of keys sent to a session (turned on with -k).
Also allow specifying the script file flush interval.
1998-03-08 14:19:18 +00:00
helbig
a436299d3c
Replaced by ncal
1998-03-08 09:19:48 +00:00
dyson
a620a26471
Support a couple of new "-s" stats.
1998-03-07 23:40:23 +00:00
ache
e4040eea6a
Prevent passwd locking database forever waiting for user input
...
Submitted by: Antti Kaipila <anttik@iki.fi>
1998-03-07 21:42:07 +00:00
jb
5f491ccf6e
Fix a #ifndef that became a #ifdef and changed the default
...
behaviour of rpcgen.
Noticed by: bde
1998-03-07 05:43:59 +00:00
bde
0909f3b755
Fixed `make -jN' for large N. Just put the generated file y.tab.h in
...
SRCS and add a dummy rule to create it. This and cleaning of yacc
output files should all be handled by bsd.prog.mk.
1998-03-06 14:25:45 +00:00
bde
c02d629c5f
Fixed `make -jN' for large N, as usual.
1998-03-06 14:02:04 +00:00
bde
f1bd1c1014
Fixed `make -jN' for large N. Just put all generated headers in SRCS.
1998-03-06 13:51:18 +00:00
steve
94eab23215
Fix a few minor typos and style nits.
...
PR: 5883
Submitted by: hnokubi@yyy.or.jp
1998-03-01 18:58:03 +00:00
alex
1823fa8509
Use .Nm rdist for second .Nm occurrence in synopsis.
1998-03-01 00:18:25 +00:00
alex
e3529c7a82
Use .Nm id' instead of
.Nm' for the synopsis lines.
...
PR: 5876
1998-02-28 21:37:54 +00:00
jraynard
3cc4dd5ef7
Don't assume sigset_t and int are equivalent.
1998-02-28 16:02:24 +00:00
msmith
4fc0ab87d7
Don't claim XMS isn't implemented (it is).
...
Attempt to explain the "X11 support not compiled in" diagnostic.
Submitted by: philip@rmit.edu.au (Philip Musumeci)
1998-02-26 07:53:02 +00:00
bde
9c834cd509
Added a prototype for a qsort comparision function and fixed the usual
...
type mismatch uncovered by this.
1998-02-25 02:29:58 +00:00
bde
bd4014b7c0
Fixed the usual type mismatch for a qsort comparison function.
1998-02-25 02:25:50 +00:00
bde
8f1b16e6cc
Fixed the usual type mismatch for a signal handling function.
1998-02-25 02:24:04 +00:00
steve
f49ad64cb5
Add a -p option which is the same as the -m option but provided
...
for SVR4 compatibility.
PR: 5826
1998-02-24 16:57:49 +00:00
msmith
f69cc96066
Add Back-Tab functionality. (Ie. shift-tab)
...
Submitted by: Randall Hopper <rhh@ct.picker.com>
1998-02-22 23:36:54 +00:00
jb
f9a4fc0fbc
Change a (defaulted) int arg to a long so that a cast from a pointer
...
doesn't throw anything away. I don't want to re-code the app, just
port it!
1998-02-20 19:59:59 +00:00
jb
10057ded6e
Add #include <string.h> to get prototypes. Note that this program
...
also has a local "string.h" which is included too.
1998-02-20 19:56:01 +00:00
jb
039ef0e89d
Add #include <string.h> to get prototypes.
1998-02-20 19:53:12 +00:00
jb
4fd64574bc
Add #include <stdlib.h> to get prototypes.
1998-02-20 19:50:10 +00:00
bde
3912a8fcc1
Don't create an unused obj directory.
1998-02-20 11:18:57 +00:00
jb
dca0537025
gcc wants to see long long variables passed to %q printf formats, so
...
cast to that instead of quad_t.
1998-02-20 05:11:42 +00:00
jb
46dfb7f7cd
time() needs a pointer to a time_t, but tv_sec in a timeval is a
...
long (yuk). So give time() what it wants and let the compiler
promote the variable when it is assigned to tv_sec.
1998-02-20 05:08:53 +00:00
jb
7295fb5707
localtime() needs a pointer to time_t which is not necessarily a long.
...
So use a time_t in the chdr structure so that no casts are required.
1998-02-20 05:01:05 +00:00
jb
eb649fea4a
Can't use ~0L to compare against a uint32. Use ~((uint32) 0) instead.
1998-02-20 04:57:33 +00:00
jb
bc76bfde94
Add #include <string.h> to get prototypes.
1998-02-20 04:54:00 +00:00
jb
01b0029e57
Initialise variable that gcc lies awake at night worrying about.
1998-02-20 04:50:50 +00:00
jb
7f92b62ee3
Add #include <string.h> to get prototypes.
1998-02-20 04:48:37 +00:00
jb
6d9d1ccd14
Replace incomplete malloc prototype with #include <stdlib.h>
...
to get the proper one.
1998-02-20 04:38:20 +00:00
jb
51f6e49462
Add #include <stdlib.h> to get prototype for malloc().
1998-02-20 04:34:08 +00:00
jb
0c290fd53e
Add #include <string.h> to get prototypes.
1998-02-20 04:33:03 +00:00
jb
78fe14dd30
Add #include <stdlib.h> to get prototype for malloc(). Without this,
...
the compiler assumes an int return. On alpha this is enough to ruin
ya day.
1998-02-20 04:21:46 +00:00
jb
07a1e093a1
Add #include <string.h> to get prototypes for functions that gcc
...
has builtin (and wants to know that the prototypes match).
1998-02-20 04:13:29 +00:00
wollman
929ade011c
Make it more convenient to query NICs other than InterNIC. Explain in the
...
man page what each database contains.
1998-02-19 19:07:50 +00:00
steve
1e009eea0e
Missing newline when euid != ruid.
...
PR: 5778
Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at>
1998-02-18 17:35:16 +00:00
jb
09f4c25713
Add #include <string.h> to get prototype for memcpy().
1998-02-15 04:15:47 +00:00
jb
e56ba0b4bd
gcc on alpha complains about nested comments. A comment in this
...
file referred to a path ending in "/*" which was reasonable to me,
but gcc wasn't so sure. So now the comment refers to a path ending in
"*".
1998-02-15 04:09:48 +00:00
steve
70962efd65
Cleanup code so that long lines to be quoted don't get truncated.
...
PR: 5679
Reviewed by: Bruce Evans <bde@zeta.org.au>
1998-02-14 15:38:29 +00:00
peter
5884281637
Fix top sorting of idle processes. top used p_cpticks as a tie-breaker
...
but that isn't suitable (it gets zeroed each second apparently).
PR: bin/4957
Submitted-by: Dan Nelson <dnelson@emsphone.com>
1998-02-14 13:34:59 +00:00
ache
4b75e9fb53
Fix very rare but dangerous bug:
...
for some DES passwords
crypt(real_password, salt)
is equal to
crypt("", salt);
It means that this user (and not only he) can login without
entering password at all, just pressing Return.
So if empty password entered and crypted password is not empty,
invalidate any crypt result by assigning ":"
1998-02-13 21:02:53 +00:00
bde
4358bb1ae6
Fixed a comment. The module size is (unfortunately) in K, but it is not
...
in pages.
1998-02-12 23:58:54 +00:00