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
hubertf
5dda445628
Give up special privileges before chdir($HOME) and access(.hushlogin),
...
fixing PR 4636 by myself with some help from Jason Thorpe.
1997-12-05 08:29:39 +00:00
cgd
e4d749962a
add a typedef which describes elements in the push-back buffer. Make
...
that typedef 'short'. 'char' (which was previously used) because char
may be unsigned and ((char)EOF) != EOF if that is the case. That was
causing the (char)EOF (0xff) pushed back in main to be interepreted as
a character, and, in some cases, to be written to the output. 'short'
was used rather than 'signed char' because if the latter is used,
0xff characters in the input would confuse m4. (No point in introducing
(more?) 8-bit lossage.)
1997-12-02 22:34:00 +00:00
chuck
6bfc234bf3
use MAP_PRIVATE for mmap flags, not the non-standard MAP_FILE (aka 0)
1997-12-01 21:11:39 +00:00
tv
070c43b239
accept -c silently with -d; fixes GNU autoconf (among others) that assume
...
you can use -c with -d
...but this is NOT a reason for those of you making install procedures
to think this behaviour is `correct'... <grin>
1997-11-30 22:20:00 +00:00
bad
a444ae6099
Work around gcc -Wuninitialized lossage.
1997-11-26 22:41:36 +00:00
tv
b6573fcec0
Add xrefs to new hosts.equiv(5)/rhosts(5) man page.
1997-11-26 18:06:51 +00:00
bad
2f2497e5de
Detect more errors while manipulating mailbox files and tell the user
...
about them. Don't truncate mailbox files when a write error has occured.
1997-11-25 17:58:15 +00:00
bad
6a203aafce
Do not propagate local pipe and file address that are marked for deletion
...
into the mail header.
1997-11-25 17:55:52 +00:00
lukem
2585608506
remove extraneous newline in remote finger output. (found by chuck cranor)
1997-11-24 22:03:48 +00:00
tv
13b09649c2
When man was "fixed" to chdir() to the man root as historical man does,
...
it broke the -M option on relative paths (the chdir works as it should,
but the relative man page path is still used whole in nroff). This
repairs the situation by chopping the full pathname in half--one part
for the chdir, one part for the filename.
1997-11-23 23:24:14 +00:00
mrg
04abeda6db
fix compile warnings on the alpha.
1997-11-23 04:03:04 +00:00
augustss
a26c93f4ed
Increase maximum line length. (Prompted by trying to use the FreeBSD
...
ghostscript package.)
1997-11-22 22:27:12 +00:00
lukem
6b9d2f6aae
* fix a long-term annoyance with tip: if raisechar or force are set to
...
"", (usually in .tiprc with lines like `raisechar='), don't activate
feature if NUL (\0) is the received character
* on a related note, don't barf if the following variables are defined
to "": disconnect, log, parity, record
1997-11-22 08:29:58 +00:00
lukem
e37283e126
WARNSify, KNFify, using ANSI string functions, cleanup .Nm usage
1997-11-22 07:28:39 +00:00
tv
d18b50bbf4
Added test to allow fallback to local password database if YP passwd map
...
is not found. Fixes both PRs 4142 and 4557 (4558). Still fails properly
if user is in YP and not in local database. Man page fixed to reflect
current logic behind falling back, changed since YP was made default some
time ago.
1997-11-21 20:28:33 +00:00
mrg
1c3610b684
include string.h for the alpha.
1997-11-21 08:49:12 +00:00
lukem
ea345868fa
* WARNSify, KNFify
...
* deprecate register
* replace berkeley string funcs with ansi equivs
* use getopt rather than home grown cruft
* use foo(char *, ...) rather than foo(char *, long, long, long, [long, ...])
1997-11-21 08:35:41 +00:00
msaitoh
bc200ff3f1
sort xrefs
1997-11-15 20:55:51 +00:00
msaitoh
6783bd9fb9
Add ".Sh DIAGNOSTICS"
1997-11-15 20:16:16 +00:00
msaitoh
400f289b1d
fix typo
1997-11-15 19:38:48 +00:00
phil
fe8c89a497
Do screen refresh correctly.
1997-11-14 18:27:17 +00:00
phil
24a09a1420
Make ^L redisplay the screen.
1997-11-14 16:31:45 +00:00
mrg
81a056bc2e
handle strings longer than 256 bytes. should do this with fgetln()...but
...
fgetln() doesn't nul terminate, and thus requires malloc/copy for each
interation (actually, *two* for whatis(1)).
1997-11-12 00:04:49 +00:00
mrg
9f84449ae5
add missing .Nm sections.
1997-11-11 14:39:59 +00:00
scottr
b2fa1adcaf
Fix tyop in last commit.
1997-11-11 00:13:10 +00:00
fair
225f748158
build fdformat on sparc per PR#4459
1997-11-10 09:06:48 +00:00
lukem
a6ebb2c7b0
sort SEE ALSO by section
1997-11-09 23:03:06 +00:00
lukem
09bb14e8a7
minor cleanup
1997-11-09 23:01:47 +00:00
phil
1ec08fd982
Add code for handling NULL return from initscr(). Added "ERROR ACTION"
...
for user code for above error.
1997-11-09 20:59:11 +00:00
lukem
828d282354
cosmetic change
1997-11-08 09:37:44 +00:00
lukem
54bdc1acab
remove WARNS?=1, cleanup .Nm usage
1997-11-08 09:34:23 +00:00
lukem
8640f5d0af
getopt returns -1 not EOF, use memmove instead of bcopy
1997-11-08 09:33:15 +00:00
lukem
b18fa5eb84
remove WARNS?=1
1997-11-08 09:31:04 +00:00
mrg
6bb686b3be
print TNF copyright, like the kernel does.
1997-11-07 20:32:05 +00:00
mikel
77053262a2
add missing newline to usage string; from Manuel Bouyer in PR 4442
1997-11-07 09:01:29 +00:00