Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-12-12 | skey login script; authenticates the user via S/Key | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-12 | reject login script; rejects attempted authentication | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-12 | passwd login script; authenticates the user via passwd/yp | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-12 | lchpass login script; changes local password | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-12 | kerberos/passwd login script; authenticates the user via kerberos | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-12 | kerberos login script; authenticates the user via kerberos | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-12 | chpass login script; changes local, yp, or kerberos password | Todd C. Miller | |
will be used when BSD authentication is enabled | |||
2000-12-08 | strip sequences of spaces AFTER stripping other weird characters. | Marc Espie | |
2000-12-08 | Oops. | Hans Insulander | |
2000-12-08 | Bring recent kerberos fix into -stable. | Hans Insulander | |
2000-12-06 | Be more paranoid about passed KRB environment variables. | Hans Insulander | |
(ok art) | |||
2000-12-05 | asprintf can safe time doing character counts | Theo de Raadt | |
2000-12-04 | in replydirname(), avoid one-byte overrun. | Jun-ichiro itojun Hagino | |
From: Kristian Vlaardingerbroek <kris@obit.nl> | |||
2000-12-02 | The man page says the default umask is 027 but it is really 022 since | Todd C. Miller | |
that is the value of CMASK. Have setusercontext() set the umask unless the -u flag was specified. This allows the admin to set the umask either via -u or via a login class in login.conf. | |||
2000-11-26 | setusercontext should not set umask as this interferes with the | Todd C. Miller | |
umask specified for ftpd on the command line. Closed PR #1530 | |||
2000-11-26 | Update for pw_mkdb(3) interface change. All but vipw and userdel can | Todd C. Miller | |
specify a username (and thus avoid rebuilding the while database). | |||
2000-11-23 | typo in LPSV printing. From: Hiroyuki YAMAMORI <h-yamamo@db3.so-net.ne.jp> | Jun-ichiro itojun Hagino | |
2000-11-22 | More tweaks to recognize more weird cases: | Marc Espie | |
- handle \s+n as well as \s-n, - be smarter in finding name - subject delimitation in the presence of multiple dashes, always prefer a dash with intervening spaces if one is available, - handle spaces in macros everywhere, - recognize \(tm, - recognize .SM as a font change, - recognize .LP as another multiple subject separator, - strip indexing facilities .iX and .XX, - complain about unknown macros in picky mode, strip them anyways. | |||
2000-11-19 | Handle more manpages oddities: | Marc Espie | |
- recognizes \s<number> sequences (horizontal kerning) and removes them. - escaped | - parses .ds definitions, expands \*(ab and \*[abc...] (missing built-ins, such as en and em). - strips .HP, .VB - recognizes .Pp - handles some . ds (space in between). This fixes over 99% of all manpages generated from the ports tree. This is still missing a few cleanups and some regression testing. | |||
2000-11-16 | Don't use sizeof() a pointer as a length parameter. This change makes | Todd C. Miller | |
'line' from sys_term.c from a char * into a char array. There's no need to explicitly initialize the contents to 0 since that happens for globals anyway. | |||
2000-11-14 | cleanup EPSV/EPRT error handling. avoid possible memory leak (getaddrinfo). | Jun-ichiro itojun Hagino | |
correct error code on unsupported protocol parameter against EPRT (522). | |||
2000-11-13 | combine check_epsvall + check_login into check_login_epsvall. | Jun-ichiro itojun Hagino | |
we cnanot split check_login and check_epsvall. if we do that, we end up generating two results against single comand. | |||
2000-11-13 | make sure to check_login on EPSV/LPSV. move epvsall check into check_epsvall. | Jun-ichiro itojun Hagino | |
2000-11-10 | tiny fix on getaddrinfo error handling | Jun-ichiro itojun Hagino | |
2000-11-10 | correct call to freeaddrinfo. do not free region before referenced. | Jun-ichiro itojun Hagino | |
reported by ryo@iij.ad.jp for kame/netbsd, and aaron. | |||
2000-11-10 | seperate -> separate, okay aaron@ | Niels Provos | |
2000-11-09 | Change all option list specifications to ".Bl -tag -width Ds". Most man | Aaron Campbell | |
pages just needed their -width parameter tweaked to "Ds", which provides a nice width of 6 constant characters. For consistency more than anything. | |||
2000-11-08 | - Get rid of ".Sh OPTIONS" and always use the standard options list intro. | Aaron Campbell | |
- Move some BUGS/CAVEATS to the end of the man pages where they should go. - Correct some .Nm usage. | |||
2000-10-30 | libexec man page fleshing. again, bored on the plane home. | Aaron Campbell | |
2000-10-24 | When calling setupterm() pass in an int* for the error code so | Todd C. Miller | |
it doesn't spew to stderr if the terminal type can't be found. Fix a logic thinko wrt terminaltypeok() -- it should return 0 on failure, not success. | |||
2000-10-19 | close pr 1429, sendmail doesn't use EX_UNAVAILABLE for this anymore. | Bob Beck | |
2000-10-19 | Fix bug in dl_strcmp, it is not always legal to access a pointer | Dale Rahn | |
at offset -1, the code that was here was very odd, the corrected code was basically copied from the libsa version. | |||
2000-10-19 | Update: check malloc() returns, simplify, be a little more paranoid. | Paul Janzen | |
Mostly from NetBSD. | |||
2000-10-14 | tcp wrapper support for IPv6. from netbsd. | Jun-ichiro itojun Hagino | |
TODO: scoped address support may need more consideration (we are taking safer side now - rejects too much). | |||
2000-10-13 | Clean up static constructor/destructor discovery and calling. Instead | Dale Rahn | |
of relying on magic variable names, reqire that the library provide the _init/_fini functions so that the linker will find them and create the DT_INIT and DT_FINI sections of the .dynamic section of the shared library. With the shared library providing the DT_INIT function pointer, it is now possible to just check the init field and call it if defined, if not defined no constructors are needed. This cleans up the code in ld.so greatly. | |||
2000-10-13 | Add secondary c++ shared library for testing purposes to verify | Dale Rahn | |
that appropriate constructors in each library are called. | |||
2000-10-13 | Makefile: | Dale Rahn | |
build with ${CC} -shared like the rest of shared libraries do now, instead of using ${LD}. Other files: make output more useful so that it is possible to tell if a constructor/destructor is running the correct number of times. | |||
2000-10-10 | Link with curses, not ocurses and use setupterm(). For now, telnet(1) | Todd C. Miller | |
still needs ocurses but that will change. | |||
2000-10-10 | Prune the following environment variables: | Todd C. Miller | |
TERMINFO TERMINFO_DIRS TERMPATH TERMCAP (only if it starts with a '/') | |||
2000-10-10 | need more size to big_buf for line termination (\r\n). | Jun-ichiro itojun Hagino | |
2000-10-10 | use poll to avoid fd_set overflow | Theo de Raadt | |
2000-10-06 | use fd_set instead of int | Theo de Raadt | |
2000-10-06 | Work around a shared library/pmap bug on the powerpc arch. Somehow | Dale S. Rahn | |
it seems that the instruction cache will not get properly initialized or a problem exists with mmaping code and being able to execute it. This workaround is excessive in that it flushes the cache for the entire mmaped library. This slows down program startup, but seems to eliminate the problem. | |||
2000-10-06 | Remove the unimplemented -edebug flag from usage and manpage. | Hans Insulander | |
2000-10-01 | Sync the cache as specified by the powerpc manuals, didn't change anything. | Dale S. Rahn | |
but is more correct. | |||
2000-10-01 | Fix some very serious cut and paste errors in this code. | Dale S. Rahn | |
2000-09-17 | activate ldd, and indent some ld.so messages to make it easier to see what ↵ | Theo de Raadt | |
is going on | |||
2000-09-15 | check return value for setenv(3) for failure, and deal appropriately | Theo de Raadt | |
2000-09-11 | ldd compatibility (if we had ldd for this ld.so) | Dale S. Rahn | |
respect the LD_TRACE_LOADED_OBJECTS environment variable, print loaded libraries and exit, do not execute program. | |||
2000-09-08 | Some miscellaneous man page repairs. | Aaron Campbell | |