Commit Graph

2678 Commits

Author SHA1 Message Date
christos
60315cbc81 Does not need -lcompat 1998-02-02 14:10:45 +00:00
mrg
7b983ca6d5 merge lite2, sans getvfsbyname in functions.c (waiting on libc) 1998-02-02 14:02:06 +00:00
christos
26d6865f8e Remove __GNUC__ ifdef, and make usage string consistent with other programs. 1998-01-31 20:42:07 +00:00
frueauf
feff15ad4a s/_offsetof/offsetof and include stddef.h to reflect recent
change in sys/netiso/iso.h.
1998-01-29 09:11:21 +00:00
kleink
a2d5407369 .Nm usage police; from NAKAJIMA Yoshihiro in PR bin/4897. 1998-01-28 16:42:55 +00:00
kleink
226c774dba * When opening a file fails, just issue a warning; convert to appropriate
use of the err(3) function; from NAKAJIMA Yoshihiro in PR bin/4870.
* Initialize native locale environment on startup.
* Since strtol() is used to convert the number of lines to be printed,
  make linecnt and assorted variables `long's, and perform range checks
  on it.
1998-01-27 17:00:19 +00:00
lukem
74576ae63b fix richard o'keefe's email address (will have to change for his new job, but the one i've used is at least valid...) 1998-01-23 23:05:34 +00:00
lukem
33a9f67f94 enable el_parse for unknown commands (so editrc(5) commands can be used directly 1998-01-21 11:14:34 +00:00
mycroft
7eb2b1553a Fix the old-style date parsing code as well. 1998-01-21 00:48:44 +00:00
mycroft
85876e6b32 Minor code rearrangement, and allow less of the time stamp to be specified. 1998-01-21 00:24:46 +00:00
mycroft
651689eea9 Fix a typo. 1998-01-20 21:18:25 +00:00
mycroft
95c66d2a0a Pull in tzfile.h. 1998-01-20 21:04:04 +00:00
mycroft
eeec814a41 Use TM_YEAR_BASE to adjust tm_year, not 1900. 1998-01-20 20:53:32 +00:00
lukem
fa21aaa9f5 cosmetic mods to ptransfer() (which displays transfer statistics for
SIGINFO and at the end of the transfer):
* display time taken as [[x days?] hh:]mm:ss
* display ETA as [hh:]mm:ss
* print ' (stalled)' if the transfer is stalled
1998-01-20 04:39:34 +00:00
lukem
6ab4bdf006 define MAX_IN_PORT_T and use instead of USHRT_MAX. suggested by cgd@netbsd.org 1998-01-18 22:09:39 +00:00
lukem
7ee412ebee * ensure buffer for username is initialised, so ^D on username prompt
doesn't use garbage for the username.  from "Soren S. Jorvang" <soren@t.dk>
  in [bin/4559]
* use in_port_t for ports, and USHRT_MAX instead of 0xffff
  (from millert@openbsd.org)
* use `NULL' instead of `(.... *)0' where appropriate.
1998-01-18 14:23:33 +00:00
hubertf
567c3f3e41 Also save groups before chdir($HOME). This fixes a problem pointed
out by Bernd Ernesti with /home/lusers/joe (being uid joe, gid lusers),
with /home/lusers mode 750 and owner root:lusers.
1998-01-16 00:31:53 +00:00
cgd
377a82ec74 fgetc() returns 'int'. (char)EOF != EOF on unsigned-char machines. 1998-01-15 22:36:41 +00:00
mikel
83d4f0d268 make usage string match manpage 1998-01-12 08:11:19 +00:00
perry
c9eb40b69e Commit a fix to the problem that nvi was reporting a completely silly
error message when TERM is not set. This might or might not be a
reasonable permanent fix -- I'm waiting to hear back from Keith Bostic.

Problem was reported in pr-3816 by Erik Fair.
1998-01-10 23:04:11 +00:00
enami
d9fba75667 .Nm in SYNOPSIS except first one should be followed by "". 1998-01-10 08:29:55 +00:00
perry
3fe138c146 RCS Id Police. 1998-01-09 08:03:16 +00:00
lukem
11cfadcaa1 if INP_ANONPORT is set in the pcb, don't getservbyport the local port,
as the service name is irrelevent. from freebsd
1998-01-07 22:55:07 +00:00
thorpej
974b59d07c Happy new year! 1998-01-07 00:41:43 +00:00
cgd
10cc9f3b70 RCS Id police 1998-01-05 22:00:34 +00:00
perry
c44d4effcd RCSID Police. 1998-01-05 05:15:43 +00:00
perry
a2c607302b Slightly better RCS keyword munging 1998-01-05 05:15:18 +00:00
thorpej
faa8ffb044 Revive the -f option: report fork statistics. 1998-01-04 03:59:04 +00:00
thorpej
0af223dbf1 Pull in prototypes, RCS IDs, and make this safe for vfork(). 1997-12-31 06:56:04 +00:00
thorpej
cd509e6837 Prototype wwterminfoinit() and wwterminfoend(). 1997-12-31 06:55:16 +00:00
thorpej
d616cbff44 Change an exit() -> _exit(), so that it's safe for vfork(). 1997-12-31 06:13:24 +00:00
thorpej
c85905a814 Change a couple of exit()s to _exit(), so that they're safe for vfork(). 1997-12-31 06:12:20 +00:00
thorpej
f04b8efed3 Change an exit() to _exit(), so that it's safe for vfork(). 1997-12-31 06:06:12 +00:00
thorpej
d32f706973 Change an err() to a warn()/_exit(), so that it's safe for vfork(), and
fix the error message that's displayed if the vfork() fails.
1997-12-31 05:53:45 +00:00
thorpej
e00e57ff80 Delete extra RCS ID. 1997-12-30 22:31:17 +00:00
cgd
86cd94fb5a fix an inconsistency between signed- and unsigned-char machines:
make sure that pushed-back 0xff character isn't accidentally
interpreted as an EOF because of sign extension when chars were being
assigned to pbents.  (signed-char machines lost.)  To do this, make
putback() and pbstr() operate only on unsigned chars, and add a
putbackeof() function to do the obvious thing when necessary.
1997-12-29 19:52:55 +00:00
ross
4b2ac6c053 Change = to == in exit return code expression. From Chris Engebretson. 1997-12-23 18:21:34 +00:00
christos
b1d0822b6d add -Idirectory option to seach for .so files. 1997-12-21 17:04:16 +00:00
christos
1b853377db Make this work with obj dirs 1997-12-21 15:48:30 +00:00
christos
6cedf18a50 Work with obj directories 1997-12-21 15:46:33 +00:00
mellon
851bf413cd Only turn off the O_NONBLOCK flag if DC flag is set. 1997-12-17 17:09:33 +00:00
mellon
e0a22c4659 Turn off the O_NONBLOCK flag after CLOCAL is set. 1997-12-17 16:56:30 +00:00
thorpej
a9f58b2ca8 Print the connections dropped due to excessive persist timeouts. 1997-12-17 06:17:26 +00:00
thorpej
d673bd5c41 Nuke "delayed window updates" statistic. 1997-12-13 21:03:46 +00:00
gwr
61958ba2d9 Kill the "progress bar" stuff when compiled with -DSMALL
because progressmeter() uses floats which are unwanted
when this is built under src/distrib/utils/x_ftp
(Maybe -DNO_FLOAT would be better?)
1997-12-12 23:34:56 +00:00
thorpej
76de9752dd Print window updates delayed (piggybacked on delayed ACKs). 1997-12-11 07:00:01 +00:00
thorpej
4047416683 Report connections drained due to memory shortage. 1997-12-10 07:26:02 +00:00
mrg
25b87a361a use MAP_PRIVATE|MAP_FILE rather than "0" 1997-12-09 10:59:54 +00:00
bad
d78ba35458 Fix a pasto that would cause coredumps on exit when the mailbox has been
changed and new mail has arrived in the mean time.  (PR bin/4644 Ken Wellsch)
While I'm here, fix typo in comment.
1997-12-07 21:27:10 +00:00
msaitoh
7b5f411e4a Don't print NULL characters on "eject -n". 1997-12-07 19:04:36 +00:00