summaryrefslogtreecommitdiffstats
path: root/libexec
Commit message (Collapse)AuthorAgeFilesLines
* Make useage of hostname global variable consistent.davidn1997-07-242-7/+8
| | | | | PR: 4135 Based on submitted patch by: blank@fox.uni-trier.de
* Rshd print to much information if a user does not exists.wosch1997-07-182-8/+7
|
* kill the undeadpeter1997-07-131-54/+0
|
* .if exists(../eBones) tests the obj dir, not the source dir's existance.peter1997-07-051-2/+2
| | | | The existance of a stale obj dir does not imply the source too.
* Zap register keyword usage and convert: bcopy -> memmove, bzero -> memset,steve1997-06-296-56/+56
| | | | index -> strchr, and rindex -> strrchr.
* Merge conflicts and make this compile -Wall clean.steve1997-06-2912-131/+45
|
* This commit was generated by cvs2svn to compensate for changes in r27074,steve1997-06-297-129/+147
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of NetBSD's rbootd version 19970629steve1997-06-2912-235/+193
| |
* | Removed unused variables.alex1997-06-271-4/+1
| |
* | Submitted by: Gene Stark and Robert Sexton (robert@kudra.com)stark1997-06-242-10/+17
| | | | | | | | | | Added patches from Robert Sexton to eliminate case sensitivity of the xtend command.
* | Show the real revision date and not the date that thissteve1997-06-232-4/+4
| | | | | | | | manpage is being viewed.
* | Reset alarm before invoking ppplogin.davidn1997-06-031-1/+3
| | | | | | | | | | | | | | PR: 3733 Reviewed by: Submitted by: kfurge@worldnet.att.net Obtained from:
* | login.group => login.conf.davidn1997-06-021-2/+2
| | | | | | | | | | | | | | PR: 3748 Reviewed by: Submitted by: Obtained from:
* | Typo fix.max1997-05-273-9/+9
| | | | | | | | | | PR: 3693 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* | Tell the chroot()ed user that "access restrictions apply".danny1997-05-211-1/+6
| |
* | Small tweak to the group parsing code to stop it from core dumpingwpaul1997-05-211-1/+3
| | | | | | | | | | | | | | on malformed /etc/group entries. This is a band-aid until I can pull in the newer group parsing code from getgrent . Pointed out by: branson@belmakor.hq.ferg.com (Branson Matheson)
* | Changes to support the kernel linker:dfr1997-05-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a -Bforcedynamic option which generates a dynamic object even if no shared libraries were given in the link. Make RRS in text section warnings conditional on "-assert pure-text" so that I can link non-PIC kernel modules without tons of link errors. Changes to bsd.lib.mk to follow. Fix a couple of bugs exposed by the fact that the kernel is not linked at zero. Reviewed by: jdp
* | Don't rely on stderr to report bad news.phk1997-05-111-8/+8
| |
* | Fix memory leak caused by not freeing memory returned by cgetstr()davidn1997-05-111-8/+80
| | | | | | | | | | | | | | | | | | | | | | | | calls. The cost is a little more up-front memory allocation, but the effect seems minimal. Problem noticed-by: bde Added syslog at LOG_ERR when referencing an unknown gettytab entry and for other cgetent() failues (circular reference et al). To be merged into 2.2 after a few days testing.
* | login_getclass() -> login_getpwclass().davidn1997-05-102-4/+4
| |
* | Fix a bug that caused the relocs for linker set members in sharedjdp1997-04-301-1/+3
| | | | | | | | | | | | | | libraries to come out as 1-byte relocations instead of 4-byte relocations. Submitted by: Doug Rabson <dfr@nlsystems.com>
* | Adds anon ftp virtual host capability to ftpd, using /etc/ftphosts fordavidn1997-04-294-17/+271
| | | | | | | | definition of a system's virtual hosts.
* | YAMF2.2: Allow @group entries in /etc/ftpusers & /etc/ftpchroot to denydavidn1997-04-272-10/+35
| | | | | | | | and allow chroot access to entire groups.
* | Document internal ls, how to compile it in and what it changes wrtdavidn1997-04-261-1/+20
| | | | | | | | anon ftp and chrooted users.
* | Adds optional "internal ls" support for ftpd, by collectingdavidn1997-04-265-8/+41
| | | | | | | | | | | | | | | | | | | | | | modules from src/bin/ls, and handling exec(_PATH_LS,..) as a special case, very useful in an environment where many users are given chroot access. "~/etc/{s}pwd.db" files are still needed if uid/gid->user/group translation is desired. To enable this it must be compiled with the make variable FTP_INTERNAL_LS defined, either in /etc/make.conf or the environment.
* | Add basic login.conf (sans authentication) support.davidn1997-04-233-7/+58
| |
* | Added login.conf support.davidn1997-04-233-8/+71
| |
* | Fixed `make depend' and related bogons. LDFLAGS was used forbde1997-04-161-10/+2
| | | | | | | | | | | | | | | | | | | | | | ld-specific flags. LDFLAGS is really for ld-related flags for cc, not for ld, and some flags, e.g., -Bshareable, mean completely different things to cc and ld. Having the wrong things in LDFLAGS also broke the standard ${PROG} target. This was kludged around by using a special rule that depended on LDFLAGS being bogus. Fixing `make depend' broke the special rule but fixed the standard rule (except in the DESTDIR case, which was handled more strictly here than elsewhere).
* | Remove text about unsupported flags 'mdmbuf', 'local', 'crtscts' etcdavidn1997-04-131-16/+9
| | | | | | | | | | | | that are in reality handled in gettytab. Document the new 'dialin' and 'network' tty flags.
* | Submitted by: Philippe Charnier <charnier@xp11.frmug.org>davidn1997-04-121-7/+14
| | | | | | | | | | Fixes name size limitation (was hardcoded to 8). Closes PR#3258
* | Ensure that the remote host name is Nul terminated.mpp1997-04-081-1/+2
| | | | | | | | Closes PR# 2589.
* | Fix for expiration date test. Closes PR#3224.davidn1997-04-081-2/+2
| |
* | Use MAXHOSTNAMELEN, as opposed to an arbitrary number, and ensurejoerg1997-04-011-3/+6
| | | | | | | | | | | | | | | | correct termination if it overflows. Closes PR # misc/2982. Submitted by: Drew Derbyshire <ahd@kew.com>
* | Be a bit more careful about what port number we are using for thepeter1997-03-291-3/+7
| | | | | | | | | | second socket. If we're going to check for reserved ports, we should do it properly.
* | compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-2814-31/+31
| | | | | | | | posix standard on the topic.
* | Don't trucate username to 8 characters.davidn1997-03-251-24/+29
| |
* | Remove some incorrect text on how passwords are validated.mpp1997-03-251-3/+2
| | | | | | | | | | | | Closes PR# 3050. Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
* | Fix non explloitable buffer overflows (since the largest packet processedimp1997-03-241-3/+4
| | | | | | | | | | precludes it) to keep people from whining about it in the newsgroups and mailing lists.
* | Fix various buffer overflows that may or may not be exploitable.imp1997-03-241-5/+7
| | | | | | | | | | | | | | Fixes PR 2588 Reviewed by: Dan Cross? Submitted by: Julian Assange
* | Julian A's fix. Do chdir as user rather than as root. Fixes a minor NFSimp1997-03-241-8/+8
| | | | | | | | | | | | | | | | | | compatibility problem at the same time. Some buffer made large enough for worst case hostname. fixes PR 2593. Reviewed by: Dan Cross and maybe others
* | Change a reference to NetBSD to FreeBSD.mpp1997-03-141-2/+5
| |
* | Revert $FreeBSD$ to $Id$peter1997-02-2214-14/+14
| |
* | Revert $FreeBSD$ to $Id$peter1997-02-22161-172/+172
| |
* | #include <string.h> to help silence -Wall.mpp1997-02-201-0/+1
| |
* | Actually allow the -R flag.guido1997-02-131-1/+1
| |
* | Tidy-up modem-chat handling: ensure tty modes are restored todavidn1997-02-092-49/+45
| | | | | | | | | | | | | | | | | | 'sane' standard (not raw) settings before abort/exiting; move responsibility of setting raw mode for chat-handling out of chat.c to avoid doing redundant tc{s,g}etattr()s; move DE pause prior setting standard mode before issue/login prompt to avoid echoing modem connect strings. Fixed up comment styles in a couple of places.
* | Buffer Overflow from OpenBSDimp1997-02-091-1/+1
| | | | | | | | | | | | rev 1.7 deraadt: buf oflow Obtained from: OpenBSD
* | Some patches for source routed packets from OpenBSD.imp1997-02-091-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rev 1.16 deraadt: do not warn about valid options; invalid options correctly quit Rev 1.15 deraadt: need not clear options since bad ones cause exit; provos@ws1.physnet.uni-hamburg.de Rev 1.14 deraadt: IPOPT_LSRR/IPOPT_SSRR must exit() due to tcp sequencing; pointed out by provos@wserver.physnet.uni-hamburg.de. also another 1-char buffer overflow. Reviewed by: Peter Wemm Obtained from: OpenSBD
* | Some patches for source routed packets from OpenBSD.imp1997-02-091-13/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rev 1.13 deraadt: do not warn about valid options; invalid options correctly quit Rev 1.12 deraadt: need not clear options since bad ones cause exit; provos@ws1.physnet.uni-hamburg.de Rev 1.11 deraadt: IPOPT_LSRR/IPOPT_SSRR must exit() due to tcp sequencing; pointed out by provos@wserver.physnet.uni-hamburg.de. also another 1-char buffer overflow. Reviewed by: Peter Wemm Obtained from: OpenSBD
* | Fix a hop count datatype bogon pointed out in PR#2642 (though my fixjkh1997-02-071-5/+6
| | | | | | | | | | was slightly different than the one submitted). Submitted by: Elmar Bartel <bartel@informatik.tu-muenchen.de>
OpenPOWER on IntegriCloud