jwd
da8203a816
Log invalid config entries. Make the -d option actually log to
...
the terminal(-d fix from dwmalone).
Approved by: dwmalone
MFC after: 2 weeks
2002-05-26 04:43:26 +00:00
ru
d98e09267b
Make it work for a different endianness binary.
...
(This version is still limited to ELF64.)
Reviewed by: jake
2002-05-25 13:43:16 +00:00
ru
4eb7a2371e
Get all the fruit from makefile.
2002-05-25 13:39:20 +00:00
ru
6e02fb8404
Move elf2aout to usr.sbin/.
...
Approved by: jake
2002-05-25 13:29:47 +00:00
obrien
36a393821f
The man page is VERY WRONG about using "-o noupdate" with -s.
...
So fix it, and add an example using -s.
2002-05-25 01:46:44 +00:00
ru
ed88070398
Removed dead code.
2002-05-24 06:30:07 +00:00
ru
3d4d4bf652
Handle endianness. This completes cross-support for sparc64.
2002-05-24 06:24:40 +00:00
des
df83130b9c
Un-kmemize. Portions of the tty mode code have been temporarily disabled;
...
everything else, including dead kernel support, works just like before.
Sponsored by: DARPA, NAI Labs
2002-05-23 15:09:49 +00:00
des
530e4f719b
Nits in previous commits.
...
Sponsored by: DARPA, NAI Labs
2002-05-23 14:58:07 +00:00
des
4cbec75e55
Cull large amounts of dead code (deprecated since 1997)
...
Sponsored by: DARPA, NAI Labs
2002-05-23 14:53:04 +00:00
des
041a682317
ANSIfy.
...
Sponsored by: DARPA, NAI Labs
2002-05-23 14:48:25 +00:00
des
1fc7e0f0ed
Staticize.
...
Sponsored by: DARPA, NAI Labs
2002-05-23 14:44:23 +00:00
des
dbc631f550
Whitespace cleanup.
...
Sponsored by: DARPA, NAI Labs
2002-05-23 14:42:17 +00:00
des
ab841e31f2
Unbreak tty mode (cons was renamed to constty a while ago)
...
Sponsored by: DARPA, NAI Labs
2002-05-23 14:41:52 +00:00
roberto
9ace91bc72
load_env(), the function that attempts to parse a crontab
...
line as an environment variable assignment, is broken
and not conformant to its description in the manual page.
I think it is worthwhile to have that fix in 4.6.
PR: bin/38374
Submitted by: Thomas Quinot <thomas@cuivre.fr.eu.org>
MFC after: 2 days
2002-05-23 13:16:30 +00:00
ru
7e058286b8
This manpage is for Alpha only.
2002-05-23 07:38:51 +00:00
brian
debad274d2
Increase the maximum FSM option length to 50
2002-05-22 21:17:13 +00:00
brian
e2e6ae2d7a
Add some missing #includes that weren't required due to namespace polution
...
in our headers.
Submitted by: bde
2002-05-22 21:08:58 +00:00
sobomax
5e6265b17a
Eliminate free'ing already freed chunks.
...
MFC after: 1 week
2002-05-22 10:33:25 +00:00
ru
1e6750c005
Added support for ia64 and sparc64.
2002-05-21 15:36:29 +00:00
brian
d6c7357cf3
Mention our support of the authentication side of rfc2548
2002-05-21 10:54:07 +00:00
roberto
37bf7d0c3d
Add two FTP mirrors in France:
...
- ftp7 in Paris (ftp.club-internet.fr)
- ftp8 in Stransbourg (ftp.u-strasbg.fr)
MFC after: 1 day
2002-05-20 17:08:00 +00:00
ru
531943a766
Bootstrap elf2aout(1) for sparc64; used to build sys/boot/sparc64/boot1.
2002-05-20 14:42:48 +00:00
sobomax
110842c75e
MFS: silence compiler warnings.
2002-05-20 09:55:41 +00:00
ru
da85e76b35
Kill the stray #include line.
2002-05-20 08:05:58 +00:00
ru
628fe540c2
s/u_int/u_int32_t/
2002-05-20 07:56:40 +00:00
dd
3eafd11a94
Fix IP address typo.
...
PR: 38313
Submitted by: Jeff Ito <jeffi@rcn.com>
2002-05-20 07:29:25 +00:00
knu
82c4e34477
Work around a code generation bug of GCC 3.1 by replacing
...
`/2' with `>>1'. In the context `>>1' is more appropriate
because it looks like the division is used to restore a
shifted value.
GCC GNATS PR: c/6677
This fixes a problem where wheel-up movement is taken as wheel-down
in the sysmouse protocol.
Do not assume the plain char's are signed; use `signed char' where
char's need to be signed.
Discussed on: audit
Pointed out by: bde
2002-05-19 06:53:20 +00:00
brian
d2110d3eba
Document RAD_MICROSOFT_MS_CHAP2_SUCCESS.
2002-05-18 23:58:15 +00:00
jake
954f6fa7b9
Get byte swapping primitives from sys/endian.h now that they are exported
...
to userland. This makes elf2aout work as a cross tool.
2002-05-17 15:46:08 +00:00
brian
0f2466f1e0
MFS: Extend a buffer size so that packages with particularily deep dependency
...
lists install properly.
2002-05-17 09:46:46 +00:00
jmallett
f6d289008c
Stop this program's abuse of malloc(3). Its return value doesn't need these
...
ugly explicit casts, and its argument doesn't need explicitly cast to u_int,
especially if sizeof() is being used.
2002-05-17 05:27:52 +00:00
brian
3c3efb7e19
Put back <string.h>
2002-05-17 00:44:54 +00:00
arr
503019728f
- Convert a bunch of macros to the actual function they're calling. These
...
include:
UM_ALLOC -> calloc, malloc
UM_FREE -> free
UM_COPY -> bcopy
UM_ZERO -> bzero
This is the first step towards removing these macros.
2002-05-16 23:57:37 +00:00
arr
0f9e8dbadd
- Convert a bunch of macros to the actual function they're calling. These
...
include:
UM_ALLOC -> calloc, malloc
UM_FREE -> free
UM_COPY -> bcopy
UM_ZERO -> bzero
This is the first step towards removing these macros.
2002-05-16 23:28:40 +00:00
eric
bd977939fa
Remove cross reference to pkg_update(1).
...
Submitted by: dd
2002-05-16 22:46:53 +00:00
markm
4ed909bc5c
Replace the perl script version of this with a sh(1) script.
...
Submitted by: Riccardo "VIC" Torrini <riccardo@torrini.org>
2002-05-16 18:51:57 +00:00
ume
fa04abef9d
Don't install scriptdump which is written in Perl. This is
...
corresponding to removal of Perl from base system.
2002-05-16 15:44:08 +00:00
brian
a821e645fa
Add some OpenBSD includes
2002-05-16 14:47:19 +00:00
brian
098eb79132
Fix a mis-placed #else/#endif
2002-05-16 14:28:32 +00:00
brian
6efbe1505f
Handle MS-CHAPv2 authentication correctly via the RADIUS server (if it's
...
configured).
Handle internal failures in radius_Authenticate() correctly.
Bump the ppp version number.
This doesn't yet work with MPPE. More will follow.
Sponsored by: Mozoon
2002-05-16 13:34:20 +00:00
trhodes
896f3841bf
more file system > filesystem
2002-05-16 04:10:46 +00:00
trhodes
7d7bd3ffde
Consistancy check: s/file system/filesystem/g
2002-05-16 02:28:39 +00:00
trhodes
0ee62997d7
pciconf(8) has an incorrect synopsis which argues the output from the
...
actual program.
2002-05-15 17:47:58 +00:00
des
86afaea3e6
Explicitly cast NCONTINENTS to int to silence an overflow warning.
2002-05-15 09:39:31 +00:00
des
81c41451d4
Remove bogus cast.
2002-05-15 09:36:46 +00:00
des
8d313628ef
Unbreak Alpha build.
2002-05-15 09:20:06 +00:00
des
1a81f5479f
Unbreak Alpha build.
2002-05-15 08:01:31 +00:00
iedowse
36cd292d7d
Use fgetln to remove the static limit on the length of lines in
...
/etc/exports. Oversized lines were unlikely due to the large 10k
limit, but any found would cause mountd to exit with an error. Also
fix one or two compiler warnings.
2002-05-14 23:24:28 +00:00
sobomax
bac8396cc9
- Make use of DEPOROGINs (if there are any) when installing package;
...
- fix few bogosities here and there;
- move some common routines into the library.
MFC after: 2 weeks
2002-05-14 21:42:37 +00:00