| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
of the user's timezone failed), don't bail if the specified timezone
doesn't have an offset; in this case it isn't going to. (Perhaps it would
be better to change the caller to always supply one, but this is quick
and clean and fixes the bug in the easiest possible way.)
Should be in 2.2. Fixes (properly) PR#1740.
|
|
|
|
|
|
| |
were added with the login class stuff. This is needed since libutil.so.2.1
is what is used in RELENG_2_2 and well into the release cycle. We only
bump once per release cycle as needed.
|
|
|
|
|
|
|
| |
Add descriptions of RTLD_LAZY and RTLD_NOW.
Correct the synopsis to agree with the actual function prototypes.
Add clarifications of a few things.
Clean up the wording in a few places.
|
| |
|
|
|
|
| |
spammed revisions have been restored.
|
|
|
|
| |
is no ${INFO} variable set.. :-(
|
| |
|
|
|
|
| |
to RETURN VALUES like they should be.
|
|
|
|
|
|
|
|
|
|
| |
was apparently overlooked at the time the member was added. Its absence
causes some error messages from the dynamic linker to begin with
"(null):" instead of with the pathname of the dynamic linker as they
should.
I am also adding a work-around to the dynamic linker, to cope with
legacy binaries that were built with older versions of crt0.
|
|
|
|
|
| |
say is means that a pathname had the high-order bit
set, since this is no longer an error.
|
|
|
|
|
|
| |
Add RETURN VALUES and ERRORS sections to mincore.
Closes PR# 1493.
|
| |
|
| |
|
|
|
|
|
|
| |
section.
Part of PR# 1493.
|
|
|
|
|
|
| |
be 7 bit clean, since it isn't true anymore.
Part of PR# 1493.
|
|
|
|
|
|
| |
stat.h. Also add a little blurb regarding st_mtime &
friends clarifiying how they are defined in a
non-_POSIX_SOURCE envorinment. Closes PR# 1089.
|
| |
|
|
|
|
|
| |
to construct an info file from, as documented at the top. There
are no nodes, so I'm commenting out the INFO= list.
|
|
|
|
|
|
| |
the first pass.
Submitted by: Greg Lehey <grog@lemis.de>
|
|
|
|
|
|
|
|
|
| |
interfaces, until it's redone to use sysctl().
- bump the SIOCGIFCONF buffer size from 1K to 8K
- if we didn't find a suitable address, return a failure. Previously
if it didn't find anything it left the return address uninitialised.
Perhaps it would be better to return AF_INET/111/127.0.0.1 rather than
failing?
|
| |
|
|
|
|
|
| |
EAGAIN, not EACCES. POSIX says that either one is OK.
2.2 candidate.
|
|
|
|
|
|
|
| |
because _IEEE_LIBM always takes priority, so the definition just served
to confuse.
Reviewed by: bde
|
|
|
|
| |
Submitted by: paul@vix.com
|
|
|
|
|
| |
Document the flaw that `offset' is required to be page-aligned, in the
BUGS section.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
It is almost always the wrong thing to put .y and .l files directly
into the SRCS.
|
|
|
|
|
| |
isxdigit(name[0]) gives false failures on short names which looks
like hexadecimal digits, f.e. "fade", "babe", "d133", etc.
|
| |
|
|
|
|
|
|
| |
(<sys/types.h> is a prerequisite for <login_cap.h> mainly because
the latter wants to typedef rlim_t. rlim_t is typedefed in
<sys/types.h> in NetBSD.)
|
| |
|
|
|
|
|
| |
including manpages.
See also login_cap.h.
|
|
|
|
|
|
|
|
| |
what the function really does.
Also fix a small mdoc problem I noticed while in there.
Obtained from: NetBSD-bugs (NetBSD PR#3077)
|
|
|
|
|
|
|
|
| |
more manageable and convenient referencing by login.conf (login
class database) and (e.g.) login.access.
This is the first of a group of commits which implements the login
class capabilities database.
|
| |
|
| |
|
|
|
|
|
| |
should be installed using the same flag as libraries, but ${COPY}
is currently used for libraries.
|
|
|
|
| |
Reviewed by: joerg
|
| |
|
|
|
|
|
|
|
|
| |
(There may be a behavior difference between the 2.1 and 2.2/3.0 kernels
in this area, it seemed to work for me but I have a horribly hacked
select() that might have a bug in the handling of this)
Submitted by: wpaul
|
|
|
|
|
|
| |
(should be in 2.2)
Reported by: John Fieber <jfieber@indiana.edu>
|
|
|
|
| |
bad example.
|
|
|
|
|
|
|
| |
get installed.
The `install' target should only be overridden when the default one would
do something wrong and you're too lazy to fix the default one.
|
| |
|
|
|
|
|
|
|
|
| |
Restore the clamp on the return value from rpc_dtablesize().. Some programs
(eg: ypserv) use this as an indication of how large svc_fdset is in their
hand-rolled svc_run() loops. The svc_fdset table is maintained by the
rpc library explicitly for compatability with such programs. (It uses
a different variable-sized bitmap itself internally)
|