Mike Smith
fce0b07815
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
Bruce Evans
03ceff03f6
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
Bruce Evans
3cb5ecc8c2
Fixed the usual type mismatch for a qsort comparison function.
1998-02-25 02:25:50 +00:00
Bruce Evans
92ddd8c652
Fixed the usual type mismatch for a signal handling function.
1998-02-25 02:24:04 +00:00
Steve Price
7db98de957
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
Mike Smith
86740c3409
Add Back-Tab functionality. (Ie. shift-tab)
...
Submitted by: Randall Hopper <rhh@ct.picker.com>
1998-02-22 23:36:54 +00:00
John Birrell
f2af83ab9e
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
John Birrell
9ddaa53328
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
John Birrell
e4fcd28b7f
Add #include <string.h> to get prototypes.
1998-02-20 19:53:12 +00:00
John Birrell
58a76373c2
Add #include <stdlib.h> to get prototypes.
1998-02-20 19:50:10 +00:00
Bruce Evans
e5eb0d8db1
Don't create an unused obj directory.
1998-02-20 11:18:57 +00:00
John Birrell
5362bb64c5
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
John Birrell
2ffc763234
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
John Birrell
56d73492e1
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
John Birrell
ae25b713c6
Can't use ~0L to compare against a uint32. Use ~((uint32) 0) instead.
1998-02-20 04:57:33 +00:00
John Birrell
2a0373c39a
Add #include <string.h> to get prototypes.
1998-02-20 04:54:00 +00:00
John Birrell
b212561dcb
Initialise variable that gcc lies awake at night worrying about.
1998-02-20 04:50:50 +00:00
John Birrell
32744e40cd
Add #include <string.h> to get prototypes.
1998-02-20 04:48:37 +00:00
John Birrell
a8b1e5be58
Replace incomplete malloc prototype with #include <stdlib.h>
...
to get the proper one.
1998-02-20 04:38:20 +00:00
John Birrell
9c26f2aeaf
Add #include <stdlib.h> to get prototype for malloc().
1998-02-20 04:34:08 +00:00
John Birrell
5b116430fc
Add #include <string.h> to get prototypes.
1998-02-20 04:33:03 +00:00
John Birrell
c93bd87aba
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
John Birrell
6216c30a1c
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
Garrett Wollman
a00fe97d5a
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 Price
a81b76b3e8
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
John Birrell
1ecfd4575d
Add #include <string.h> to get prototype for memcpy().
1998-02-15 04:15:47 +00:00
John Birrell
90836d4e24
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 Price
3eb7ce85b1
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 Wemm
373e363e34
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
Andrey A. Chernov
c8b701a4af
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
Bruce Evans
5f61dae347
Fixed a comment. The module size is (unfortunately) in K, but it is not
...
in pages.
1998-02-12 23:58:54 +00:00
Steve Price
8583a41b1e
Update to reflect the current Jewish calendar.
...
PR: 5683
Submitted by: jgrosch@MooseRiver.com
1998-02-08 22:57:59 +00:00
Alexander Langer
c32bb532e4
locate(1) is no longer started by /etc/weekly.
1998-02-07 05:30:14 +00:00
Guido van Rooij
e28be89140
Reset SGINT and SIGQUIT handling to default when asking for passwords.
...
Otherwise, when pressing the INT ke at the password prompt, the password
will be displayed. Now login will be killed.
Probably the same will have to be done for the LOGIN_CAP_AUTH case.
I have not done that.
Reviewed by: Joerg Wunsch
1998-02-05 18:37:02 +00:00
Philippe Charnier
fb9d8a6886
Convert to mdoc. Move Id to the top.
1998-02-04 07:29:20 +00:00
Paul Traina
5099706acd
Don't print garbage when user enters EOF at name prompt.
...
PR: 5565
Submitted by: Jens Schweikhardt
1998-02-03 20:53:25 +00:00
Chris Timmons
2801a0cd47
PR: bin/5529
...
Submitted by: Shigio Yamaguchi <shigio@wafu.netgate.net>
Do not misinterpret file names with a digit in the 2nd column as
a tab stop specification.
1998-02-02 07:10:59 +00:00
Philippe Charnier
be6eb0fb17
Convert to mdoc format. Header -> Id.
1998-02-02 07:09:36 +00:00
Wolfgang Helbig
8927843705
Search for proper executables, ignore directories
1998-02-01 20:01:29 +00:00
Steve Price
e258cf49b3
ulimit does not have its own manpage as it is a shell builtin.
...
PR: 5582
Submitted by: Craig Leres <leres@ee.lbl.gov>
1998-02-01 06:19:56 +00:00
Philippe Charnier
76cd8d66fe
Add rcsid. RU#. Use err(3) instead of local redefinition. Convert man page to
...
mdoc format. Add usage(). Remove rcs $ Log $ -> use cvs log instead.
1998-01-28 07:36:25 +00:00
Wolfram Schneider
dfe64147d2
Add two new options:
...
-i Do not overwrite files.
-s Do not strip output pathname to base filename. By default uuencode
deletes any prefix ending with the last slash '/' for security
purpose.
1998-01-25 19:26:05 +00:00
Steve Price
9e7a1d01b0
Use -literal to make for a more pleasing list.
...
PR: 5547
Submitted by: Matthew Hunt <mph@pobox.com>
1998-01-25 16:38:42 +00:00
John Birrell
b0ed821446
Add a sysmk -> /dev/null definition ready for a coming change to
...
makesyscalls.sh.
1998-01-25 09:09:48 +00:00
Steve Price
86fb910326
Random data is no longer based on the time of day, rather the random
...
number device. Also clearly state that sequential data is the default.
PR: 5553
Submitted by: Jonathan Hanna <pangolin@rogers.wave.ca>
1998-01-24 03:32:33 +00:00
Mike Smith
f5d7bf3c0b
Printers under FreeBSD are /dev/lpt*
1998-01-22 02:44:54 +00:00
Jonathan Lemon
462232c223
Fix DOS keyboard handling to use standard pointer addresses instead of
...
an index into a private array.
Submitted by: Randall Hopper <rhh@ct.picker.com>
1998-01-21 21:37:02 +00:00
Bruce Evans
8339e4f43d
Converted to Lite2 mount interface - don't use numeric filesystem
...
types. The NetBSD compatibility cruft was more correct for -current
than FreeBSD's own code. It just used NetBSD #defines instead of
string literals for the filesystem names. NetBSD's MOUNT_UFS is
"ffs", so using a literal "ufs" gives wrong results, but this is
unimportant, especially for bootstrapping.
Fixed style bugs in trymmap().
Fixed some disordered declarations.
1998-01-20 13:52:32 +00:00
Bruce Evans
d63b9ba46a
Converted to Lite2 mount interface - decide filesystem types by name
...
instead of by number.
1998-01-20 12:53:43 +00:00
Bruce Evans
eae79dd1c0
Merged from Lite2. This was mostly already done, mostly indirectly
...
via wollman's changes in rev.1.2 being adopted by Lite2 and the
nfsv3 changes in rev.1.3 being adopted by both FreeBSD and Lite2.
We were only missing lookup of the type number for nfs (MOUNT_NFS
doesn't exist in Lite2).
1998-01-20 12:27:38 +00:00