summaryrefslogtreecommitdiff
path: root/libexec
AgeCommit message (Collapse)Author
2002-11-09SEE ALSO reordering.Federico G. Schwindt
2002-11-07Don't complain about missing man dirs unless in picky mode or ifTodd C. Miller
there is something other than a dir in the way. Closes PR 2935.
2002-11-05Use define, not number.Dale Rahn
2002-10-25Some small fixes in MI code for mips backport. A new reloc md function,Per Fogelstrom
RELOC_GOT, was added to handle mips got bootstrap reloc. Also remove workaround used on previous versions of binutils for mips.
2002-10-23mips archdep stuff update while waiting for ok on miPer Fogelstrom
2002-10-21Remove the -D__PIC__ from this, it does not affect the buildingDale Rahn
of any current platform, so makes no sense. pointed out by Per. Tested on alpha, i386, macppc, sparc, sparc64 (binary diff).
2002-10-21Simplify the ld.so asm api, the data is available other ways.Dale Rahn
tested by naddy@ and myself.
2002-10-15localhost variable is not needed; Peter WernerTodd C. Miller
2002-10-15Use old-style version number when requiring at least perl 5.6.0.Todd C. Miller
Fixes a portability warning from perl-5.8.0; espie@ OK
2002-10-13Avoid potential printf format string problem with challenge fromTodd C. Miller
auth_challenge(). Currently, none of the auth modules put non-sanitized data in the prompt so there are no real security implications with this fix. Patch from Moritz Jodeit.
2002-10-11Add 'proto tcp' to example rdr rule, it's required now.Daniel Hartmeier
Found by grange@efnet.
2002-10-08sa_family on wire is network byteorder. from Alexander Yurchenko ↵Jun-ichiro itojun Hagino
<grange@rt.mipt.ru>
2002-10-04smtpd leaves the buildingTheo de Raadt
2002-10-04use port 8021 in examplesHenning Brauer
inspired by a PR from rjmooney@aboveground.cx ok deraadt@
2002-10-04Print full 64 bit address. At least until LD_TRACE_LOADED_OBJECTS_FMT[12]Dale Rahn
is supported properly.
2002-10-04improvements; rjmooney@aboveground.cxTheo de Raadt
2002-10-01spelling; dcfleming@speakeasy.netTheo de Raadt
2002-09-29Add login_radius back now that the license issue has been resolvedTodd C. Miller
2002-09-29BSD-licensed as per Stephen Diercouff of tfm associatesTodd C. Miller
2002-09-29re-add; license will be fixed by millert sometime tonightTheo de Raadt
2002-09-26disable login_radius until a license problem is resolvedTheo de Raadt
2002-09-26MakefileTheo de Raadt
2002-09-25- "resposne" is used without initialization, so zero-fillJun-ichiro itojun Hagino
- sendto(2) performed with osockaddr, so avoid that - reject anything other than AF_INET based on patch from xs@kittenz.org. deraadt/millert ok
2002-09-24Allocate vis_user on the stack instead of using malloc(). ThisTodd C. Miller
way we don't have to worry about malloc() failure. Also closes a memory leak since vis_user was never free()d. Lack of malloc() checking pointed out by Peter Werner.
2002-09-18fix Xr refs; frisco@blackant.netTheo de Raadt
2002-09-13Add -H option to hide nonexistent users (useful on NAT gateways). ok millert@Damien Miller
2002-09-12do not decent into ld.so if it was said NOPIC, even for elfMichael Shalayeff
2002-09-09Add lazy binding support for powerpc ld.so. ok pvalchev@ brad@Dale Rahn
2002-09-06use socklen_t more; henning okTheo de Raadt
2002-09-06ansi; ok millert pvalchevTheo de Raadt
2002-09-06spacesTheo de Raadt
2002-09-05kill groups too when we revoke privsTheo de Raadt
2002-09-05safe_finger no longer installedTheo de Raadt
2002-09-01Make sure that the symbol return value is always initialized beforeDale Rahn
the address of it is passed to dl_find_symbol(). fixes xpdf lazy binding problem. ok art@
2002-08-31argh, include prototype for dl_fdprintf(), missed by myself and reviewers.Dale Rahn
2002-08-31Add the ability to output to file descriptors besides stderr.Dale Rahn
This allows ldd outptut go to stdout like it should. ok deraadt@
2002-08-29remove extra arg; jmegq@post.harvard.eduTheo de Raadt
2002-08-28o) start new sentence on a new line;Mike Pechkin
o) don't use .Nm w/o argument in .SYNOPSIS; I waste time, when fixing already cleaned pages. :( one man ok@
2002-08-23Fix after recent changes.Artur Grabowski
2002-08-23Support for i386 ELF. Not an indication that the change is going to be made,Dale Rahn
just so that these files are maintained in the tree.
2002-08-23Change arguments to _dl_find_symbol() myself, warnnotfound, and inplt intoDale Rahn
a single flags field with bits representing each. Use defines to create the appropriate masks. Add a new argument sym_size to warn about symbols which have the incorrect size. This replaces 'ifdef notyet' code which was in several of the md files with a single version. sym_size == 0 means do not check, and symbols of type FUNC are not checked.
2002-08-22fix int overflow in statbf.st_size, from netbsd PR#17933Philipp Buehler
as by request from deraadt@
2002-08-21Split out MD makefile parts into separate files and doArtur Grabowski
some other cleanup in the Makefile. drahn@ ok.
2002-08-20-n: disallow anon ftp even if ftp account existsTheo de Raadt
2002-08-12Add support for REL type relocations, all currently supported archDale Rahn
use only RELA type relocations, but that could change. ok art@
2002-08-11The parameter dynp was never used, rather than pass in a dummy on mostDale Rahn
archs and a nasty calcuation on others, remove the parameter.
2002-08-11Fix for Elfbug, the Xtiherit problem which has been seen on most OpenBSDDale Rahn
ELF dynamic systems. This was due to an oddity in ELF where the address of fuctions refer to the PLT address in the program, rather than the actual function address.
2002-08-09Various fixes.Artur Grabowski
- JMP_SLOT relocations require a symbol lookup (duh). - compress the nops to not dominate the code. - reorder the installation of the pltgot and always install it when possible.
2002-08-09Simplify.Artur Grabowski
2002-08-08- Add some missing iflush'sJason Wright
- insert some nop's to make sure all copies are gone from the icache and CPU