ache
e27bac84c5
Add #define's for port "none" and "auto"
...
Now port ommiting is equal to port "none" not to port 0
1997-03-26 15:19:55 +00:00
peter
2fe1fc26e5
- update MNT_* flags to match lite2 properly. get rid of old #if 0 flags
...
that are gone, add new missing ones.
- don't dereference kernel relative pointers in user space for() loops, it
doesn't work real well.
1997-03-25 15:48:14 +00:00
jkh
adeb640108
YAMF22
1997-03-25 03:12:59 +00:00
ache
75276ab04b
Print negative values only for two cases used
...
in config for iobase: -1 (auto) and -2 (none)
Other values are printed as big port numbers
1997-03-25 02:54:34 +00:00
ache
a28593bb74
Fix iobase printing for autodetect and none cases
...
(negative numbers was printed as very big ports)
1997-03-25 02:35:12 +00:00
ache
b2a735bded
Use srandomdev() to initialize RNG
1997-03-24 16:01:46 +00:00
ache
1941fcfcfb
Initialize RNG only once
...
Use srandomdev() now
1997-03-24 15:09:41 +00:00
imp
3c8c5177a0
Fix small race window when creating portal socket.
...
Obtained from: OpenBSD
1997-03-24 05:53:12 +00:00
joerg
970092985a
Make the argument handling for select() less bogus. Also, move the
...
amq service from UDP to TCP for better reliability.
1997-03-22 23:12:08 +00:00
jkh
390c4419c6
YAMF22
1997-03-22 15:20:51 +00:00
jkh
974f7004ae
Add Iceland.
1997-03-21 05:18:20 +00:00
davidn
352dc5651f
Fix possible (not stack) overflow from -d <dir> commandline option.
1997-03-20 03:35:06 +00:00
jkh
c35ee66e26
YAMF22
1997-03-19 10:09:46 +00:00
jkh
d3a9bd8686
Some of my pending merge changes, Paul Traina's more flexible config
...
file loading code.
Submitted by: pst
1997-03-19 10:09:28 +00:00
bde
5350fb0d8b
Removed old bogus prerequisite <sys/select.h>. Cleaned up #include mess.
1997-03-19 04:44:07 +00:00
bde
3d67153315
Fixed missing function types in synopsis.
1997-03-19 00:32:42 +00:00
mpp
0393635b91
Be consistent with the handbook and the release notes and specify all
...
mailing list addresses as freebsd-*@FreeBSD.org .
Pointed out by: Kenneth R. Westback <krw@tcn.net>
1997-03-18 07:02:32 +00:00
ache
15ac7eb201
Convert srandom() arg cast to Lite2 style
1997-03-17 14:47:56 +00:00
mpp
1080e3f7fd
Typo police.
...
Partially obtained from: NetBSD PR# 3333
1997-03-16 07:12:20 +00:00
jkh
324734834f
YAMF22
1997-03-15 18:01:45 +00:00
jkh
39ed7a969f
Increase the size of the email address field.
...
Requested-By: joerg
1997-03-15 16:24:32 +00:00
peter
da35a9d7c3
Tone down the paranoia a bit in from the previous commit. setusercontext()
...
automatically Does The Right Thing when lc == NULL, which just happens to
be what the extra code in cron was trying to do. Simplify.
1997-03-14 14:45:30 +00:00
peter
8abbe02b7e
Activate HASSETUSERCONTEXT to set resource limits while delivering
...
to pipes in .forward files, but with a slight bugfix to the code.
1997-03-14 14:26:35 +00:00
peter
8e1c208b61
For some reason, the old login class code didn't seem to be working here.
...
I suspect it was because the child exec code's parent was doing the
initial lookups, then forking, then doing other things (possibly trashing
the static data in the getpw*() buffer), then attempting to dereference
*pwd and *lc. Also, no error checking appeared to be done - I've allowed
it to fall back to the old "become user" code on critical failure rather than
risk running a user's cron jobs as root.
1997-03-14 13:48:04 +00:00
jkh
9ef8b7ee03
o Remove obsolete references in XFree86 menu
...
o Add version information to registration (suggested by David)
1997-03-14 05:17:12 +00:00
joerg
b66347858f
Save and restore the state of the variable Initialized inside die().
...
Otherwise, the shutdown message will print out with 15 NUL bytes in
front, due to a missing timestamp.
1997-03-14 01:27:02 +00:00
brian
a7c87d03a0
Oops - forgot to document the new -HUP action.
...
This should make 2.2 if the HUP stuff (earlier today) does.
1997-03-13 21:39:41 +00:00
brian
d14412c59d
Closes pr 2711
...
Fix -background option. Parent returns after the line is established
(or not established).
Definitely a candidate for 2.2
1997-03-13 21:22:09 +00:00
bde
fa9f3fde24
Remove old output file, if any, before creating the output file, in
...
case the file is a stale link.
Reviewed by: wollman
1997-03-13 18:56:18 +00:00
brian
ccae52be0e
Requested by: Harlan Stenn <Harlan.Stenn@pfcs.com>
...
Accept SIGHUP as a "re-open logfile" signal. As ppp
doesn't set it's serial line to it's controlling terminal,
we can use HUP :)
This is a candidate for 2.2. The log.[ch] changes won't
conflict, but the main.c changes will. We just want to change the
kill(...,SIGHUP) to a SIGTERM and change the signal(SIGHUP,Hangup)
to a pending_signal(SIGHUP,LogReOpen).
1997-03-13 14:53:55 +00:00
brian
db1507dc21
Reviewed by: ache@freebsd.org
...
These changes should fix the signal "problems" in ppp.
The signal changes should really be put into 2.2 too !
The following patches should do it. There were some other
changes made by Andrey recently that havn't been brought
into 2.2, it may be worth doing them now.
1997-03-13 12:45:35 +00:00
roberto
d6216e2c0e
1. change tty handling from sgttyb to termios,
...
2. fix a potential buffer oflow,
3. makes watch(8) conform to sysexits(3).
Not a strong 2.2 candidate even if it would be nice.
Reviewed by: joerg, imp
1997-03-13 08:35:45 +00:00
davidn
f70c2b4238
Submitted by: Greg Ungerer <gerg@stallion.oz.au>
...
Add manpages for stl, stli drivers.
Add manpages for stlload, stlstats.
Update stli bootcode.
Update stlload, stlstats to revision 1.0.0 from author.
1997-03-13 04:21:44 +00:00
mpp
43df4ac67e
Add cvs Id.
1997-03-12 15:08:06 +00:00
peter
c81bf1e8af
Make amd actually work instead of just compiling. The new Lite2 code
...
was not setting the version number in the nfs_args data to mount(2), so it
was returning EFAULT. Perhaps the nfs_args version number was something
we added at some point?
1997-03-12 08:29:44 +00:00
jkh
60a737d455
Tidy up generated fstab
1997-03-12 02:31:28 +00:00
jkh
170b842387
Fix a long-standing bug with the label editor I just found (you could
...
mount two dos partitions with the same name).
Neaten up a dialog box that was encroaching on the right edge.
1997-03-11 17:51:01 +00:00
jkh
16ed08bcce
YAMF22
1997-03-11 16:44:00 +00:00
joerg
bd91df240d
YAMF22 (rev 1.70.2.10, added blurb to explanations)
1997-03-11 16:27:25 +00:00
peter
8152bc85d1
Update to work under Lite2 includes
1997-03-11 15:57:44 +00:00
cvs2svn
8f174f0f93
This commit was manufactured by cvs2svn to create branch 'CSRG'.
1997-03-11 15:51:37 +00:00
peter
512d4a3d14
I feel sick. :-( There is some really, truely, shameful stuff in here
...
to try and work around the nfsv3 headers in the post-lite2-kernel era.
This program somehow manages to make just about every #include conflict
with everything else. :-(
1997-03-11 15:51:36 +00:00
peter
e9253fba9a
Update to compile under Lite2 fs include layout
1997-03-11 14:26:52 +00:00
peter
0caf78c91b
Update to compile under Lite2 includes
1997-03-11 14:25:31 +00:00
ache
c33c7f83d9
Fix srandom arg according to Lite2
1997-03-11 14:11:43 +00:00
peter
2083e11126
Merge from Lite2 (use special dbopen flags)
1997-03-11 13:01:42 +00:00
peter
b1890e6c7c
Merge Lite2 changes
1997-03-11 13:00:41 +00:00
peter
cc62aa0777
Import some CSRG 4.4BSD-Lite2 components in order to fix the tree build.
1997-03-11 12:58:49 +00:00
peter
a4f4635e03
Merge from Lite2 (use new getvfsbyname() interface)
1997-03-11 12:51:00 +00:00
peter
bd986f8051
Merge from Lite2 (use new getvfsbyname() and mount(2) interface, cleanup)
1997-03-11 12:43:45 +00:00