Matthew Dillon
a4cc82665c
A feature to allow one to telnet to a unix domain socket.
...
Obtained from: Lyndon Nerenberg <lyndon@orthanc.ab.ca>
2001-05-23 22:47:16 +00:00
David E. O'Brien
f23466b9fd
Note that sys.mk is read before any other file (even Makefile)
2001-05-23 18:21:36 +00:00
Jim Pirzyk
4450124805
Changed 'blocks' to 'usage' because we may not be getting quotas from
...
a ufs filesystem and it may be reporting in K instead of 512b blocks.
This is true when using a vxfs filesystem (on a solaris box) for instance.
PR: bin/14545
Submitted by: Jim Pirzyk
Reviewed by: jkh
MFC after: 1 week
2001-05-23 17:12:09 +00:00
Thomas Gellekum
539fbbccc4
Update BIOS time.
...
Submitted by: Igor Serikov <bt@turtle.pangeatech.com>
2001-05-22 11:33:38 +00:00
Thomas Gellekum
55426b7d9e
Beautify debugging output.
2001-05-22 11:33:17 +00:00
Thomas Gellekum
d0cd0e62b4
Fix slice handling. Add 6 (`big' DOS partition) as a legal systemID.
2001-05-22 11:32:38 +00:00
Thomas Gellekum
72a9cf5eb8
Silence some debugging output when installing Borland's Turbo C.
2001-05-22 11:32:15 +00:00
Thomas Gellekum
02cefb1b5c
Fix boot order (really try A:, then C:, unless the `boot' option is
...
specified in .doscmdrc).
2001-05-22 11:31:39 +00:00
Thomas Gellekum
8784582c8a
Implement file truncation (DOS function 0x21, sub 0x40).
...
PR: 20925
Submitted by: Tatsuya Kudoh <cdr@cosmonet.org>
2001-05-22 11:31:08 +00:00
Thomas Gellekum
989884fab9
Correct typo to get DOS function 0x51 (get PSP) to work.
...
PR: 15547
Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
2001-05-22 11:30:22 +00:00
Thomas Gellekum
3bcc9f9ef8
DOS function 0x0a (buffered keyboard input) returned immediately.
...
PR: 15531
Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
2001-05-22 11:29:31 +00:00
Thomas Gellekum
ee17481fbe
Fix DOS function 4c (exit with return code).
...
PR: 15528
Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
2001-05-22 11:28:28 +00:00
Ruslan Ermilov
03773b9a81
mdoc(7) police: fix markup.
...
Submitted by: roam, ru
2001-05-22 07:05:39 +00:00
Eric Melville
a37b5e8e4c
Remove an accidentaly added extra blank line.
...
Approved by: murray
2001-05-22 06:20:27 +00:00
Guido van Rooij
5345e89b9d
Disable SIGHUP while getting the login name.
...
Reviewed by: security-officer
2001-05-21 20:19:59 +00:00
Ruslan Ermilov
a6882bcc15
Work around the side effect of src/include/Makefile,v 1.137 changes.
...
(The proper fix is to add missing #include directives.)
2001-05-21 17:06:26 +00:00
Dima Dorfman
387acdd9ff
Print commas in the group list in user(). current() already did this.
...
Reviewed by: ru, sheldonh
Inspired by: OpenBSD, NetBSD
2001-05-20 20:32:13 +00:00
Kris Kennaway
bfa27aef55
Silence WARNS=2 and BDECFLAGS on alpha and i386
...
MFC after: 1 week
2001-05-20 06:21:12 +00:00
Kris Kennaway
8d5c7b843f
Silence WARNS=2 and BDECFLAGS on alpha and i386
...
MFC after: 1 week
2001-05-20 06:18:37 +00:00
Kris Kennaway
81d50432af
Silence WARNS=2 and BDECFLAGS on alpha and i386
...
MFC After: 1 week
2001-05-20 06:16:53 +00:00
Kris Kennaway
1a93d71ebc
This passes WARNS=2 on alpha and i386
2001-05-20 06:15:09 +00:00
Maxim Sobolev
d02ca551d3
Move scrshot(1) functionality into vidcontrol(1).
...
Suggested by: many
Not objected to by: nik (scrshot co-author)
2001-05-19 06:47:36 +00:00
Gregory Neil Shapiro
4ba4d3873a
String operations could silently truncate long strings, leaving the output
...
corrupted. Mark's patch fixes this be removing the MAXTOK limitation on
substring operations and allowing the putback buffer size to be the limiting
factor. If the putback buffer size if reached, m4 gives an error instead of
silently truncating the string.
PR: bin/26619
Submitted by: Mark Peek <mark-ml@whistle.com>
MFC after: 5 days
2001-05-18 18:35:34 +00:00
Nik Clayton
34da77aac7
I appear to be badly out of practice. Remember to flush the output stream
...
when mixing printf and write.
2001-05-18 14:07:51 +00:00
Ruslan Ermilov
3ab9a9d0e0
Removed -I${.CURDIR}/.../sys from CFLAGS.
2001-05-18 13:41:42 +00:00
Ruslan Ermilov
2862006272
Remove GCC-ism (-Wall).
2001-05-18 10:40:34 +00:00
Ruslan Ermilov
8275cc7fb1
mdoc(7) police: Fix markup and spelling.
2001-05-18 10:39:41 +00:00
Ruslan Ermilov
94ccf5741c
Don't leak memory when compiling text following the a',
c' or `i' command.
...
Testcase:
echo FOO | sed "/FOO/c\\
`jot -b 'aaaa\' 500`"
Submitted by: Max Khon <fjoe@newst.net>
2001-05-18 09:48:17 +00:00
Nik Clayton
952e162265
Add scrshot to the i386 specific section. If someone can test this on the
...
Alpha I'd appreciate it.
2001-05-18 09:06:00 +00:00
Maxim Sobolev
6649ab78e1
By default build make(1) as a static binary. It costs only 100k of additional
...
disk space, buf provides measureable speed increase for make-intensive
operations, such as pkg_version(1), `make world' and so on.
MFC after: 1 week
2001-05-18 09:05:56 +00:00
Nik Clayton
882e875ed2
New scrshot utility, using the CONS_SCRSHOT ioctl. Usage is
...
scrshot /dev/ttyv0 > shot.scr
See the shot2{txt,png} utilities (soon to be) in the ports collection.
Reviewed by: -arch
2001-05-18 09:00:51 +00:00
David E. O'Brien
5de20e57b2
Missed a few things.
2001-05-18 05:46:40 +00:00
David E. O'Brien
91a72a92d6
In a word -- style(9).
2001-05-18 05:33:42 +00:00
David E. O'Brien
078ae588ab
Add the "prompt" and "passwd_prompt" fields to /etc/login.conf,
...
which makes lgoin more like getty in its ability to be configured.
Submitted by: tlambert (code only)
2001-05-18 04:55:16 +00:00
David E. O'Brien
2f8b721157
Fix the rcsid's.
2001-05-17 09:38:49 +00:00
Eric Melville
40c65ba9c7
Check for the expiration of an account and its password in the proper
...
order.
Reviewed by: -audit (silence)
Approved by: murray
Obtained from: OpenBSD
MFC after: 5 days
2001-05-17 03:10:04 +00:00
Ruslan Ermilov
bfd1220842
mdoc(7) police: fix markup.
2001-05-16 13:53:19 +00:00
Poul-Henning Kamp
49a4598b61
Fix an array which was too small.
...
PR: 27380
Submitted by: Samuel Greear <sgreear@vsni.com>
2001-05-16 11:13:16 +00:00
Ruslan Ermilov
7fa247d086
mdoc(7) police: fix markup (demonstrates new -xwidth modifier).
2001-05-16 10:18:20 +00:00
Dima Dorfman
8d904f1537
Add a -J replstr option that allows the user to tell xargs to insert
...
the data read from standard input at a specific point in the command
line arguments rather than at the end.
Submitted by: dd, gad
Reviewed by: gad, brian
2001-05-15 00:31:19 +00:00
Eric Melville
e0ce2384ac
Add some gravitational values.
...
Approved by: murray
2001-05-12 21:21:38 +00:00
Dima Dorfman
43d665c0d1
Document the -h option.
2001-05-11 23:53:46 +00:00
Mike Heffner
afa3a100e9
Allow mail(1) to be able to read Eudora mailboxes by transforming
...
lines that end in <CR><LF> to just <LF>.
Reviewed by: imp
Obtained from: OpenBSD
2001-05-11 03:07:11 +00:00
Sheldon Hearn
0a39318247
Handle sbsize as a size, not a number.
...
Submitted by: Paul Herman <pherman@frenchfries.net>
2001-05-10 17:15:06 +00:00
David E. O'Brien
af32b80c65
Tell the user what group they must be in to su to root.
...
Submitted by: Seth Kingsley <sethk@osd.bsdi.com>
2001-05-10 07:37:25 +00:00
Ruslan Ermilov
f12d6e12ec
mdoc(7) police: fix markup.
2001-05-10 07:29:35 +00:00
Jens Schweikhardt
9478bbeae3
Here comes the forgotten C source, oopsy.
...
Turned the shell script into a binary fixing several minor buglets.
Mention _POSIX_SOURCE feature test macro in man page.
PR: bin/19337
Submitted by: schweikh
Reviewed by: joerg, bde
MFC after: 2 weeks
2001-05-08 20:27:14 +00:00
Jens Schweikhardt
3f16089799
Turned the shell script into a binary fixing several minor buglets.
...
Mention _POSIX_SOURCE feature test macro in man page.
PR: bin/19337
Submitted by: myself way back when I was a nobody :-) (schweikh)
Reviewed by: joerg, bde
MFC after: 2 weeks
2001-05-08 19:47:01 +00:00
Kris Kennaway
a47f98edb4
When opening the file to broadcast, do it with the user's gid, not the
...
egid (tty).
Obtained from: OpenBSD
Submitted by: Maxime Henrion <mux@qualys.com>
Reviewed by: imp
2001-05-08 11:11:42 +00:00
Ruslan Ermilov
b940897514
Restore printing of routes cloned from a RTF_CLONING parent
...
(e.g., ARP table entries) with the default routing display.
PR: bin/26970
Reviewed by: wollman
MFC after: 3 days
2001-05-07 12:29:36 +00:00