Ruslan Ermilov
dd991de030
Overhaul ppp(8) build options so they are safe to use in
...
/etc/make.conf:
NOALIAS -> retired (support provided by PPP_NO_NAT)
NOATM -> PPP_NO_ATM (also subject to NO_ATM global)
NODES -> PPP_NO_DES (support was broken, now recovered)
NOI4B -> PPP_NO_I4B (also subject to NO_I4B global)
NOKLDLOAD -> PPP_NO_KLDLOAD
NONAT -> PPP_NO_NAT
NONETGRAPH -> PPP_NO_NETGRAPH
NOPAM -> PPP_NO_PAM (will be subject to NO_PAM global)
NORADIUS -> PPP_NO_RADIUS
NOSUID -> retired (support provided by PPP_NO_SUID)
PPP_NOSUID -> PPP_NO_SUID
2004-12-21 12:01:15 +00:00
Ruslan Ermilov
564299ef5f
The C define is NONAT.
2004-12-21 11:12:05 +00:00
Ruslan Ermilov
731db6a428
NOINET6 -> NO_INET6
2004-12-21 10:49:29 +00:00
Ruslan Ermilov
a216173556
NOCRYPT -> NO_CRYPT
2004-12-21 10:16:04 +00:00
Ruslan Ermilov
83c7ade90a
NOSHARED -> NO_SHARED
2004-12-21 09:59:45 +00:00
Ruslan Ermilov
07736e20e9
NOATM -> NO_ATM
2004-12-21 09:08:06 +00:00
Ruslan Ermilov
f1f6253f4f
NOLIBC_R -> NO_LIBC_R
...
NOLIBPTHREAD -> NO_LIBPTHREAD
NOLIBTHR -> NO_LIBTHR
2004-12-21 09:00:26 +00:00
Ruslan Ermilov
e653b48c80
Start the dreaded NOFOO -> NO_FOO conversion.
...
OK'ed by: core
2004-12-21 08:47:35 +00:00
Maxim Konovalov
f8c5e12739
Allocate an additional white space in a username column for
...
a long (UT_NAMESIZE) login names.
PR: bin/75259
Submitted by: Matthew D.Fuller
MFC after: 2 weeks
2004-12-19 18:02:45 +00:00
Garance A Drosehn
a6ed151d3c
Call umask() before opening the lock-file for a queue, to make sure
...
the file will be created with the right access, if the call to open()
does create it. Also fix the other call to umask() to turn off
"write others", just as a matter of general safety.
PR: 74418
MFC after: 4 days
2004-12-19 05:14:29 +00:00
Poul-Henning Kamp
5679e1ac37
Open device R/W for ioctl modifications.
2004-12-18 11:04:10 +00:00
Ruslan Ermilov
0207facc8f
err() -> errx()
2004-12-17 13:24:22 +00:00
Garance A Drosehn
bea5945e6f
When printing a data file received from some other host, check to make
...
sure the data file has been completely transfered before starting to
print it. This is needed because some implementations of lpr will send
the control-file for a print job before sending the matching data-files,
and that can cause problems if the receiving host is a busy print-server.
MFC after: 2 weeks
2004-12-17 01:54:50 +00:00
Peter Pentchev
3f8718c17d
Describe the special meaning of the $ and ~ characters, and the fact
...
that you can get around it by double-quoting them.
PR: 42762
Submitted by: AIDA Shinra <aida-s@jcom.home.ne.jp>
Discussed with: brian
2004-12-16 16:59:19 +00:00
Ruslan Ermilov
fff666a6f8
The ioconf.c is no longer generated.
...
Submitted by: Craig Rodrigues
2004-12-16 09:52:41 +00:00
Christian Brueffer
eb1b84fe40
- Xref fwip(4)
...
- bump .Dd
MFC after: 3 days
2004-12-14 20:44:37 +00:00
Brian Somers
cf4bdb6e94
Handle select() returning -1/EINTR - fairly common in these KSE days.
...
PR: 74972
MFC after: 3 days
2004-12-13 14:50:13 +00:00
Brian Somers
125eb366ea
Implement an ``enable/disable echo'' option, defaults to off.
...
This allows LCP ECHOs to be enabled independently of LQR reports.
Note: This introduces a change in the default behaviour (search for lqr and
echo in the man page). I'll update UPDATING to reflect this.
PR: 74821
2004-12-13 12:51:19 +00:00
Poul-Henning Kamp
e71171f31b
Also do not send junk mount arguments when removing exports.
2004-12-11 12:51:20 +00:00
Gregory Neil Shapiro
3064e7b052
Enable _FFR_DEAL_WITH_ERROR_SSL to deal with OpenSSL error returns of 0.
...
PR: bin/73105
MFC after: 2 days
2004-12-10 19:15:31 +00:00
Xin LI
74ec0afcc7
Correct two bugs that may result in incorrect CBCP response for
...
administrator specified number.
The implementation in our version transmits extra zero byte that is a
violation of the Microsoft PPP Callback Control Protocol section 3.2[1].
This can lead to incorrect behavior on certain devices, as reported
in bin/50613.
Confirmed with: cbcp.c in ppp's cvs, rev. 1.4 and 1.15 [2]
Submitted by: Dmitry Pryanishnikov <dmitry at atlantis.dp.ua>
PR: bin/50613
[1] http://www.dsl.gr.jp/~manabe/PPxP/doc/Standards/draft-gidwani-ppp-callback-cp-00.txt
[2] http://cvs.samba.org/cgi-bin/cvsweb/ppp/pppd/cbcp.c
http://www.samba.org/cvs.html
2004-12-06 15:49:52 +00:00
Poul-Henning Kamp
0cbf6231e8
Userland change corresponding to the change in kernel/userland communication
...
for NFS locking.
2004-12-06 08:32:09 +00:00
Brian Somers
0508c09a41
Send NAS-IP-Address as well as NAS-Identifier
...
Add ``disable NAS-IP-Address'' and ``disable NAS-Identifier'' options to
support pre-rfc2865 RADIUS servers.
This pushes our enable/disable items over the 32 bit limit, so reoganise
things to allow a bunch more options.
Go to version 3.4.1 so that any compatability problems can be identified.
2004-11-29 17:11:15 +00:00
Ian Dowse
5fc01b4e25
Fix a few coding errors that caused compiler warnings.
...
PR: bin/71615
Submitted by: Craig Rodrigues (original patch by Dan Lukes)
2004-11-28 20:36:19 +00:00
David Schultz
6004362e66
Don't include sys/user.h merely for its side-effect of recursively
...
including other headers.
2004-11-27 06:51:39 +00:00
Maxim Konovalov
b5974bdbab
Increase a socket receive buffer size. This helps 'ngctl list'
...
to deal with a big number of nodes.
Submitted by: archie
Approved by: archie
Reported and tested: Konstantin Timashkov
MFC after: 1 month
2004-11-25 09:27:56 +00:00
Warner Losh
bfccea1e5d
o Report charge/discharge rate and remaining capacity in the proper
...
units (as specified in _BIF). (noted by Bruno Ducrot)
o In looking in the standard, if the cap numbers are 0xffffffff, then acpi
is reporting unknown for that field. Report unknown numbers properly.
o Update the state to reflect charging, discharging and critical.
2004-11-24 16:02:20 +00:00
Warner Losh
95e583726f
phk jumped the gun and posted what looks like a preliminary version of
...
my patches for this information. Commit my more complete version.
This version isn't complete yet, since some details aren't handled
right just yet.
Poaching by: phk
2004-11-24 15:32:07 +00:00
Poul-Henning Kamp
fdcef74733
Dump current status of battery as well.
...
The -i code doesn't really belong here in the first place I would think,
but keep it together for now.
2004-11-24 12:49:39 +00:00
David E. O'Brien
37c510c7c0
Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].
...
PR: 73879
Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
2004-11-19 03:56:47 +00:00
David E. O'Brien
ddede49cfd
Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].
...
PR: 73878
Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
2004-11-19 03:53:36 +00:00
David E. O'Brien
36d4953214
Make logic more readable.
2004-11-19 03:52:41 +00:00
Maksim Yevmenkin
3adfd74adb
Check in updated bthidd(8). This is still work in progress.
2004-11-18 18:05:15 +00:00
Gleb Smirnoff
204d318009
s/priveleged/privileged/
2004-11-18 13:37:33 +00:00
Giorgos Keramidas
d6c85264cd
Fix a minor comment typo: priveleged = privileged.
2004-11-18 12:20:52 +00:00
Xin LI
d1df3fcd3f
Initialize lcap and pwd to NULL. This allows a WARNS=6 clean build,
...
hence bump it to 6.
Note that the last commit message was not quite accurate. While the
assumption exists in the code, it's not possible to have an
uninitialized p there because if lflag is set when username is NULL
then execution would be terminated earlier.
2004-11-17 10:01:48 +00:00
Xin LI
95751846f1
The code path in main() dealing with lflag assumes that p was
...
initialized with NULL, while it is not. So let's initialize
it.
2004-11-17 09:52:10 +00:00
Simon L. B. Nielsen
a98d8c790a
Only write the rc.conf header when a new rc.conf is written. This was
...
accidentally removed in v. 1.211.
Submitted by: Olafur Osvaldsson <oli@isnic.is>
PR: bin/73692
MFC after: 1 week
Approved by: trhodes
2004-11-16 21:59:00 +00:00
John Baldwin
60ede768f7
Various updates to the anonymous ftp support:
...
- Allow the upload directory to be optional. If the upload directory
field is cleared to the empty string then no directory will be created.
- Don't create a bin/ subdirectory in ftp's home dir containing ls(1) and
date(1) as ftpd(8) no longer requires it.
- Create a pwd.db file in etc/ instead of a passwd file.
- Ignore NIS compat entries in /etc/group and /etc/master.passwd when
building the anonymous files.
PR: bin/60662
Submitted by: Olafur Osvaldsson oli at isnic dot is
2004-11-16 19:06:42 +00:00
Warner Losh
46433fccd1
Minor style(9) before possible larger commits.
2004-11-16 06:25:02 +00:00
Bjoern A. Zeeb
6c58990d47
Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.
...
If turned on no NIS support and related programs will be built.
Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il>
PR: bin/68303
No objections: des, gshapiro, nectar
Reviewed by: ru
Approved by: rwatson (mentor)
MFC after: 2 weeks
2004-11-13 20:40:32 +00:00
Philip Paeps
6af2c48a95
Somehow I missed this last night, acpi_init() doesn't return an int.
...
Spotted by: Randy Bush <randy@psg.com>
2004-11-13 15:16:35 +00:00
Philip Paeps
413efd9141
With the addition of a proper prototype, this is now WARNS=6 clean.
2004-11-13 01:54:22 +00:00
Philip Paeps
9599d206a4
Two uint32_t casts crept in where they shouldn't have.
...
ACPI_TYPE_INTEGER can be 64 bits wide in acpi v2.
2004-11-13 01:49:22 +00:00
Philip Paeps
e18d08c9b0
Change some formats and add some casts to make this
...
WARNS=2 clean, and mark it as such.
PR: 71672 (partly)
Reviewed by: njl
2004-11-13 01:34:51 +00:00
Philip Paeps
d0139887c9
Update moused(8) and mouse(4) to reflect the cuaa->cuad name change.
...
Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
2004-11-12 23:59:24 +00:00
John Baldwin
c3f8d76206
Add Estonian keyboards.
...
PR: bin/73232
Reported by: Mart Tõnso tm at hwg dot edu dot ee
Submitted by: Olafur Osvaldsson oli at isnic dot is
MFC after: 1 week
2004-11-11 18:49:24 +00:00
Ruslan Ermilov
a7c23514f6
Really revert the whitespace change to usage().
2004-11-11 18:09:00 +00:00
Diomidis Spinellis
7aaa48252b
Corrected the description of the -t output columns to reflect reality.
...
MFC after: 2 weeks
2004-11-11 17:30:04 +00:00
Gleb Smirnoff
24f3d18aa1
Change TABs back to spaces in usage string constants.
...
Requested by: ru
2004-11-11 16:13:10 +00:00