Jordan K. Hubbard
dcb69d91c2
Correct an ancient bogon which involved trying to read() from a
...
nuked file descriptor. This is probably why sysinstall's ftp xfer
occasionally SEGV'd if you left things alone for a long time and
the timeout code got called. Whoops!
1997-10-01 07:21:41 +00:00
Andrey A. Chernov
7c92864437
Bump minor number
1997-09-29 21:40:17 +00:00
Wolfram Schneider
bf5cbf3551
Sort cross refereces in section SEE ALSO.
1997-09-29 19:11:55 +00:00
Wolfram Schneider
2af22b06a4
Endless loop.
...
$ vipw
[corrupt a line in editor, exit editor]
pwd_mkdb: corrupted entry
pwd_mkdb: at line #2
pwd_mkdb:
/etc/pw.012585: Inappropriate file type or format
re-edit the password file? [y]: n^D^D
[hang]
1997-09-29 13:13:51 +00:00
Andrey A. Chernov
5fb9db85bb
Add setutent.c
1997-09-29 11:38:36 +00:00
Andrey A. Chernov
bcd05664ce
EXT_KEYS gone, STD ommited
1997-09-29 10:55:46 +00:00
Andrey A. Chernov
3f3386c2a8
Add logwtmp.c
1997-09-29 10:49:21 +00:00
Andrey A. Chernov
e9fcc517e1
Merge
1997-09-29 10:33:14 +00:00
Mike Smith
af35b9ccb0
Revert the previous prototype un-typo. Add a brief comment warning that
...
"fixing" it is not a good idea.
1997-09-28 17:11:31 +00:00
Mark Murray
0e8089efef
Changes for KTH KerberosIV
1997-09-28 09:08:48 +00:00
Mark Murray
7f80a02080
Changes for KTH KerberosIV.
...
Also quieten -Wall a bit.
1997-09-28 08:57:24 +00:00
Mike Smith
378a2883fe
Typo fix
1997-09-28 03:28:34 +00:00
Mike Smith
27c729f066
Fix typo in signal() prototype
1997-09-28 03:28:09 +00:00
Andrey A. Chernov
46dba712f1
Use revived __maskrune for digittoint
...
Minor formatting
1997-09-27 04:34:35 +00:00
Andrey A. Chernov
08401510be
Add mskanji.c
1997-09-25 23:24:35 +00:00
Andrey A. Chernov
3f2fd98c12
Move it under XPG4 define
1997-09-25 23:20:26 +00:00
Andrey A. Chernov
bed2de7d4c
Move MSKanji under XPG4 define
1997-09-25 23:18:10 +00:00
Andrey A. Chernov
1284c1ad08
__maskrune --> __istype
1997-09-25 23:10:38 +00:00
Julian Elischer
16f76e6f06
Submitted by: Sin'ichiro MIYATANI / Phase One, Inc <siu@phaseone.co.jp>
...
Basic support for the Shift JIS encoding of japanese.
(and one tiny typo fixed in a comment)
1997-09-24 20:38:12 +00:00
Andrey A. Chernov
65fce1274e
This commit was generated by cvs2svn to compensate for changes in r29747,
...
which included commits to RCS files with non-trunk default branches.
1997-09-23 21:34:42 +00:00
Andrey A. Chernov
e97dbe1e30
Official patch from infozip
1997-09-23 21:34:42 +00:00
Peter Wemm
42396e05cf
Apply fts() fix from PR#4593
...
Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
1997-09-22 12:48:40 +00:00
Bill Paul
0e710e8f95
Make selection logic more strict. Only select AF_INET loopback interfaces
...
that are up on second (loopback only) pass, and only select non-loopback
AF_INET interfaces that are up on first pass.
1997-09-21 23:04:51 +00:00
Poul-Henning Kamp
d030d2d2ae
Many places in the code NULL is used in integer context, where
...
plain 0 should be used. This happens to work because we #define
NULL to 0, but is stylistically wrong and can cause problems
for people trying to port bits of code to other environments.
PR: 2752
Submitted by: Arne Henrik Juul <arnej@imf.unit.no>
1997-09-18 14:08:40 +00:00
Philippe Charnier
34384756cd
environmental -> environment.
1997-09-18 06:55:21 +00:00
Peter Wemm
9e06e6da51
Some adjustments for the resolver use of poll(). For some reason I thought
...
an unimplemented syscall returned ENOSYS, rather than EINVAL. I have run
statically linked code with this wrapper and it does appear to work fine
on 2.2-stable which doesn't have poll(). ktrace shows the poll syscall fail
once and the fallback to select() working.
1997-09-16 06:03:54 +00:00
Peter Wemm
b7ecb08afa
Put a system call not present checking wrapper around the call to
...
__getcwd(). I've got this libc code running on one of my machines
at the moment without the __getcwd() syscall being present.
1997-09-16 06:00:50 +00:00
Wolfram Schneider
211fed7e35
Fix yet a minor stylistic nit from Bruce.
...
(`cvs diff -ib' print one new char ;-).
1997-09-15 19:37:23 +00:00
Poul-Henning Kamp
36dff60096
Fix yet a minor stylistic nit from Bruce (Doesn't he have more
...
important things to do ?? :-)
Prepare for the likely case of a change in kernel algorithm.
1997-09-15 17:40:15 +00:00
Poul-Henning Kamp
9c2d6fcf05
Fix a buglet and a couple of stylistic nits from Bruce.
1997-09-15 08:25:14 +00:00
Wolfram Schneider
8be26e5d0f
Potential bufferflow in getpwent(), getpwnam() and getpwuid()
...
PR: bin/4134
Submitted by: nick@foobar.org
1997-09-14 18:16:11 +00:00
Poul-Henning Kamp
27262cac33
Add __getcwd() syscall, and have getcwd() take a shot at it.
...
If your kernel doesn't support __getcwd() or if __getcwd() cannot
deliver because of cache expiry, it does the canonical thing.
1997-09-14 16:57:27 +00:00
Peter Wemm
535db1806c
Call poll(2) from within the resolver but adapt to older kernels without it
...
if necessary. This removes the need to malloc large fd_set's for selecting
on high fd's (larger than FD_SETSIZE at libc compile time).
The syscall adaptive stuff only happens on the very first call. SIGSYS
is masked, and if the call to poll fails with ENOSYS, then we use select
for the life of the program. If poll does not fail with ENOSYS, then we
always use poll and skip the once-off signal masking gunk.
This may be overkill, but it saved my neck a few times while working on
multiple different sets of kernel sources, some with poll, some without.
1997-09-14 09:44:34 +00:00
Peter Wemm
16115af153
A poll(2) manpage.
...
Obtained from: NetBSD
1997-09-14 05:44:35 +00:00
Peter Wemm
b52c91dd7e
Generate poll syscall stub
1997-09-14 03:29:55 +00:00
Joerg Wunsch
dbf4898f6c
Document SA_NOCLDWAIT.
...
Make all the SA_* flags go into a tagged list, to improve readability.
1997-09-13 19:43:24 +00:00
Bruce Evans
065bebee55
Removed superfluous quoting of function args.
1997-09-07 04:10:35 +00:00
Bruce Evans
f12d1f0bf6
Fixed style bug in pseudocode.
1997-09-07 04:01:27 +00:00
Brian Somers
59354a4e8d
Upgrade to 2.4 (Fix -PKT_ALIAS_UNREGISTERED_ONLY)
...
Submitted by: Charles Mott <cmott@srv.net>
Add __libalias_version so that ppp can derive the
correct library name for dlopen()
1997-09-06 11:11:43 +00:00
Peter Wemm
a9c87f32ee
When compiling under elf, use correct library naming conventions. Also
...
add the required extra symlink. Set the -soname to libcrypt.so so that
the symlink is used at runtime rather than resolved at compile time.
1997-09-05 12:12:35 +00:00
Peter Wemm
7bd6d5e7cf
If building under elf, have libskey.so depend on libmd and libcrypt.
1997-09-05 11:52:20 +00:00
Peter Wemm
1840bd1444
If not building a.out, still build a pic version of libmd. This allows
...
things like libskey.so to be dynamically self contained.
Things like md5(1) where speed is critical should still link with libmd.a,
but for things like login, where it's a once-off call if skey is used, it's
not worth the hassle.
1997-09-05 11:49:43 +00:00
Paul Traina
326df44ead
The parameters to logwtmp should be const char's
1997-09-04 22:38:59 +00:00
Bruce Evans
853aa1faf3
Fixed synopsis. The envp arg for execle() can't be given in the prototype.
...
Fortunately, the man page doesn't refer to "envp" so just deleting it is OK.
1997-09-03 03:25:35 +00:00
Andrey A. Chernov
738111e63b
Fix possible coredump on BW displays
1997-09-02 19:07:50 +00:00
Brian Somers
a367bd9e25
Add "options no_tld_query" to resolv.conf.
...
Mention the capability in resolver(5).
Mention that RES_OPTIONS can be used in resolver(5).
Discussed with: -hackers
1997-09-01 01:19:23 +00:00
Bruce Evans
6a9280be8c
Hide the declaration of `struct exception' from C++, since it conflicts
...
with the standard C++ `class exception'. This makes matherr() difficult
to use in C++. Small loss.
1997-08-31 22:12:19 +00:00
Bruce Evans
4447a79bf7
Fixed inclomplete function type in synopsis.
1997-08-31 21:54:10 +00:00
Brian Somers
ad1d4e56a2
Remove login_progok()
...
Suggested by: guido
1997-08-31 20:09:39 +00:00
Andrey A. Chernov
0d589df709
Restore back issetugid() usage and bump major number
1997-08-31 08:37:28 +00:00