summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-09-29show level of macro expansion, not dummy 1 (finally found some gnu-m4Marc Espie
scripts where that level != 1, hard to test otherwise...) Put a space after comma. Both these make trace output much closer to gnu-m4 output for debugging purposes.
2001-09-29Synchronize comment with reality.Marc Espie
In gnu-m4 mode, pass the real number of arguments to changequote/changecom, since those distinguish changequote() from changequote.
2001-09-29document tracing and compatibility with other m4.Marc Espie
2001-09-28bug: read user config first; report kaukasoi@elektroni.ee.tut.fiMarkus Friedl
2001-09-28bzero private key after loading to smartcard; ok markus@Damien Miller
2001-09-28Remove debugging scaffoldingMarc Espie
2001-09-28Fix segv when smartcard communication error occurs during key load. ok markus@Damien Miller
2001-09-28semicolon -> colonJan-Uwe Finck
detected by mihaak@lecturax.tmfweb.nl
2001-09-28Use the new KERN_SYSVIPC_*_INFO sysctls; simonb@netbsd.orgTodd C. Miller
2001-09-28more emacs regexps in -g mode. Ok millert@Marc Espie
With this, some autoconf 2.52 scripts are now working completely.
2001-09-27pass all properties of builtins when defn...Marc Espie
2001-09-27Add missing "and semaphores" at the end of the description of the -T optionTodd C. Miller
2001-09-27o Add an extra byte for out_line and out_name in struct myutmp so weTodd C. Miller
can treat these as normal C strings. Fixes PR 2092 o KNF and ANSI fixes o Avoid strncpy() since well-meaning folks will try to convert to strlcpy() even when it is not sensible to do so. o Document the fact that the rwho protocol only supports up to 8 chars for a username.
2001-09-27some fixes and cleanups some from dfa@solo.ee, some pointedMichael Shalayeff
out by pjanzen@ .
2001-09-27don't talk about compile-time optionsCamiel Dobbelaar
ok markus@
2001-09-27oopsTheo de Raadt
2001-09-27typos; from solarMarkus Friedl
2001-09-27Needed logic to handle newlines correctly.Marc Espie
2001-09-27missing called=1; chombier@mac.comMarkus Friedl
2001-09-27mem leak; chombier@mac.comMarkus Friedl
2001-09-27traceon/traceoff built-ins.Marc Espie
2001-09-27calendar escaped which is not ready yetMichael Shalayeff
2001-09-27-Wall passage for prev commitMichael Shalayeff
2001-09-26fix the LANGMichael Shalayeff
2001-09-26special procesing for cyrillic calendars (.ru, .ua, .by for now).Michael Shalayeff
does not affect any existing behaviour for everything else. old idea expressed by form@; millert@ ok
2001-09-26Wall cleanup w/ some fixes; ok millertPeter Valchev
2001-09-25update from Denis Afonin <dfa@solo.ee>Michael Shalayeff
2001-09-25let configure script use GNUSYSTEM_AUX_DIRMarc Espie
2001-09-24OpenSSH_2.9.9Markus Friedl
2001-09-24Use setboolean for -h flag instead of casting things by hand.Todd C. Miller
2001-09-24don't rely on <unistd.h> for getopt(3) extern variable declarations;Kevin Steves
for portable. ok deraadt@
2001-09-23relax permission check for private key files.Markus Friedl
2001-09-23new rijndael implementationMarkus Friedl
2001-09-23for cu, default to 9600 baud rate instead of 1200Peter Valchev
mention what the default is in the man page ok millert
2001-09-21complete grep clone by harding@motd.ca; everything is there, but it isTheo de Raadt
slow because libc regexp is slow. Anyone out there have the balls to sit down and optimize libc regexp?
2001-09-21correct fork logic and rewrite for clarity, ok todd@Peter Stromberg
2001-09-20CheckMail removed. OKed stevesk@mouring
2001-09-20bug compat: request a dummy channel for -N (no shell) sessions + cleanup; ↵Markus Friedl
vinschen@redhat.com
2001-09-20key_read returns now -1 or 1Markus Friedl
2001-09-20fix ClientAliveCountMaxKevin Steves
2001-09-19don't advertise -V in usage; ok markus@Kevin Steves
2001-09-19missing -t in usageKevin Steves
2001-09-19Xref modload(8), not modstat(8).Miod Vallat
2001-09-19use sizeof addr vs. SUN_LEN(addr) for sockaddr_un. Stevens blessesKevin Steves
this and we do it this way elsewhere. this helps in portable because not all systems have SUN_LEN() and sockaddr_un.sun_len. ok markus@
2001-09-19add ClearAllForwardings ssh option and set it in scp and sftp; ok markus@Kevin Steves
2001-09-19key_read() now returns -1 on type mismatch, tooMarkus Friedl
2001-09-19inline some very common putback/chrsave. Worth roughly 10%Marc Espie
2001-09-19occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/
2001-09-19command=xxx applies to subsystem now, tooMarkus Friedl
2001-09-19Define ENTIRE_LINE to be -1 instead of 0 because we may want to copy 0 ↵Peter Valchev
characters, and use ENTIRE_LINE instead of hardcoding 0 in a few places. Fixes a bug when dw on an empty line would delete only the empty line, but copy the next line too. From NetBSD, ok millert