]> andersk Git - openssh.git/blob - ChangeLog
- djm@cvs.openbsd.org 2001/12/21 08:52:22
[openssh.git] / ChangeLog
1 20020122
2  - (djm) autoconf hacking:
3    - We don't support --without-zlib currently, so don't allow it.
4    - Rework cryptographic random number support detection. We now detect 
5      whether OpenSSL seeds itself. If it does, then we don't bother with 
6      the ssh-rand-helper program. You can force the use of ssh-rand-helper
7      using the --with-rand-helper configure argument
8    - Simplify and clean up ssh-rand-helper configuration
9    - Add OpenSSL sanity check: verify that header version matches version
10      reported by library
11  - (djm) Fix some bugs I introduced into ssh-rand-helper yesterday
12  - OpenBSD CVS Sync
13    - djm@cvs.openbsd.org 2001/12/21 08:52:22
14      [ssh-keygen.1 ssh-keygen.c]
15      Remove default (rsa1) key type; ok markus@
16
17 20020121
18  - (djm) Rework ssh-rand-helper:
19    - Reduce quantity of ifdef code, in preparation for ssh_rand_conf
20    - Always seed from system calls, even when doing PRNGd seeding
21    - Tidy and comment #define knobs
22    - Remove unused facility for multiple runs through command list
23    - KNF, cleanup, update copyright
24
25 20020114
26  - (djm) Bug #50 - make autoconf entropy path checks more robust
27
28 20020108
29  - (djm) Merge Cygwin copy_environment with do_pam_environment, removing 
30    fixed env var size limit in the process. Report from Corinna Vinschen 
31    <vinschen@redhat.com>
32  - (stevesk) defines.h: use "/var/spool/sockets/X11/%u" for HP-UX.  does
33    not depend on transition links.  from Lutz Jaenicke.
34
35 20020106
36  - (stevesk) defines.h: determine _PATH_UNIX_X; currently "/tmp/.X11-unix/X%u"
37    for all platforms except HP-UX, which is "/usr/spool/sockets/X11/%u".
38
39 20020105
40  - (bal) NCR requies use_pipes to operate correctly.
41  - (stevesk) fix spurious ; from NCR change.
42
43 20020103
44  - (djm) Use bigcrypt() on systems with SCO_PROTECTED_PW. Patch from 
45    Roger Cornelius <rac@tenzing.org>
46
47 20011229
48  - (djm) Apply Cygwin pointer deref fix from Corinna Vinschen 
49    <vinschen@redhat.com> Could be abused to guess valid usernames
50  - (djm) Typo in contrib/cygwin/README Fix from Corinna Vinschen
51    <vinschen@redhat.com>
52
53 20011228
54  - (djm) Remove recommendation to use GNU make, we should support most
55    make programs.
56
57 20011225
58  - (stevesk) [Makefile.in ssh-rand-helper.c]
59    portable lib and __progname support for ssh-rand-helper; ok djm@
60
61 20011223
62  - (bal) Removed contrib/chroot.diff and noted in contrib/README that it
63    was not being maintained.
64
65 20011222
66  - (djm) Ignore fix & patchlevel in OpenSSL version check. Patch from 
67    solar@openwall.com
68  - (djm) Rework entropy code. If the OpenSSL PRNG is has not been 
69    internally seeded, execute a subprogram "ssh-rand-helper" to obtain
70    some entropy for us. Rewrite the old in-process entropy collecter as
71    an example ssh-rand-helper.
72  - (djm) Always perform ssh_prng_cmds path lookups in configure, even if
73    we don't end up using ssh_prng_cmds (so we always get a valid file) 
74       
75 20011221
76  - (djm) Add option to gnome-ssh-askpass to stop it from grabbing the X
77    server. I have found this necessary to avoid server hangs with X input
78    extensions (e.g. kinput2). Enable by setting the environment variable
79    "GNOME_SSH_ASKPASS_NOGRAB"
80   - OpenBSD CVS Sync
81    - stevesk@cvs.openbsd.org 2001/12/08 17:49:28
82      [channels.c pathnames.h]
83      use only one path to X11 UNIX domain socket vs. an array of paths
84      to try.  report from djast@cs.toronto.edu.  ok markus@
85    - markus@cvs.openbsd.org 2001/12/09 18:45:56
86      [auth2.c auth2-chall.c auth.h]
87      add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions,
88      fixes memleak.
89    - stevesk@cvs.openbsd.org 2001/12/10 16:45:04
90      [sshd.c]
91      possible fd leak on error; ok markus@
92    - markus@cvs.openbsd.org 2001/12/10 20:34:31
93      [ssh-keyscan.c]
94      check that server supports v1 for -t rsa1, report from wirth@dfki.de
95    - jakob@cvs.openbsd.org 2001/12/18 10:04:21
96      [auth.h hostfile.c hostfile.h]
97      remove auth_rsa_read_key, make hostfile_ready_key non static; ok markus@
98    - jakob@cvs.openbsd.org 2001/12/18 10:05:15
99      [auth2.c]
100      log fingerprint on successful public key authentication; ok markus@
101    - jakob@cvs.openbsd.org 2001/12/18 10:06:24
102      [auth-rsa.c]
103      log fingerprint on successful public key authentication, simplify 
104      usage of key structs; ok markus@
105    - deraadt@cvs.openbsd.org 2001/12/19 07:18:56
106      [auth1.c auth2.c auth2-chall.c auth-bsdauth.c auth.c authfile.c auth.h]
107      [auth-krb4.c auth-rhosts.c auth-skey.c bufaux.c canohost.c channels.c]
108      [cipher.c clientloop.c compat.c compress.c deattack.c key.c log.c mac.c]
109      [match.c misc.c nchan.c packet.c readconf.c rijndael.c rijndael.h scard.c]
110      [servconf.c servconf.h serverloop.c session.c sftp.c sftp-client.c]
111      [sftp-glob.c sftp-int.c sftp-server.c ssh-add.c ssh-agent.c ssh.c]
112      [sshconnect1.c sshconnect2.c sshconnect.c sshd.8 sshd.c sshd_config]
113      [ssh-keygen.c sshlogin.c sshpty.c sshtty.c ttymodes.c uidswap.c]
114      basic KNF done while i was looking for something else
115    - markus@cvs.openbsd.org 2001/12/19 16:09:39
116      [serverloop.c]
117      fix race between SIGCHLD and select with an additional pipe.  writing
118      to the pipe on SIGCHLD wakes up select(). using pselect() is not
119      portable and siglongjmp() ugly. W. R. Stevens suggests similar solution.
120      initial idea by pmenage@ensim.com; ok deraadt@, djm@
121    - stevesk@cvs.openbsd.org 2001/12/19 17:16:13
122      [authfile.c bufaux.c bufaux.h buffer.c buffer.h packet.c packet.h ssh.c]
123      change the buffer/packet interface to use void* vs. char*; ok markus@
124    - markus@cvs.openbsd.org 2001/12/20 16:37:29
125      [channels.c channels.h session.c]
126      setup x11 listen socket for just one connect if the client requests so.
127      (v2 only, but the openssh client does not support this feature).
128    - djm@cvs.openbsd.org 2001/12/20 22:50:24
129      [auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c]
130      [dispatch.h kex.c kex.h packet.c packet.h serverloop.c ssh.c]
131      [sshconnect2.c]
132      Conformance fix: we should send failing packet sequence number when
133      responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by
134      yakk@yakk.dot.net; ok markus@
135
136 20011219
137  - (stevesk) OpenBSD CVS sync X11 localhost display
138    - stevesk@cvs.openbsd.org 2001/11/29 14:10:51
139      [channels.h channels.c session.c]
140      sshd X11 fake server will now listen on localhost by default:
141      $ echo $DISPLAY
142      localhost:12.0
143      $ netstat -an|grep 6012
144      tcp        0      0  127.0.0.1.6012         *.*                    LISTEN
145      tcp6       0      0  ::1.6012               *.*                    LISTEN
146      sshd_config gatewayports=yes can be used to revert back to the old
147      behavior.  will control this with another option later.  ok markus@
148    - stevesk@cvs.openbsd.org 2001/12/19 08:43:11
149      [includes.h session.c]
150      handle utsname.nodename case for FamilyLocal X authorization; ok markus@
151         
152 20011207
153  - (bal) PCRE no longer required.  Banished from the source along with
154    fake-regex.h
155  - (bal) OpenBSD CVS Sync
156    - stevesk@cvs.openbsd.org 2001/12/06 18:02:32
157      [channels.c sshconnect.c]
158      shutdown(sock, SHUT_RDWR) not needed here; ok markus@
159    - stevesk@cvs.openbsd.org 2001/12/06 18:09:23
160      [channels.c session.c]
161      strncpy->strlcpy.  remaining strncpy's are necessary.  ok markus@
162    - stevesk@cvs.openbsd.org 2001/12/06 18:20:32
163      [channels.c]
164      disable nagle for X11 fake server and client TCPs.  from netbsd.
165      ok markus@
166
167 20011206
168  - (bal) OpenBSD CVS Sync
169    - deraadt@cvs.openbsd.org 2001/11/14 20:45:08
170      [sshd.c]
171      errno saving wrapping in a signal handler
172    - markus@cvs.openbsd.org 2001/11/16 12:46:13
173      [ssh-keyscan.c]
174      handle empty lines instead of dumping core; report from sha@sha-1.net
175    - stevesk@cvs.openbsd.org 2001/11/17 19:14:34
176      [auth2.c auth.c readconf.c servconf.c ssh-agent.c ssh-keygen.c]
177      enum/int type cleanup where it made sense to do so; ok markus@
178    - markus@cvs.openbsd.org 2001/11/19 11:20:21
179      [sshd.c]
180      fd leak on HUP; ok stevesk@
181    - stevesk@cvs.openbsd.org 2001/11/19 18:40:46
182      [ssh-agent.1]
183      clarify/state that private keys are not exposed to clients using the 
184      agent; ok markus@
185    - mpech@cvs.openbsd.org 2001/11/19 19:02:16
186      [deattack.c radix.c]
187      kill more registers
188      millert@ ok
189    - markus@cvs.openbsd.org 2001/11/21 15:51:24
190      [key.c]
191      mem leak
192    - stevesk@cvs.openbsd.org 2001/11/21 18:49:14
193      [ssh-keygen.1]
194      more on passphrase construction; ok markus@
195    - stevesk@cvs.openbsd.org 2001/11/22 05:27:29
196      [ssh-keyscan.c]
197      don't use "\n" in fatal()
198    - markus@cvs.openbsd.org 2001/11/22 12:34:22
199      [clientloop.c serverloop.c sshd.c]
200      volatile sig_atomic_t
201    - stevesk@cvs.openbsd.org 2001/11/29 19:06:39
202      [channels.h]
203      remove dead function prototype; ok markus@
204    - markus@cvs.openbsd.org 2001/11/29 22:08:48
205      [auth-rsa.c]
206      fix protocol error: send 'failed' message instead of a 2nd challenge
207      (happens if the same key is in authorized_keys twice).
208      reported Ralf_Meister@genua.de; ok djm@
209    - stevesk@cvs.openbsd.org 2001/11/30 20:39:28
210      [ssh.c]
211      sscanf() length dependencies are clearer now; can also shrink proto
212      and data if desired, but i have not done that.  ok markus@
213    - markus@cvs.openbsd.org 2001/12/01 21:41:48
214      [session.c sshd.8]
215      don't pass user defined variables to /usr/bin/login
216    - deraadt@cvs.openbsd.org 2001/12/02 02:08:32
217      [sftp-common.c]
218      zap };
219    - itojun@cvs.openbsd.org 2001/12/05 03:50:01
220      [clientloop.c serverloop.c sshd.c]
221      deal with LP64 printf issue with sig_atomic_t.  from thorpej
222    - itojun@cvs.openbsd.org 2001/12/05 03:56:39
223      [auth1.c auth2.c canohost.c channels.c deattack.c packet.c scp.c 
224       sshconnect2.c]
225      make it compile with more strict prototype checking
226    - deraadt@cvs.openbsd.org 2001/12/05 10:06:12
227      [authfd.c authfile.c bufaux.c channels.c compat.c kex.c kexgex.c 
228       key.c misc.c packet.c servconf.c ssh-agent.c sshconnect2.c 
229       sshconnect.c sshd.c ssh-dss.c ssh-keygen.c ssh-rsa.c]
230      minor KNF
231    - markus@cvs.openbsd.org 2001/12/05 15:04:48
232      [version.h]
233      post 3.0.2
234    - markus@cvs.openbsd.org 2001/12/05 16:54:51
235      [compat.c match.c match.h]
236      make theo and djm happy: bye bye regexp
237    - markus@cvs.openbsd.org 2001/12/06 13:30:06
238      [servconf.c servconf.h sshd.8 sshd.c]
239      add -o to sshd, too. ok deraadt@
240  - (bal) Minor white space fix up in servconf.c
241
242 20011126
243  - (tim) [contrib/cygwin/README, openbsd-compat/bsd-cygwin_util.c,
244    openbsd-compat/bsd-cygwin_util.h, openbsd-compat/daemon.c]
245    Allow SSHD to install as service under WIndows 9x/Me
246    [configure.ac] Fix to allow linking against PCRE on Cygwin
247    Patches by Corinna Vinschen <vinschen@redhat.com>
248
249 20011115
250  - (djm) Fix IPv4 default in ssh-keyscan. Spotted by Dan Astoorian 
251    <djast@cs.toronto.edu> Fix from markus@
252  - (djm) Release 3.0.1p1
253
254 20011113
255  - (djm) Fix early (and double) free of remote user when using Kerberos. 
256    Patch from Simon Wilkinson <simon@sxw.org.uk>
257  - (djm) AIX login{success,failed} changes. Move loginsuccess call to 
258    do_authenticated. Call loginfailed for protocol 2 failures > MAX like 
259    we do for protocol 1. Reports from Ralf Wenk <wera0003@fh-karlsruhe.de>,
260    K.Wolkersdorfer@fz-juelich.de and others
261  - (djm) OpenBSD CVS Sync
262    - dugsong@cvs.openbsd.org 2001/11/11 18:47:10
263      [auth-krb5.c]
264      fix krb5 authorization check. found by <jhawk@MIT.EDU>. from 
265      art@, deraadt@ ok
266    - markus@cvs.openbsd.org  2001/11/12 11:17:07
267      [servconf.c]
268      enable authorized_keys2 again. tested by fries@
269    - markus@cvs.openbsd.org  2001/11/13 02:03:57
270      [version.h]
271      enter 3.0.1
272  - (djm) Bump RPM package versions
273
274 20011112
275  - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
276  - (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com>
277  - OpenBSD CVS Sync
278    - markus@cvs.openbsd.org 2001/10/24 08:41:41
279      [sshd.c]
280      mention remote port in debug message
281    - markus@cvs.openbsd.org 2001/10/24 08:41:20
282      [ssh.c]
283      remove unused
284    - markus@cvs.openbsd.org 2001/10/24 08:51:35
285      [clientloop.c ssh.c]
286      ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@
287    - markus@cvs.openbsd.org 2001/10/24 19:57:40
288      [clientloop.c]
289      make ~& (backgrounding) work again for proto v1; add support ~& for v2, too
290    - markus@cvs.openbsd.org 2001/10/25 21:14:32
291      [ssh-keygen.1 ssh-keygen.c]
292      better docu for fingerprinting, ok deraadt@
293    - markus@cvs.openbsd.org 2001/10/29 19:27:15
294      [sshconnect2.c]
295      hostbased: check for client hostkey before building chost
296    - markus@cvs.openbsd.org 2001/10/30 20:29:09
297      [ssh.1]
298      ssh.1
299    - markus@cvs.openbsd.org 2001/11/07 16:03:17
300      [packet.c packet.h sshconnect2.c]
301      pad using the padding field from the ssh2 packet instead of sending
302      extra ignore messages. tested against several other ssh servers.
303    - markus@cvs.openbsd.org 2001/11/07 21:40:21
304      [ssh-rsa.c]
305      ssh_rsa_sign/verify: SSH_BUG_SIGBLOB not supported
306    - markus@cvs.openbsd.org 2001/11/07 22:10:28
307      [ssh-dss.c ssh-rsa.c]
308      missing free and sync dss/rsa code.
309    - markus@cvs.openbsd.org 2001/11/07 22:12:01
310      [sshd.8]
311      s/Keepalive/KeepAlive/; from openbsd@davidkrause.com
312    - markus@cvs.openbsd.org 2001/11/07 22:41:51
313      [auth2.c auth-rh-rsa.c]
314      unused includes
315    - markus@cvs.openbsd.org 2001/11/07 22:53:21
316      [channels.h]
317      crank c->path to 256 so they can hold a full hostname; dwd@bell-labs.com
318    - markus@cvs.openbsd.org 2001/11/08 10:51:08
319      [readpass.c]
320      don't strdup too much data; from gotoh@taiyo.co.jp; ok millert.
321    - markus@cvs.openbsd.org 2001/11/08 17:49:53
322      [ssh.1]
323      mention setuid root requirements; noted by cnorris@csc.UVic.ca; ok stevesk@
324    - markus@cvs.openbsd.org 2001/11/08 20:02:24
325      [auth.c]
326      don't print ROOT in CAPS for the authentication messages, i.e.
327         Accepted publickey for ROOT from 127.0.0.1 port 42734 ssh2
328      becomes
329         Accepted publickey for root from 127.0.0.1 port 42734 ssh2
330    - markus@cvs.openbsd.org 2001/11/09 18:59:23
331      [clientloop.c serverloop.c]
332      don't memset too much memory, ok millert@
333      original patch from jlk@kamens.brookline.ma.us via nalin@redhat.com
334    - markus@cvs.openbsd.org 2001/11/10 13:19:45
335      [sshd.c]
336      cleanup libwrap support (remove bogus comment, bogus close(), add 
337      debug, etc).
338    - markus@cvs.openbsd.org 2001/11/10 13:22:42
339      [ssh-rsa.c]
340      KNF (unexpand)
341    - markus@cvs.openbsd.org 2001/11/10 13:37:20
342      [packet.c]
343      remove extra debug()
344    - markus@cvs.openbsd.org 2001/11/11 13:02:31
345      [servconf.c]
346      make AuthorizedKeysFile2 fallback to AuthorizedKeysFile if 
347      AuthorizedKeysFile is specified.
348  - (djm) Reorder portable-specific server options so that they come first. 
349    This should help reduce diff collisions for new server options (as they
350    will appear at the end)
351
352 20011109
353  - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
354    if permit_empty_passwd == 0 so null password check cannot be bypassed.
355    jayaraj@amritapuri.com OpenBSD bug 2168
356    - markus@cvs.openbsd.org 2001/11/09 19:08:35
357      [sshd.c]
358      remove extra trailing dot from log message; pilot@naughty.monkey.org
359
360 20011103
361  - (tim) [ contrib/caldera/openssh.spec contrib/caldera/sshd.init] Updates 
362    from Raymund Will <ray@caldera.de>
363    [acconfig.h configure.in] Clean up login checks.
364    Problem reported by Jim Knoble <jmknoble@pobox.com>
365
366 20011101
367  - (djm) Compat define for OpenSSL < 0.9.6 (No OPENSSL_free)
368
369 20011031
370  - (djm) Unsmoke drugs: config files should be noreplace.
371
372 20011030
373  - (djm) Redhat RPM spec: remove noreplace from config files, allow IPv6 
374    by default (can force IPv4 using --define "noipv6 1")
375
376 20011029
377  - (tim) [TODO defines.h loginrec.c] Change the references to configure.in
378    to configure.ac
379
380 20011028
381  - (djm) Avoid bug in Solaris PAM libs
382  - (djm) Disconnect if no tty and PAM reports password expired
383  - (djm) Fix for PAM password changes being echoed (from stevesk)
384  - (stevesk) Fix compile problem with PAM password change fix
385  - (stevesk) README: zlib location is http://www.gzip.org/zlib/
386
387 20011027
388  - (tim) [configure.ac] Fixes for ReliantUNIX (don't use libucb)
389    Patch by Robert Dahlem <Robert.Dahlem@siemens.com>
390
391 20011026
392  - (bal) Set the correct current time in login_utmp_only().  Patch by
393    Wayne Davison <wayned@users.sourceforge.net>
394  - (tim) [scard/Makefile.in] Fix install: when building outside of source
395          tree and using --src=/full_path/to/openssh
396          Patch by Mark D. Baushke <mdb@juniper.net>
397
398 20011025
399  - (bal) Use VDISABLE if _POSIX_VDISABLE is set in readpassphrase.c.  Patch
400    by todd@
401  - (tim) [configure.ac] Give path given in --with-xxx= for pcre,zlib, and
402          tcp-wrappers precedence over system libraries and includes.
403          Report from Dave Dykstra <dwd@bell-labs.com>
404
405 20011024
406  - (bal) Should be 3.0p1 not 3.0p2.  Corrected version.h already.
407  - (tim) configure.in -> configure.ac
408
409 20011023
410  - (bal) Updated version to 3.0p1 in preparing for release.
411  - (bal) Added 'PAM_TTY_KLUDGE' to Solaris platform.
412  - (tim) [configure.in] Fix test for broken dirname. Based on patch from
413          Dave Dykstra <dwd@bell-labs.com>. Remove un-needed test for zlib.h.
414          [contrib/caldera/openssh.spec, contrib/redhat/openssh.spec,
415          contrib/suse/openssh.spec] Update version to match version.h
416
417 20011022
418  - (djm) Fix fd leak in loginrec.c (ro fd to lastlog was left open).
419    Report from Michal Zalewski <lcamtuf@coredump.cx>
420
421 20011021
422  - (tim) [configure.in] Clean up library testing. Add optional PATH to
423          --with-pcre, --with-zlib, and --with-tcp-wrappers. Based on
424          patch by albert chin (china@thewrittenword.com)
425          Re-arange AC_CHECK_HEADERS and AC_CHECK_FUNCS for eaiser reading
426          of patches to configure.in. Replace obsolete AC_STRUCT_ST_BLKSIZE
427          with AC_CHECK_MEMBERS. Add test for broken dirname() on
428          Solaris 2.5.1 by Dan Astoorian <djast@cs.toronto.edu>
429          [acconfig.h aclocal.m4 defines.h configure.in] Better socklen_t test.
430          patch by albert chin (china@thewrittenword.com)
431          [scp.c] Replace obsolete HAVE_ST_BLKSIZE with
432          HAVE_STRUCT_STAT_ST_BLKSIZE.
433          [Makefile.in] When running make in top level, always do make
434          in openbsd-compat. patch by Dave Dykstra <dwd@bell-labs.com>
435
436 20011019
437  - (bal) Fixed up init.d symlink issue and piddir stuff.  Patches by
438    Zoran Milojevic <Zoran.Milojevic@SS8.com> and j.petersen@msh.de 
439
440 20011012
441  - (djm) OpenBSD CVS Sync
442    - markus@cvs.openbsd.org 2001/10/10 22:18:47
443      [channels.c channels.h clientloop.c nchan.c serverloop.c]
444      [session.c session.h]
445      try to keep channels open until an exit-status message is sent.
446      don't kill the login shells if the shells stdin/out/err is closed.
447      this should now work:
448      ssh -2n localhost 'exec > /dev/null 2>&1; sleep 10; exit 5'; echo ?
449    - markus@cvs.openbsd.org 2001/10/11 13:45:21
450      [session.c]
451      delay detach of session if a channel gets closed but the child is 
452      still alive.  however, release pty, since the fd's to the child are 
453      already closed.
454    - markus@cvs.openbsd.org 2001/10/11 15:24:00
455      [clientloop.c]
456      clear select masks if we return before calling select().
457  - (djm) "make veryclean" fix from Tom Holroyd <tomh@po.crl.go.jp>
458  - (djm) Clean some autoconf-2.52 junk when doing "make distclean"
459  - (djm) Cleanup sshpty.c a little
460  - (bal) First wave of contrib/solaris/ package upgrades.  Still more
461    work needs to be done, but it is a 190% better then the stuff we
462    had before!
463  - (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
464    set right.
465
466 20011010
467  - (djm) OpenBSD CVS Sync
468    - markus@cvs.openbsd.org 2001/10/04 14:34:16
469      [key.c]
470      call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com
471    - markus@cvs.openbsd.org 2001/10/04 15:05:40
472      [channels.c serverloop.c]
473      comment out bogus conditions for selecting on connection_in
474    - markus@cvs.openbsd.org 2001/10/04 15:12:37
475      [serverloop.c]
476      client_alive_check cleanup
477    - markus@cvs.openbsd.org 2001/10/06 00:14:50
478      [sshconnect.c]
479      remove unused argument
480    - markus@cvs.openbsd.org 2001/10/06 00:36:42
481      [session.c]
482      fix typo in error message, sync with do_exec_nopty
483    - markus@cvs.openbsd.org 2001/10/06 11:18:19
484      [sshconnect1.c sshconnect2.c sshconnect.c]
485      unify hostkey check error messages, simplify prompt.
486    - markus@cvs.openbsd.org 2001/10/07 10:29:52
487      [authfile.c]
488      grammer; Matthew_Clarke@mindlink.bc.ca
489    - markus@cvs.openbsd.org 2001/10/07 17:49:40
490      [channels.c channels.h]
491      avoid possible FD_ISSET overflow for channels established
492      during channnel_after_select() (used for dynamic channels).
493    - markus@cvs.openbsd.org 2001/10/08 11:48:57
494      [channels.c]
495      better debug
496    - markus@cvs.openbsd.org 2001/10/08 16:15:47
497      [sshconnect.c]
498      use correct family for -b option
499    - markus@cvs.openbsd.org 2001/10/08 19:05:05
500      [ssh.c sshconnect.c sshconnect.h ssh-keyscan.c]
501      some more IPv4or6 cleanup
502    - markus@cvs.openbsd.org 2001/10/09 10:12:08
503      [session.c]
504      chdir $HOME after krb_afslog(); from bbense@networking.stanford.edu
505    - markus@cvs.openbsd.org 2001/10/09 19:32:49
506      [session.c]
507      stat subsystem command before calling do_exec, and return error to client.
508    - markus@cvs.openbsd.org 2001/10/09 19:51:18
509      [serverloop.c]
510      close all channels if the connection to the remote host has been closed,
511      should fix sshd's hanging with WCHAN==wait
512    - markus@cvs.openbsd.org 2001/10/09 21:59:41
513      [channels.c channels.h serverloop.c session.c session.h]
514      simplify session close: no more delayed session_close, no more 
515      blocking wait() calls.
516  - (bal) removed two unsed headers in openbsd-compat/bsd-misc.c 
517  - (bal) seed_init() and seed_rng() required in ssh-keyscan.c
518
519 20011007
520  - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
521    Prompted by Matthew Vernon <matthew@sel.cam.ac.uk> 
522
523 20011005
524  - (bal) AES works under Cray, no more hack. 
525
526 20011004
527  - (bal) nchan2.ms resync.  BSD License applied.
528
529 20011003
530  - (bal) CVS ID fix up in version.h
531  - (bal) OpenBSD CVS Sync:
532    - markus@cvs.openbsd.org 2001/09/27 11:58:16
533      [compress.c]
534      mem leak; chombier@mac.com
535    - markus@cvs.openbsd.org 2001/09/27 11:59:37
536      [packet.c]
537      missing called=1; chombier@mac.com
538    - markus@cvs.openbsd.org 2001/09/27 15:31:17
539      [auth2.c auth2-chall.c sshconnect1.c]
540      typos; from solar
541    - camield@cvs.openbsd.org 2001/09/27 17:53:24
542      [sshd.8]
543      don't talk about compile-time options
544      ok markus@
545    - djm@cvs.openbsd.org 2001/09/28 12:07:09
546      [ssh-keygen.c]
547      bzero private key after loading to smartcard; ok markus@
548    - markus@cvs.openbsd.org 2001/09/28 15:46:29
549      [ssh.c]
550      bug: read user config first; report kaukasoi@elektroni.ee.tut.fi
551    - markus@cvs.openbsd.org 2001/10/01 08:06:28
552      [scp.c]
553      skip filenames containing \n; report jdamery@chiark.greenend.org.uk
554      and matthew@debian.org
555    - markus@cvs.openbsd.org 2001/10/01 21:38:53
556      [channels.c channels.h ssh.c sshd.c]
557      remove ugliness; vp@drexel.edu via angelos
558    - markus@cvs.openbsd.org 2001/10/01 21:51:16
559      [readconf.c readconf.h ssh.1 sshconnect.c]
560      add NoHostAuthenticationForLocalhost; note that the hostkey is
561      now check for localhost, too.
562    - djm@cvs.openbsd.org 2001/10/02 08:38:50
563      [ssh-add.c]
564      return non-zero exit code on error; ok markus@
565    - stevesk@cvs.openbsd.org 2001/10/02 22:56:09
566      [sshd.c]
567      #include "channels.h" for channel_set_af()
568    - markus@cvs.openbsd.org 2001/10/03 10:01:20
569      [auth.c]
570      use realpath() for homedir, too. from jinmei@isl.rdc.toshiba.co.jp
571
572 20011001
573  - (stevesk) loginrec.c: fix type conversion problems exposed when using
574    64-bit off_t.
575         
576 20010929
577  - (bal) move reading 'config.h' up higher.  Patch by albert chin
578    <china@thewrittenword.com)
579
580 20010928
581  - (djm) OpenBSD CVS sync:
582    - djm@cvs.openbsd.org 2001/09/28 09:49:31
583      [scard.c]
584      Fix segv when smartcard communication error occurs during key load. 
585      ok markus@
586  - (djm) Update spec files for new x11-askpass
587
588 20010927
589  - (stevesk) session.c: declare do_pre_login() before use
590    wayned@users.sourceforge.net
591
592 20010925
593  - (djm) Pull in auth-krb5.c from OpenBSD CVS. NB. it is not currently used.
594  - (djm) Sync $sysconfdir/moduli
595  - (djm) Add AC_SYS_LARGEFILE configure test
596  - (djm) Avoid bad and unportable sprintf usage in compat code
597
598 20010923
599  - (bal) updated ssh.c to mirror minor getopts 'extern int' formating done
600    by stevesk@
601  - (bal) Removed 'extern int optopt;' since it is dead wood.
602  - (bal) Updated all *.specs for 2.9.9p1 and updated version.h
603
604 20010923
605  - (bal) OpenBSD CVS Sync
606    - markus@cvs.openbsd.org 2001/09/23 11:09:13
607      [authfile.c]
608      relax permission check for private key files.
609    - markus@cvs.openbsd.org 2001/09/23 09:58:13
610      [LICENCE]
611      new rijndael implementation
612
613 20010920
614  - (tim) [scard/Makefile.in] Don't strip the Java binary
615  - (stevesk) sun_len, SUN_LEN() configure stuff no longer required
616  - (bal) OpenBSD CVS Sync
617    - stevesk@cvs.openbsd.org 2001/09/20 00:15:54
618      [sshd.8]
619      fix ClientAliveCountMax
620    - markus@cvs.openbsd.org 2001/09/20 13:46:48
621      [auth2.c]
622      key_read returns now -1 or 1
623    - markus@cvs.openbsd.org 2001/09/20 13:50:40
624      [compat.c compat.h ssh.c]
625      bug compat: request a dummy channel for -N (no shell) sessions + 
626      cleanup; vinschen@redhat.com
627    - mouring@cvs.openbsd.org 2001/09/20 20:57:51
628      [sshd_config]
629      CheckMail removed.  OKed stevesk@
630
631 20010919
632  - (bal) OpenBSD Sync
633    - markus@cvs.openbsd.org 2001/09/19 10:08:51
634      [sshd.8]
635      command=xxx applies to subsystem now, too
636    - markus@cvs.openbsd.org 2001/09/19 13:23:29
637      [key.c]
638      key_read() now returns -1 on type mismatch, too
639    - stevesk@cvs.openbsd.org 2001/09/19 19:24:19
640      [readconf.c readconf.h scp.c sftp.c ssh.1]
641      add ClearAllForwardings ssh option and set it in scp and sftp; ok 
642      markus@
643    - stevesk@cvs.openbsd.org 2001/09/19 19:35:30
644      [authfd.c]
645      use sizeof addr vs. SUN_LEN(addr) for sockaddr_un.  Stevens 
646      blesses this and we do it this way elsewhere.  this helps in 
647      portable because not all systems have SUN_LEN() and 
648      sockaddr_un.sun_len.  ok markus@
649    - stevesk@cvs.openbsd.org 2001/09/19 21:04:53
650      [sshd.8]
651      missing -t in usage
652    - stevesk@cvs.openbsd.org 2001/09/19 21:41:57
653      [sshd.8]
654      don't advertise -V in usage; ok markus@
655  - (bal) openbsd-compat/vis.[ch] is dead wood.  Removed.
656
657 20010918
658  - (djm) Configure support for smartcards. Based on Ben's work.
659  - (djm) Revert setgroups call, it causes problems on OS-X
660  - (djm) Avoid warning on BSDgetopt
661  - (djm) More makefile infrastructre for smartcard support, also based
662    on Ben's work
663  - (djm) Specify --datadir in RPM spec files so smartcard applet gets
664     put somewhere sane. Add Ssh.bin to manifest.
665  - (djm) Make smartcard support conditional in Redhat RPM spec
666  - (bal) LICENCE update.  Has not been done in a while.
667  - (stevesk) nchan.c: we use X/Open Sockets on HP-UX now so shutdown(2)
668    returns ENOTCONN vs. EINVAL for socket not connected; remove EINVAL
669    check. ok Lutz Jaenicke
670  - (bal) OpenBSD CVS Sync
671    - stevesk@cvs.openbsd.org 2001/09/17 17:57:57
672      [scp.1 scp.c sftp.1 sftp.c]
673      add -Fssh_config option; ok markus@
674    - stevesk@cvs.openbsd.org 2001/09/17 19:27:15
675      [kexdh.c kexgex.c key.c key.h ssh-dss.c ssh-keygen.c ssh-rsa.c]
676      u_char*/char* cleanup; ok markus
677    - markus@cvs.openbsd.org 2001/09/17 20:22:14
678      [scard.c]
679      never keep a connection to the smartcard open.
680      allows ssh-keygen -D U while the agent is running; report from 
681      jakob@
682    - stevesk@cvs.openbsd.org 2001/09/17 20:38:09
683      [sftp.1 sftp.c]
684      cleanup and document -1, -s and -S; ok markus@
685    - markus@cvs.openbsd.org 2001/09/17 20:50:22
686      [key.c ssh-keygen.c]
687      better error handling if you try to export a bad key to ssh.com
688    - markus@cvs.openbsd.org 2001/09/17 20:52:47
689      [channels.c channels.h clientloop.c]
690      try to fix agent-forwarding-backconnection-bug, as seen on HPUX, 
691      for example; with Lutz.Jaenicke@aet.TU-Cottbus.DE,
692    - markus@cvs.openbsd.org 2001/09/17 21:04:02
693      [channels.c serverloop.c]
694      don't send fake dummy packets on CR (\r)
695      bugreport from yyua@cs.sfu.ca via solar@@openwall.com
696    - markus@cvs.openbsd.org 2001/09/17 21:09:47
697      [compat.c]
698      more versions suffering the SSH_BUG_DEBUG bug;
699      3.0.x reported by dbutts@maddog.storability.com
700    - stevesk@cvs.openbsd.org 2001/09/17 23:56:07
701      [scp.1]
702      missing -B in usage string
703
704 20010917
705  - (djm) x11-ssh-askpass-1.2.4 in RPM spec, revert workarounds
706  - (tim) [includes.h openbsd-compat/getopt.c openbsd-compat/getopt.h]
707          rename getopt() to BSDgetopt() to keep form conflicting with
708          system getopt().
709          [Makefile.in configure.in] disable filepriv until I can add
710          missing procpriv calls.
711
712 20010916
713  - (djm) Workaround XFree breakage in RPM spec file
714  - (bal) OpenBSD CVS Sync
715     - markus@cvs.openbsd.org 2001/09/16 14:46:54
716       [session.c]
717       calls krb_afslog() after setting $HOME; mattiasa@e.kth.se; fixes
718       pr 1943b
719
720 20010915
721  - (djm) Make do_pre_login static to avoid prototype #ifdef hell
722  - (djm) Sync scard/ stuff
723  - (djm) Redhat spec file cleanups from Pekka Savola <pekkas@netcore.fi> and
724    Redhat
725  - (djm) Redhat initscript config sanity checking from Pekka Savola 
726    <pekkas@netcore.fi>
727  - (djm) Clear supplemental groups at sshd start to prevent them from 
728    being propogated to random PAM modules. Based on patch from Redhat via
729    Pekka Savola <pekkas@netcore.fi>
730  - (djm) Make sure rijndael.c picks config.h
731  - (djm) Ensure that u_char gets defined
732
733 20010914
734  - (bal) OpenBSD CVS Sync
735    - markus@cvs.openbsd.org 2001/09/13
736      [rijndael.c rijndael.h]
737      missing $OpenBSD
738    - markus@cvs.openbsd.org 2001/09/14
739      [session.c]
740      command=xxx overwrites subsystems, too
741    - markus@cvs.openbsd.org 2001/09/14
742      [sshd.c]
743      typo
744
745 20010913
746  - (bal) OpenBSD CVS Sync
747    - markus@cvs.openbsd.org 2001/08/23 11:31:59
748      [cipher.c cipher.h]
749      switch to the optimised AES reference code from
750      http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip
751
752 20010912
753  - (bal) OpenBSD CVS Sync
754    - jakob@cvs.openbsd.org 2001/08/16 19:18:34
755      [servconf.c servconf.h session.c sshd.8]
756      deprecate CheckMail. ok markus@
757    - stevesk@cvs.openbsd.org 2001/08/16 20:14:57
758      [ssh.1 sshd.8]
759      document case sensitivity for ssh, sshd and key file
760      options and arguments; ok markus@
761    - stevesk@cvs.openbsd.org 2001/08/17 18:59:47
762      [servconf.h]
763      typo in comment
764    - stevesk@cvs.openbsd.org 2001/08/21 21:47:42
765      [ssh.1 sshd.8]
766      minor typos and cleanup
767    - stevesk@cvs.openbsd.org 2001/08/22 16:21:21
768      [ssh.1]
769      hostname not optional; ok markus@
770    - stevesk@cvs.openbsd.org 2001/08/22 16:30:02
771      [sshd.8]
772      no rexd; ok markus@
773    - stevesk@cvs.openbsd.org 2001/08/22 17:45:16
774      [ssh.1]
775      document cipher des for protocol 1; ok deraadt@
776    - camield@cvs.openbsd.org 2001/08/23 17:59:31
777      [sshd.c]
778      end request with 0, not NULL
779      ok markus@
780    - stevesk@cvs.openbsd.org 2001/08/23 18:02:48
781      [ssh-agent.1]
782      fix usage; ok markus@
783    - stevesk@cvs.openbsd.org 2001/08/23 18:08:59
784      [ssh-add.1 ssh-keyscan.1]
785      minor cleanup
786    - danh@cvs.openbsd.org 2001/08/27 22:02:13
787      [ssh-keyscan.c]
788      fix memory fault if non-existent filename is given to the -f option
789      ok markus@
790    - markus@cvs.openbsd.org 2001/08/28 09:51:26
791      [readconf.c]
792      don't set DynamicForward unless Host matches
793    - markus@cvs.openbsd.org 2001/08/28 15:39:48
794      [ssh.1 ssh.c]
795      allow: ssh -F configfile host
796    - markus@cvs.openbsd.org 2001/08/29 20:44:03
797      [scp.c]
798      clear the malloc'd buffer, otherwise source() will leak malloc'd 
799      memory; ok theo@
800    - stevesk@cvs.openbsd.org 2001/08/29 23:02:21
801      [sshd.8]
802      add text about -u0 preventing DNS requests; ok markus@
803    - stevesk@cvs.openbsd.org 2001/08/29 23:13:10
804      [ssh.1 ssh.c]
805      document -D and DynamicForward; ok markus@
806    - stevesk@cvs.openbsd.org 2001/08/29 23:27:23
807      [ssh.c]
808      validate ports for -L/-R; ok markus@
809    - stevesk@cvs.openbsd.org 2001/08/29 23:39:40
810      [ssh.1 sshd.8]
811      additional documentation for GatewayPorts; ok markus@
812    - naddy@cvs.openbsd.org 2001/08/30 15:42:36
813      [ssh.1]
814      add -D to synopsis line; ok markus@
815    - stevesk@cvs.openbsd.org 2001/08/30 16:04:35
816      [readconf.c ssh.1]
817      validate ports for LocalForward/RemoteForward.
818      add host/port alternative syntax for IPv6 (like -L/-R).
819      ok markus@
820    - stevesk@cvs.openbsd.org 2001/08/30 20:36:34
821      [auth-options.c sshd.8]
822      validate ports for permitopen key file option. add host/port
823      alternative syntax for IPv6. ok markus@
824    - markus@cvs.openbsd.org 2001/08/30 22:22:32
825      [ssh-keyscan.c]
826      do not pass pointers to longjmp; fix from wayne@blorf.net
827    - markus@cvs.openbsd.org 2001/08/31 11:46:39
828      [sshconnect2.c]
829      disable kbd-interactive if we don't get SSH2_MSG_USERAUTH_INFO_REQUEST
830      messages
831    - stevesk@cvs.openbsd.org 2001/09/03 20:58:33
832      [readconf.c readconf.h ssh.c]
833      fatal() for nonexistent -Fssh_config. ok markus@
834    - deraadt@cvs.openbsd.org 2001/09/05 06:23:07
835      [scp.1 sftp.1 ssh.1 ssh-agent.1 sshd.8 ssh-keygen.1 ssh-keyscan.1]
836      avoid first person in manual pages
837    - stevesk@cvs.openbsd.org 2001/09/12 18:18:25
838      [scp.c]
839      don't forward agent for non third-party copies; ok markus@
840
841 20010815
842  - (bal) Fixed stray code in readconf.c that went in by mistake.
843  - OpenBSD CVS Sync
844    - markus@cvs.openbsd.org 2001/08/07 10:37:46
845      [authfd.c authfd.h]
846      extended failure messages from galb@vandyke.com
847    - deraadt@cvs.openbsd.org 2001/08/08 07:16:58
848      [scp.1]
849      when describing the -o option, give -o Protocol=1 as the specific example
850      since we are SICK AND TIRED of clueless people who cannot have difficulty
851      thinking on their own.
852    - markus@cvs.openbsd.org 2001/08/08 18:20:15
853      [uidswap.c]
854      permanently_set_uid is a noop if user is not privilegued;
855      fixes bug on solaris; from sbi@uchicago.edu
856    - markus@cvs.openbsd.org 2001/08/08 21:34:19
857      [uidswap.c]
858      undo last change; does not work for sshd
859    - jakob@cvs.openbsd.org 2001/08/11 22:51:27
860      [ssh.c tildexpand.c]
861      fix more paths beginning with "//"; <bradshaw@staff.crosswalk.com>. 
862      ok markus@
863    - stevesk@cvs.openbsd.org 2001/08/13 23:38:54
864      [scp.c]
865      don't need main prototype (also sync with rcp); ok markus@
866    - markus@cvs.openbsd.org 2001/08/14 09:23:02
867      [sftp.1 sftp-int.c]
868      "bye"; hk63a@netscape.net
869    - stevesk@cvs.openbsd.org 2001/08/14 17:54:29
870      [scp.1 sftp.1 ssh.1]
871      consistent documentation and example of ``-o ssh_option'' for sftp and
872      scp; document keyword=argument for ssh.
873  - (bal) QNX resync.   OK tim@
874
875 20010814
876  - (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup
877    for some #ifdef _CRAY code; ok wendyp@cray.com
878  - (stevesk) sshpty.c: return 0 on error in cray pty code;
879    ok wendyp@cray.com
880  - (stevesk) bsd-cray.c: utmp strings are not C strings
881  - (stevesk) bsd-cray.c: more cleanup; ok wendyp@cray.com
882
883 20010812
884  - (djm) Fix detection of long long int support. Based on patch from 
885    Michael Stone <mstone@cs.loyola.edu>. ok stevesk, tim
886
887 20010808
888  - (bal) Minor correction to inet_ntop.h.  _BSD_RRESVPORT_H should be
889    _BSD_INET_NTOP_H.  Pointed out by Mark Miller <markm@swoon.net> 
890
891 20010807
892  - (tim) [configure.in sshconnect.c openbsd-compat/Makefile.in
893          openbsd-compat/openbsd-compat.h ] Add inet_ntop.c inet_ntop.h back
894          in. Needed for sshconnect.c
895          [sshconnect.c] fix INET6_ADDRSTRLEN for non IPv6 machines
896          [configure.in] make tests with missing libraries fail
897          patch by Wendy Palm <wendyp@cray.com>
898          Added openbsd-compat/bsd-cray.h. Selective patches from
899          William L. Jones <jones@mail.utexas.edu> 
900
901 20010806
902  - OpenBSD CVS Sync
903    - markus@cvs.openbsd.org 2001/07/22 21:32:27
904      [sshpty.c]
905      update comment
906    - pvalchev@cvs.openbsd.org 2001/07/22 21:32:42
907      [ssh.1]
908      There is no option "Compress", point to "Compression" instead; ok 
909      markus
910    - markus@cvs.openbsd.org 2001/07/22 22:04:19
911      [readconf.c ssh.1]
912      enable challenge-response auth by default; ok millert@
913    - markus@cvs.openbsd.org 2001/07/22 22:24:16
914      [sshd.8]
915      Xr login.conf
916    - markus@cvs.openbsd.org 2001/07/23 09:06:28
917      [sshconnect2.c]
918      reorder default sequence of userauth methods to match ssh behaviour:
919      hostbased,publickey,keyboard-interactive,password
920    - markus@cvs.openbsd.org 2001/07/23 12:47:05
921      [ssh.1]
922      sync PreferredAuthentications
923    - aaron@cvs.openbsd.org 2001/07/23 14:14:18
924      [ssh-keygen.1]
925      Fix typo.
926    - stevesk@cvs.openbsd.org 2001/07/23 18:14:58
927      [auth2.c auth-rsa.c]
928      use %lu; ok markus@
929    - stevesk@cvs.openbsd.org 2001/07/23 18:21:46
930      [xmalloc.c]
931      no zero size xstrdup() error; ok markus@
932    - markus@cvs.openbsd.org 2001/07/25 11:59:35
933      [scard.c]
934      typo in comment
935    - markus@cvs.openbsd.org 2001/07/25 14:35:18
936      [readconf.c ssh.1 ssh.c sshconnect.c]
937      cleanup connect(); connection_attempts 4 -> 1; from 
938      eivind@freebsd.org
939    - stevesk@cvs.openbsd.org 2001/07/26 17:18:22
940      [sshd.8 sshd.c]
941      add -t option to test configuration file and keys; pekkas@netcore.fi
942      ok markus@
943    - rees@cvs.openbsd.org 2001/07/26 20:04:27
944      [scard.c ssh-keygen.c]
945      Inquire Cyberflex class for 0xf0 cards
946      change aid to conform to 7816-5
947      remove gratuitous fid selects
948    - millert@cvs.openbsd.org 2001/07/27 14:50:45
949      [ssh.c]
950      If smart card support is compiled in and a smart card is being used
951      for authentication, make it the first method used.  markus@ OK
952    - deraadt@cvs.openbsd.org 2001/07/27 17:26:16
953      [scp.c]
954      shorten lines
955    - markus@cvs.openbsd.org 2001/07/28 09:21:15
956      [sshd.8]
957      cleanup some RSA vs DSA vs SSH1 vs SSH2 notes
958    - mouring@cvs.openbsd.org 2001/07/29 17:02:46
959      [scp.1]
960      Clarified -o option in scp.1  OKed by Markus@
961    - jakob@cvs.openbsd.org 2001/07/30 16:06:07
962      [scard.c scard.h]
963      better errorcodes from sc_*; ok markus@
964    - stevesk@cvs.openbsd.org 2001/07/30 16:23:30
965      [rijndael.c rijndael.h]
966      new BSD-style license:
967      Brian Gladman <brg@gladman.plus.com>:
968      >I have updated my code at:
969      >http://fp.gladman.plus.com/cryptography_technology/rijndael/index.htm
970      >with a copyright notice as follows:
971      >[...]
972      >I am not sure which version of my old code you are using but I am
973      >happy for the notice above to be substituted for my existing copyright
974      >intent if this meets your purpose.
975    - jakob@cvs.openbsd.org 2001/07/31 08:41:10
976      [scard.c]
977      do not complain about missing smartcards. ok markus@
978    - jakob@cvs.openbsd.org 2001/07/31 09:28:44
979      [readconf.c readconf.h ssh.1 ssh.c]
980      add 'SmartcardDevice' client option to specify which smartcard device 
981      is used to access a smartcard used for storing the user's private RSA 
982      key. ok markus@.
983    - jakob@cvs.openbsd.org 2001/07/31 12:42:50
984      [sftp-int.c sftp-server.c]
985      avoid paths beginning with "//"; <vinschen@redhat.com>
986      ok markus@
987    - jakob@cvs.openbsd.org 2001/07/31 12:53:34
988      [scard.c]
989      close smartcard connection if card is missing
990    - markus@cvs.openbsd.org 2001/08/01 22:03:33
991      [authfd.c authfd.h readconf.c readconf.h scard.c scard.h ssh-add.c 
992       ssh-agent.c ssh.c]
993      use strings instead of ints for smartcard reader ids
994    - markus@cvs.openbsd.org 2001/08/01 22:16:45
995      [ssh.1 sshd.8]
996      refer to current ietf drafts for protocol v2
997    - markus@cvs.openbsd.org 2001/08/01 23:33:09
998      [ssh-keygen.c]
999      allow uploading RSA keys for non-default AUT0 (sha1 over passphrase 
1000      like sectok).
1001   - markus@cvs.openbsd.org 2001/08/01 23:38:45
1002      [scard.c ssh.c]
1003      support finish rsa keys.
1004      free public keys after login -> call finish -> close smartcard.
1005    - markus@cvs.openbsd.org 2001/08/02 00:10:17
1006      [ssh-keygen.c]
1007      add -D readerid option (download, i.e. print public RSA key to stdout).
1008      check for card present when uploading keys.
1009      use strings instead of ints for smartcard reader ids, too.
1010    - jakob@cvs.openbsd.org 2001/08/02 08:58:35
1011      [ssh-keygen.c]
1012      change -u (upload smartcard key) to -U. ok markus@
1013    - jakob@cvs.openbsd.org 2001/08/02 15:06:52
1014      [ssh-keygen.c]
1015      more verbose usage(). ok markus@
1016    - jakob@cvs.openbsd.org 2001/08/02 15:07:23
1017      [ssh-keygen.1]
1018      document smartcard upload/download. ok markus@
1019    - jakob@cvs.openbsd.org 2001/08/02 15:32:10
1020      [ssh.c]
1021      add smartcard to usage(). ok markus@
1022    - jakob@cvs.openbsd.org 2001/08/02 15:43:57
1023      [ssh-agent.c ssh.c ssh-keygen.c]
1024      add /* SMARTCARD */ to #else/#endif. ok markus@
1025   - jakob@cvs.openbsd.org 2001/08/02 16:14:05
1026      [scard.c ssh-agent.c ssh.c ssh-keygen.c]
1027      clean up some /* SMARTCARD */. ok markus@
1028    - mpech@cvs.openbsd.org 2001/08/02 18:37:35
1029      [ssh-keyscan.1]
1030      o) .Sh AUTHOR -> .Sh AUTHORS;
1031      o) .Sh EXAMPLE -> .Sh EXAMPLES;
1032      o) Delete .Sh OPTIONS. Text moved to .Sh DESCRIPTION;
1033  
1034      millert@ ok
1035    - jakob@cvs.openbsd.org 2001/08/03 10:31:19
1036      [ssh-add.1]
1037      document smartcard options. ok markus@
1038    - jakob@cvs.openbsd.org 2001/08/03 10:31:30
1039      [ssh-add.c ssh-agent.c ssh-keyscan.c]
1040      improve usage(). ok markus@
1041    - markus@cvs.openbsd.org 2001/08/05 23:18:20
1042      [ssh-keyscan.1 ssh-keyscan.c]
1043      ssh 2 support; from wayned@users.sourceforge.net
1044    - markus@cvs.openbsd.org 2001/08/05 23:29:58
1045      [ssh-keyscan.c]
1046      make -t dsa work with commercial servers, too
1047    - stevesk@cvs.openbsd.org 2001/08/06 19:47:05
1048      [scp.c]
1049      use alarm vs. setitimer for portable; ok markus@
1050  - (bal) ssh-keyscan double -lssh hack due to seed_rng().
1051  - (bal) Second around of UNICOS patches.  A few other things left. 
1052    Patches by William L. Jones <jones@mail.utexas.edu> 
1053
1054 20010803
1055  - (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
1056    a fast UltraSPARC.
1057
1058 20010726
1059  - (stevesk) use mysignal() in protocol 1 loop now that the SIGCHLD
1060    handler has converged.
1061
1062 20010725
1063  - (bal) Added 'install-nokeys' to Makefile to assist package builders.
1064
1065 20010724
1066  - (bal) 4711 not 04711 for ssh binary.
1067
1068 20010722
1069  - (bal) Starting the Unicossmk merger.  File merged TODO, configure.in,
1070          myproposal.h, ssh_prng_cmds.in, and openbsd-compat/Makefile.in.
1071          Added openbsd-compat/bsd-cray.c.  Rest will be merged after
1072          approval.  Selective patches from William L. Jones 
1073          <jones@mail.utexas.edu> 
1074  - OpenBSD CVS Sync
1075    - markus@cvs.openbsd.org 2001/07/18 21:10:43
1076      [sshpty.c]
1077      pr #1946, allow sshd if /dev is readonly
1078    - stevesk@cvs.openbsd.org 2001/07/18 21:40:40
1079      [ssh-agent.c]
1080      chdir("/") from bbraun@synack.net; ok markus@
1081    - stevesk@cvs.openbsd.org 2001/07/19 00:41:44
1082      [ssh.1]
1083      escape chars are below now
1084    - markus@cvs.openbsd.org 2001/07/20 14:46:11
1085      [ssh-agent.c]
1086      do not exit() from signal handlers; ok deraadt@
1087    - stevesk@cvs.openbsd.org 2001/07/20 18:41:51
1088      [ssh.1]
1089      "the" command line
1090
1091 20010719
1092  - (tim) [configure.in] put inet_aton back in AC_CHECK_FUNCS.
1093          report from Mark Miller <markm@swoon.net>
1094
1095 20010718
1096  - OpenBSD CVS Sync
1097    - stevesk@cvs.openbsd.org 2001/07/14 15:10:17
1098      [readpass.c sftp-client.c sftp-common.c sftp-glob.c]
1099      delete spurious #includes; ok deraadt@ markus@
1100    - markus@cvs.openbsd.org 2001/07/15 16:17:08
1101      [serverloop.c]
1102      schedule client alive for ssh2 only, greg@cheers.bungi.com
1103    - stevesk@cvs.openbsd.org 2001/07/15 16:57:21
1104      [ssh-agent.1]
1105      -d will not fork; ok markus@
1106    - stevesk@cvs.openbsd.org 2001/07/15 16:58:29
1107      [ssh-agent.c]
1108      typo in usage; ok markus@
1109    - markus@cvs.openbsd.org 2001/07/17 20:48:42
1110      [ssh-agent.c]
1111      update maxfd if maxfd is closed; report from jmcelroy@dtgnet.com
1112    - markus@cvs.openbsd.org 2001/07/17 21:04:58
1113      [channels.c channels.h clientloop.c nchan.c serverloop.c]
1114      keep track of both maxfd and the size of the malloc'ed fdsets.
1115      update maxfd if maxfd gets closed.
1116    - mouring@cvs.openbsd.org 2001/07/18 16:45:52
1117      [scp.c]
1118      Missing -o in scp usage()
1119  - (bal) Cleaned up trailing spaces in ChangeLog.
1120  - (bal) Allow sshd to switch user context without password for Cygwin.
1121          Patch by Corinna Vinschen <vinschen@redhat.com>
1122  - (bal) Updated cygwin README and ssh-host-config.  Patch by
1123          Corinna Vinschen <vinschen@redhat.com>
1124
1125 20010715
1126  - (bal) Set "BROKEN_GETADDRINFO" for darwin platform.  Reported by
1127    Josh Larios <jdlarios@cac.washington.edu>
1128  - (tim) put openssh/openbsd-compat/inet_aton.[ch] back in.
1129          needed by openbsd-compat/fake-getaddrinfo.c
1130
1131 20010714
1132  - (stevesk) change getopt() declaration
1133  - (stevesk) configure.in: use ll suffix for long long constant
1134    in snprintf() test
1135
1136 20010713
1137  - (djm) Enable /etc/nologin check on PAM systems, as some lack the
1138    pam_nologin module. Report from William Yodlowsky
1139    <bsd@openbsd.rutgers.edu>
1140  - (djm) Revert dirname fix, a better one is on its way.
1141  - OpenBSD CVS Sync
1142    - markus@cvs.openbsd.org 2001/07/04 22:47:19
1143      [ssh-agent.c]
1144      ignore SIGPIPE when debugging, too
1145    - markus@cvs.openbsd.org 2001/07/04 23:13:10
1146      [scard.c scard.h ssh-agent.c]
1147      handle card removal more gracefully, add sc_close() to scard.h
1148    - markus@cvs.openbsd.org 2001/07/04 23:39:07
1149      [ssh-agent.c]
1150      for smartcards remove both RSA1/2 keys
1151    - markus@cvs.openbsd.org 2001/07/04 23:49:27
1152      [ssh-agent.c]
1153      handle mutiple adds of the same smartcard key
1154    - espie@cvs.openbsd.org 2001/07/05 11:43:33
1155      [sftp-glob.c]
1156      Directly cast to the right type. Ok markus@
1157    - stevesk@cvs.openbsd.org 2001/07/05 20:32:47
1158      [sshconnect1.c]
1159      statement after label; ok dugsong@
1160    - stevesk@cvs.openbsd.org 2001/07/08 15:23:38
1161      [servconf.c]
1162      fix ``MaxStartups max''; ok markus@
1163    - fgsch@cvs.openbsd.org 2001/07/09 05:58:47
1164      [ssh.c]
1165      Use getopt(3); markus@ ok.
1166    - deraadt@cvs.openbsd.org 2001/07/09 07:04:53
1167      [session.c sftp-int.c]
1168      correct type on last arg to execl(); nordin@cse.ogi.edu
1169    - markus@cvs.openbsd.org 2001/07/10 21:49:12
1170      [readpass.c]
1171      don't panic if fork or pipe fail (just return an empty passwd).
1172    - itojun@cvs.openbsd.org 2001/07/11 00:24:53
1173      [servconf.c]
1174      make it compilable in all 4 combination of KRB4/KRB5 settings.
1175      dugsong ok
1176      XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and
1177      -I/usr/include/kerberosV?
1178    - markus@cvs.openbsd.org 2001/07/11 16:29:59
1179      [ssh.c]
1180      sort options string, fix -p, add -k
1181    - markus@cvs.openbsd.org 2001/07/11 18:26:15
1182      [auth.c]
1183      no need to call dirname(pw->pw_dir).
1184      note that dirname(3) modifies its argument on some systems.
1185  - (djm) Reorder Makefile.in so clean targets work a little better when
1186    run directly from Makefile.in
1187  - (djm) Pull in getopt(3) from OpenBSD libc for the optreset extension.
1188
1189 20010711
1190  - (djm) dirname(3) may modify its argument on glibc and other systems.
1191    Patch from markus@, spotted by Tom Holroyd <tomh@po.crl.go.jp>
1192
1193 20010704
1194  - OpenBSD CVS Sync
1195    - markus@cvs.openbsd.org 2001/06/25 08:25:41
1196      [channels.c channels.h cipher.c clientloop.c compat.c compat.h
1197       hostfile.c kex.c kex.h key.c key.h nchan.c packet.c serverloop.c
1198       session.c session.h sftp-server.c ssh-add.c ssh-agent.c uuencode.h]
1199      update copyright for 2001
1200    - markus@cvs.openbsd.org 2001/06/25 17:18:27
1201      [ssh-keygen.1]
1202      sshd(8) will never read the private keys, but ssh(1) does;
1203      hugh@mimosa.com
1204    - provos@cvs.openbsd.org 2001/06/25 17:54:47
1205      [auth.c auth.h auth-rsa.c]
1206      terminate secure_filename checking after checking homedir.  that way
1207      it works on AFS.  okay markus@
1208    - stevesk@cvs.openbsd.org 2001/06/25 20:26:37
1209      [auth2.c sshconnect2.c]
1210      prototype cleanup; ok markus@
1211    - markus@cvs.openbsd.org 2001/06/26 02:47:07
1212      [ssh-keygen.c]
1213      allow loading a private RSA key to a cyberflex card.
1214    - markus@cvs.openbsd.org 2001/06/26 04:07:06
1215      [ssh-agent.1 ssh-agent.c]
1216      add debug flag
1217    - markus@cvs.openbsd.org 2001/06/26 04:59:59
1218      [authfd.c authfd.h ssh-add.c]
1219      initial support for smartcards in the agent
1220    - markus@cvs.openbsd.org 2001/06/26 05:07:43
1221      [ssh-agent.c]
1222      update usage
1223    - markus@cvs.openbsd.org 2001/06/26 05:33:34
1224      [ssh-agent.c]
1225      more smartcard support.
1226    - mpech@cvs.openbsd.org 2001/06/26 05:48:07
1227      [sshd.8]
1228      remove unnecessary .Pp between .It;
1229      millert@ ok
1230    - markus@cvs.openbsd.org 2001/06/26 05:50:11
1231      [auth2.c]
1232      new interface for secure_filename()
1233    - itojun@cvs.openbsd.org 2001/06/26 06:32:58
1234      [atomicio.h authfd.h authfile.h auth.h auth-options.h bufaux.h
1235       buffer.h canohost.h channels.h cipher.h clientloop.h compat.h
1236       compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.h
1237       hostfile.h kex.h key.h log.h mac.h match.h misc.h mpaux.h packet.h
1238       radix.h readconf.h readpass.h rsa.h]
1239      prototype pedant.  not very creative...
1240      - () -> (void)
1241      - no variable names
1242    - itojun@cvs.openbsd.org 2001/06/26 06:33:07
1243      [servconf.h serverloop.h session.h sftp-client.h sftp-common.h
1244       sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h
1245       ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h]
1246      prototype pedant.  not very creative...
1247      - () -> (void)
1248      - no variable names
1249    - dugsong@cvs.openbsd.org 2001/06/26 16:15:25
1250      [auth1.c auth.h auth-krb4.c auth-passwd.c readconf.c readconf.h
1251       servconf.c servconf.h session.c sshconnect1.c sshd.c]
1252      Kerberos v5 support for SSH1, mostly from Assar Westerlund
1253      <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok
1254    - markus@cvs.openbsd.org 2001/06/26 17:25:34
1255      [ssh.1]
1256      document SSH_ASKPASS; fubob@MIT.EDU
1257    - markus@cvs.openbsd.org 2001/06/26 17:27:25
1258      [authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h
1259       canohost.h channels.h cipher.h clientloop.h compat.h compress.h
1260       crc32.h deattack.h dh.h dispatch.h groupaccess.c groupaccess.h
1261       hostfile.h kex.h key.h log.c log.h mac.h misc.c misc.h mpaux.h
1262       packet.h radix.h readconf.h readpass.h rsa.h servconf.h serverloop.h
1263       session.h sftp-common.c sftp-common.h sftp-glob.h sftp-int.h
1264       sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h sshtty.h
1265       tildexpand.h uidswap.h uuencode.h xmalloc.h]
1266      remove comments from .h, since they are cut&paste from the .c files
1267      and out of sync
1268    - dugsong@cvs.openbsd.org 2001/06/26 17:41:49
1269      [servconf.c]
1270      #include <kafs.h>
1271    - markus@cvs.openbsd.org 2001/06/26 20:14:11
1272      [key.c key.h ssh.c sshconnect1.c sshconnect2.c]
1273      add smartcard support to the client, too (now you can use both
1274      the agent and the client).
1275    - markus@cvs.openbsd.org 2001/06/27 02:12:54
1276      [serverloop.c serverloop.h session.c session.h]
1277      quick hack to make ssh2 work again.
1278    - markus@cvs.openbsd.org 2001/06/27 04:48:53
1279      [auth.c match.c sshd.8]
1280      tridge@samba.org
1281    - markus@cvs.openbsd.org 2001/06/27 05:35:42
1282      [ssh-keygen.c]
1283      use cyberflex_inq_class to inquire class.
1284    - markus@cvs.openbsd.org 2001/06/27 05:42:25
1285      [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
1286      s/generate_additional_parameters/rsa_generate_additional_parameters/
1287      http://www.humppa.com/
1288    - markus@cvs.openbsd.org 2001/06/27 06:26:36
1289      [ssh-add.c]
1290      convert to getopt(3)
1291    - stevesk@cvs.openbsd.org 2001/06/28 19:57:35
1292      [ssh-keygen.c]
1293      '\0' terminated data[] is ok; ok markus@
1294    - markus@cvs.openbsd.org 2001/06/29 07:06:34
1295      [ssh-keygen.c]
1296      new error handling for cyberflex_*
1297    - markus@cvs.openbsd.org 2001/06/29 07:11:01
1298      [ssh-keygen.c]
1299      initialize early
1300    - stevesk@cvs.openbsd.org 2001/06/29 18:38:44
1301      [clientloop.c]
1302      sync function definition with declaration; ok markus@
1303    - stevesk@cvs.openbsd.org 2001/06/29 18:40:28
1304      [channels.c]
1305      use socklen_t for getsockopt arg #5; ok markus@
1306    - stevesk@cvs.openbsd.org 2001/06/30 18:08:40
1307      [channels.c channels.h clientloop.c]
1308      adress -> address; ok markus@
1309    - markus@cvs.openbsd.org 2001/07/02 13:59:15
1310      [serverloop.c session.c session.h]
1311      wait until !session_have_children(); bugreport from
1312      Lutz.Jaenicke@aet.TU-Cottbus.DE
1313    - markus@cvs.openbsd.org 2001/07/02 22:29:20
1314      [readpass.c]
1315      do not return NULL, use "" instead.
1316    - markus@cvs.openbsd.org 2001/07/02 22:40:18
1317      [ssh-keygen.c]
1318      update for sectok.h interface changes.
1319    - markus@cvs.openbsd.org 2001/07/02 22:52:57
1320      [channels.c channels.h serverloop.c]
1321      improve cleanup/exit logic in ssh2:
1322      stop listening to channels, detach channel users (e.g. sessions).
1323      wait for children (i.e. dying sessions), send exit messages,
1324      cleanup all channels.
1325  - (bal) forget a few new files in sync up.
1326  - (bal) Makefile fix up requires scard.c
1327  - (stevesk) sync misc.h
1328  - (stevesk) more sync for session.c
1329  - (stevesk) sync servconf.h (comments)
1330  - (tim) [contrib/caldera/openssh.spec] sync with Caldera
1331  - (tim) [openbsd-compat/dirname.h] Remove ^M causing some compilers to
1332          issue warning (line 1: tokens ignored at end of directive line)
1333  - (tim) [sshconnect1.c] give the compiler something to do for success:
1334          if KRB5 and AFS are not defined
1335          (ERROR: "sshconnect1.c", line 1274: Syntax error before or at: })
1336
1337 20010629
1338  - (bal) Removed net_aton() since we don't use it any more
1339  - (bal) Fixed _DISABLE_VPOSIX in readpassphrase.c.
1340  - (bal) Updated zlib's home.  Thanks to David Howe <DaveHowe@gmx.co.uk>.
1341  - (stevesk) remove _REENTRANT #define
1342  - (stevesk) session.c: use u_int for envsize
1343  - (stevesk) remove cli.[ch]
1344
1345 20010628
1346  - (djm) Sync openbsd-compat with -current libc
1347  - (djm) Fix from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> for my
1348    broken makefile
1349  - (bal) Removed strtok_r() and inet_ntop() since they are no longer used.
1350  - (bal) Remove getusershell() since it's no longer used.
1351
1352 20010627
1353  - (djm) Reintroduce pam_session call for non-pty sessions.
1354  - (djm) Remove redundant and incorrect test for max auth attempts in
1355    PAM kbdint code. Based on fix from Matthew Melvin
1356   <matthewm@webcentral.com.au>
1357  - (djm) Rename sysconfdir/primes => sysconfdir/moduli
1358  - (djm) Oops, forgot make logic for primes=>moduli. Also try to rename
1359    existing primes->moduli if it exists.
1360  - (djm) Sync with -current openbsd-compat/readpassphrase.c:
1361    - djm@cvs.openbsd.org 2001/06/27 13:23:30
1362      typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@
1363  - (djm) Turn up warnings if gcc or egcs detected
1364  - (stevesk) for HP-UX 11.X use X/Open socket interface;
1365     pulls in modern socket prototypes and eliminates a number of compiler
1366     warnings.  see xopen_networking(7).
1367  - (stevesk) fix x11 forwarding from _PATH_XAUTH change
1368  - (stevesk) use X/Open socket interface for HP-UX 10.X also
1369
1370 20010625
1371  - OpenBSD CVS Sync
1372    - markus@cvs.openbsd.org 2001/06/21 21:08:25
1373      [session.c]
1374      don't reset forced_command (we allow multiple login shells in
1375      ssh2); dwd@bell-labs.com
1376    - mpech@cvs.openbsd.org 2001/06/22 10:17:51
1377      [ssh.1 sshd.8 ssh-keyscan.1]
1378      o) .Sh AUTHOR -> .Sh AUTHORS;
1379      o) remove unnecessary .Pp;
1380      o) better -mdoc style;
1381      o) typo;
1382      o) sort SEE ALSO;
1383      aaron@ ok
1384    - provos@cvs.openbsd.org 2001/06/22 21:27:08
1385      [dh.c pathnames.h]
1386      use /etc/moduli instead of /etc/primes, okay markus@
1387    - provos@cvs.openbsd.org 2001/06/22 21:28:53
1388      [sshd.8]
1389      document /etc/moduli
1390    - markus@cvs.openbsd.org 2001/06/22 21:55:49
1391      [auth2.c auth-rsa.c pathnames.h ssh.1 sshd.8 sshd_config
1392       ssh-keygen.1]
1393      merge authorized_keys2 into authorized_keys.
1394      authorized_keys2 is used for backward compat.
1395      (just append authorized_keys2 to authorized_keys).
1396    - provos@cvs.openbsd.org 2001/06/22 21:57:59
1397      [dh.c]
1398      increase linebuffer to deal with larger moduli; use rewind instead of
1399      close/open
1400    - markus@cvs.openbsd.org 2001/06/22 22:21:20
1401      [sftp-server.c]
1402      allow long usernames/groups in readdir
1403    - markus@cvs.openbsd.org 2001/06/22 23:35:21
1404      [ssh.c]
1405      don't overwrite argv (fixes ssh user@host in 'ps'), report by ericj@
1406    - deraadt@cvs.openbsd.org 2001/06/23 00:16:16
1407      [scp.c]
1408      slightly better care
1409    - markus@cvs.openbsd.org 2001/06/23 00:20:57
1410      [auth2.c auth.c auth.h auth-rh-rsa.c]
1411      *known_hosts2 is obsolete for hostbased authentication and
1412      only used for backward compat. merge ssh1/2 hostkey check
1413      and move it to auth.c
1414    - deraadt@cvs.openbsd.org 2001/06/23 02:33:05
1415      [sftp.1 sftp-server.8 ssh-keygen.1]
1416      join .%A entries; most by bk@rt.fm
1417    - markus@cvs.openbsd.org 2001/06/23 02:34:33
1418      [kexdh.c kexgex.c kex.h pathnames.h readconf.c servconf.h ssh.1
1419       sshconnect1.c sshconnect2.c sshconnect.c sshconnect.h sshd.8]
1420      get rid of known_hosts2, use it for hostkey lookup, but do not
1421      modify.
1422    - markus@cvs.openbsd.org 2001/06/23 03:03:59
1423      [sshd.8]
1424      draft-ietf-secsh-dh-group-exchange-01.txt
1425    - markus@cvs.openbsd.org 2001/06/23 03:04:42
1426      [auth2.c auth-rh-rsa.c]
1427      restore correct ignore_user_known_hosts logic.
1428    - markus@cvs.openbsd.org 2001/06/23 05:26:02
1429      [key.c]
1430      handle sigature of size 0 (some broken clients send this).
1431    - deraadt@cvs.openbsd.org 2001/06/23 05:57:09
1432      [sftp.1 sftp-server.8 ssh-keygen.1]
1433      ok, tmac is now fixed
1434    - markus@cvs.openbsd.org 2001/06/23 06:41:10
1435      [ssh-keygen.c]
1436      try to decode ssh-3.0.0 private rsa keys
1437      (allow migration to openssh, not vice versa), #910
1438    - itojun@cvs.openbsd.org 2001/06/23 15:12:20
1439      [auth1.c auth2.c auth2-chall.c authfd.c authfile.c auth-rhosts.c
1440       canohost.c channels.c cipher.c clientloop.c deattack.c dh.c
1441       hostfile.c kex.c kexdh.c kexgex.c key.c nchan.c packet.c radix.c
1442       readpass.c scp.c servconf.c serverloop.c session.c sftp.c
1443       sftp-client.c sftp-glob.c sftp-int.c sftp-server.c ssh-add.c
1444       ssh-agent.c ssh.c sshconnect1.c sshconnect2.c sshconnect.c sshd.c
1445       ssh-keygen.c ssh-keyscan.c]
1446      more strict prototypes.  raise warning level in Makefile.inc.
1447      markus ok'ed
1448      TODO; cleanup headers
1449    - markus@cvs.openbsd.org 2001/06/23 17:05:22
1450      [ssh-keygen.c]
1451      fix import for (broken?) ssh.com/f-secure private keys
1452      (i tested > 1000 RSA keys)
1453    - itojun@cvs.openbsd.org 2001/06/23 17:48:18
1454      [sftp.1 ssh.1 sshd.8 ssh-keyscan.1]
1455      kill whitespace at EOL.
1456    - markus@cvs.openbsd.org 2001/06/23 19:12:43
1457      [sshd.c]
1458      pidfile/sigterm race; bbraun@synack.net
1459    - markus@cvs.openbsd.org 2001/06/23 22:37:46
1460      [sshconnect1.c]
1461      consistent with ssh2: skip key if empty passphrase is entered,
1462      retry num_of_passwd_prompt times if passphrase is wrong. ok fgsch@
1463    - markus@cvs.openbsd.org 2001/06/24 05:25:10
1464      [auth-options.c match.c match.h]
1465      move ip+hostname check to match.c
1466    - markus@cvs.openbsd.org 2001/06/24 05:35:33
1467      [readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c]
1468      switch to readpassphrase(3)
1469      2.7/8-stable needs readpassphrase.[ch] from libc
1470    - markus@cvs.openbsd.org 2001/06/24 05:47:13
1471      [sshconnect2.c]
1472      oops, missing format string
1473    - markus@cvs.openbsd.org 2001/06/24 17:18:31
1474      [ttymodes.c]
1475      passing modes works fine: debug2->3
1476  - (djm) -Wall fix for session.c
1477  - (djm) Bring in readpassphrase() from OpenBSD libc. Compiles OK on Linux and
1478    Solaris
1479
1480 20010622
1481  - (stevesk) handle systems without pw_expire and pw_change.
1482
1483 20010621
1484  - OpenBSD CVS Sync
1485    - markus@cvs.openbsd.org 2001/06/16 08:49:38
1486      [misc.c]
1487      typo; dunlap@apl.washington.edu
1488    - markus@cvs.openbsd.org 2001/06/16 08:50:39
1489      [channels.h]
1490      bad //-style comment; thx to stevev@darkwing.uoregon.edu
1491    - markus@cvs.openbsd.org 2001/06/16 08:57:35
1492      [scp.c]
1493      no stdio or exit() in signal handlers.
1494    - markus@cvs.openbsd.org 2001/06/16 08:58:34
1495      [misc.c]
1496      copy pw_expire and pw_change, too.
1497    - markus@cvs.openbsd.org 2001/06/19 12:34:09
1498      [session.c]
1499      cleanup forced command handling, from dwd@bell-labs.com
1500    - markus@cvs.openbsd.org 2001/06/19 14:09:45
1501      [session.c sshd.8]
1502      disable x11-fwd if use_login is enabled; from lukem@wasabisystems.com
1503    - markus@cvs.openbsd.org 2001/06/19 15:40:45
1504      [session.c]
1505      allocate and free at the same level.
1506    - markus@cvs.openbsd.org 2001/06/20 13:56:39
1507      [channels.c channels.h clientloop.c packet.c serverloop.c]
1508      move from channel_stop_listening to channel_free_all,
1509      call channel_free_all before calling waitpid() in serverloop.
1510      fixes the utmp handling; report from Lutz.Jaenicke@aet.TU-Cottbus.DE
1511
1512 20010615
1513  - (stevesk) don't set SA_RESTART and set SIGCHLD to SIG_DFL
1514    around grantpt().
1515  - (stevesk) update TODO: STREAMS pty systems don't call vhangup() now
1516
1517 20010614
1518  - OpenBSD CVS Sync
1519    - markus@cvs.openbsd.org 2001/06/13 09:10:31
1520      [session.c]
1521      typo, use pid not s->pid, mstone@cs.loyola.edu
1522
1523 20010613
1524  - OpenBSD CVS Sync
1525    - markus@cvs.openbsd.org 2001/06/12 10:58:29
1526      [session.c]
1527      merge session_free into session_close()
1528      merge pty_cleanup_proc into session_pty_cleanup()
1529    - markus@cvs.openbsd.org 2001/06/12 16:10:38
1530      [session.c]
1531      merge ssh1/ssh2 tty msg parse and alloc code
1532    - markus@cvs.openbsd.org 2001/06/12 16:11:26
1533      [packet.c]
1534      do not log() packet_set_maxsize
1535    - markus@cvs.openbsd.org 2001/06/12 21:21:29
1536      [session.c]
1537      remove xauth-cookie-in-tmp handling. use default $XAUTHORITY, since
1538      we do already trust $HOME/.ssh
1539      you can use .ssh/sshrc and .ssh/environment if you want to customize
1540      the location of the xauth cookies
1541    - markus@cvs.openbsd.org 2001/06/12 21:30:57
1542      [session.c]
1543      unused
1544
1545 20010612
1546  - scp.c ID update (upstream synced vfsprintf() from us)
1547  - OpenBSD CVS Sync
1548   - markus@cvs.openbsd.org 2001/06/10 11:29:20
1549      [dispatch.c]
1550      we support rekeying
1551      protocol errors are fatal.
1552    - markus@cvs.openbsd.org 2001/06/11 10:18:24
1553      [session.c]
1554      reset pointer to NULL after xfree(); report from solar@openwall.com
1555    - markus@cvs.openbsd.org 2001/06/11 16:04:38
1556      [sshd.8]
1557      typo; bdubreuil@crrel.usace.army.mil
1558
1559 20010611
1560  - (bal) NeXT/MacOS X lack libgen.h and dirname().  Patch by Mark Miller
1561    <markm@swoon.net>
1562  - (bal) Handle broken krb4 issues on Solaris with multiple defined u_*_t
1563    types.  Patch by Jan IVEN <Jan.Iven@cern.ch>
1564  - (bal) Fixed Makefile.in so that 'configure; make install' works.
1565
1566 20010610
1567  - (bal) Missed two files in major resync.  auth-bsdauth.c and auth-skey.c
1568
1569 20010609
1570  - OpenBSD CVS Sync
1571    - markus@cvs.openbsd.org 2001/05/30 12:55:13
1572      [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
1573       packet.c serverloop.c session.c ssh.c ssh1.h]
1574      channel layer cleanup: merge header files and split .c files
1575    - markus@cvs.openbsd.org 2001/05/30 15:20:10
1576      [ssh.c]
1577      merge functions, simplify.
1578    - markus@cvs.openbsd.org 2001/05/31 10:30:17
1579      [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
1580       packet.c serverloop.c session.c ssh.c]
1581      undo the .c file split, just merge the header and keep the cvs
1582      history
1583  - (bal) Channels.c and Channels.h -- "Merge Functions, simplify" (draged
1584    out of ssh Attic)
1585  - (bal) Ooops.. nchan.c (and remove nchan.h) resync from OpenBSD ssh
1586    Attic.
1587  - OpenBSD CVS Sync
1588    - markus@cvs.openbsd.org 2001/05/31 13:08:04
1589      [sshd_config]
1590      group options and add some more comments
1591    - markus@cvs.openbsd.org 2001/06/03 14:55:39
1592      [channels.c channels.h session.c]
1593      use fatal_register_cleanup instead of atexit, sync with x11 authdir
1594      handling
1595    - markus@cvs.openbsd.org 2001/06/03 19:36:44
1596      [ssh-keygen.1]
1597      1-2 bits of entrophy per character (not per word), ok stevesk@
1598    - markus@cvs.openbsd.org 2001/06/03 19:38:42
1599      [scp.c]
1600      pass -v to ssh; from slade@shore.net
1601    - markus@cvs.openbsd.org 2001/06/03 20:06:11
1602      [auth2-chall.c]
1603      the challenge response device decides how to handle non-existing
1604      users.
1605      -> fake challenges for skey and cryptocard
1606    - markus@cvs.openbsd.org 2001/06/04 21:59:43
1607      [channels.c channels.h session.c]
1608      switch uid when cleaning up tmp files and sockets; reported by
1609      zen-parse@gmx.net on bugtraq
1610    - markus@cvs.openbsd.org 2001/06/04 23:07:21
1611      [clientloop.c serverloop.c sshd.c]
1612      set flags in the signal handlers, do real work in the main loop,
1613      ok provos@
1614    - markus@cvs.openbsd.org 2001/06/04 23:16:16
1615      [session.c]
1616      merge ssh1/2 x11-fwd setup, create listener after tmp-dir
1617    - pvalchev@cvs.openbsd.org 2001/06/05 05:05:39
1618      [ssh-keyscan.1 ssh-keyscan.c]
1619      License clarification from David Mazieres, ok deraadt@
1620    - markus@cvs.openbsd.org 2001/06/05 10:24:32
1621      [channels.c]
1622      don't delete the auth socket in channel_stop_listening()
1623      auth_sock_cleanup_proc() will take care of this.
1624    - markus@cvs.openbsd.org 2001/06/05 16:46:19
1625      [session.c]
1626      let session_close() delete the pty.  deny x11fwd if xauthfile is set.
1627    - markus@cvs.openbsd.org 2001/06/06 23:13:54
1628      [ssh-dss.c ssh-rsa.c]
1629      cleanup, remove old code
1630    - markus@cvs.openbsd.org 2001/06/06 23:19:35
1631      [ssh-add.c]
1632      remove debug message; Darren.Moffat@eng.sun.com
1633    - markus@cvs.openbsd.org 2001/06/07 19:57:53
1634      [auth2.c]
1635      style is used for bsdauth.
1636      disconnect on user/service change (ietf-drafts)
1637    - markus@cvs.openbsd.org 2001/06/07 20:23:05
1638      [authfd.c authfile.c channels.c kexdh.c kexgex.c packet.c ssh.c
1639       sshconnect.c sshconnect1.c]
1640      use xxx_put_cstring()
1641    - markus@cvs.openbsd.org 2001/06/07 22:25:02
1642      [session.c]
1643      don't overwrite errno
1644      delay deletion of the xauth cookie
1645    - markus@cvs.openbsd.org 2001/06/08 15:25:40
1646      [includes.h pathnames.h readconf.c servconf.c]
1647      move the path for xauth to pathnames.h
1648  - (bal) configure.in fix for Tru64 (forgeting to reset $LIB)
1649  - (bal) ANSIify strmode()
1650  - (bal) --with-catman should be --with-mantype patch by Dave
1651    Dykstra <dwd@bell-labs.com>
1652
1653 20010606
1654  - OpenBSD CVS Sync
1655    - markus@cvs.openbsd.org 2001/05/17 21:34:15
1656      [ssh.1]
1657      no spaces in PreferredAuthentications;
1658      meixner@rbg.informatik.tu-darmstadt.de
1659    - markus@cvs.openbsd.org 2001/05/18 14:13:29
1660      [auth-chall.c auth.h auth1.c auth2-chall.c auth2.c readconf.c
1661       readconf.h servconf.c servconf.h sshconnect1.c sshconnect2.c sshd.c]
1662      improved kbd-interactive support. work by per@appgate.com and me
1663    - djm@cvs.openbsd.org 2001/05/19 00:36:40
1664      [session.c]
1665      Disable X11 forwarding if xauth binary is not found. Patch from Nalin
1666      Dahyabhai <nalin@redhat.com>; ok markus@
1667    - markus@cvs.openbsd.org 2001/05/19 16:05:41
1668      [scp.c]
1669      ftruncate() instead of open()+O_TRUNC like rcp.c does
1670      allows scp /path/to/file localhost:/path/to/file
1671    - markus@cvs.openbsd.org 2001/05/19 16:08:43
1672      [sshd.8]
1673      sort options; Matthew.Stier@fnc.fujitsu.com
1674    - markus@cvs.openbsd.org 2001/05/19 16:32:16
1675      [ssh.1 sshconnect2.c]
1676      change preferredauthentication order to
1677         publickey,hostbased,password,keyboard-interactive
1678      document that hostbased defaults to no, document order
1679    - markus@cvs.openbsd.org 2001/05/19 16:46:19
1680      [ssh.1 sshd.8]
1681      document MACs defaults with .Dq
1682    - stevesk@cvs.openbsd.org 2001/05/19 19:43:57
1683      [misc.c misc.h servconf.c sshd.8 sshd.c]
1684      sshd command-line arguments and configuration file options that
1685      specify time may be expressed using a sequence of the form:
1686      time[qualifier], where time is a positive integer value and qualifier
1687      is one of the following:
1688          <none>,s,m,h,d,w
1689      Examples:
1690          600     600 seconds (10 minutes)
1691          10m     10 minutes
1692          1h30m   1 hour 30 minutes (90 minutes)
1693      ok markus@
1694    - stevesk@cvs.openbsd.org 2001/05/19 19:57:09
1695      [channels.c]
1696      typo in error message
1697    - markus@cvs.openbsd.org 2001/05/20 17:20:36
1698      [auth-rsa.c auth.c auth.h auth2.c servconf.c servconf.h sshd.8
1699       sshd_config]
1700      configurable authorized_keys{,2} location; originally from peter@;
1701      ok djm@
1702    - markus@cvs.openbsd.org 2001/05/24 11:12:42
1703      [auth.c]
1704      fix comment; from jakob@
1705    - stevesk@cvs.openbsd.org 2001/05/24 18:57:53
1706      [clientloop.c readconf.c ssh.c ssh.h]
1707      don't perform escape processing when ``EscapeChar none''; ok markus@
1708    - markus@cvs.openbsd.org 2001/05/25 14:37:32
1709      [ssh-keygen.c]
1710      use -P for -e and -y, too.
1711    - markus@cvs.openbsd.org 2001/05/28 08:04:39
1712      [ssh.c]
1713      fix usage()
1714    - markus@cvs.openbsd.org 2001/05/28 10:08:55
1715      [authfile.c]
1716      key_load_private: set comment to filename for PEM keys
1717    - markus@cvs.openbsd.org 2001/05/28 22:51:11
1718      [cipher.c cipher.h]
1719      simpler 3des for ssh1
1720    - markus@cvs.openbsd.org 2001/05/28 23:14:49
1721      [channels.c channels.h nchan.c]
1722      undo broken channel fix and try a different one. there
1723      should be still some select errors...
1724    - markus@cvs.openbsd.org 2001/05/28 23:25:24
1725      [channels.c]
1726      cleanup, typo
1727    - markus@cvs.openbsd.org 2001/05/28 23:58:35
1728      [packet.c packet.h sshconnect.c sshd.c]
1729      remove some lines, simplify.
1730    - markus@cvs.openbsd.org 2001/05/29 12:31:27
1731      [authfile.c]
1732      typo
1733
1734 20010528
1735  - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c
1736    Patch by Corinna Vinschen <vinschen@redhat.com>
1737
1738 20010517
1739  - OpenBSD CVS Sync
1740    - markus@cvs.openbsd.org 2001/05/12 19:53:13
1741      [sftp-server.c]
1742      readlink does not NULL-terminate; mhe@home.se
1743    - deraadt@cvs.openbsd.org 2001/05/15 22:04:01
1744      [ssh.1]
1745      X11 forwarding details improved
1746    - markus@cvs.openbsd.org 2001/05/16 20:51:57
1747      [authfile.c]
1748      return comments for private pem files, too; report from nolan@naic.edu
1749    - markus@cvs.openbsd.org 2001/05/16 21:53:53
1750      [clientloop.c]
1751      check for open sessions before we call select(); fixes the x11 client
1752      bug reported by bowman@math.ualberta.ca
1753    - markus@cvs.openbsd.org 2001/05/16 22:09:21
1754      [channels.c nchan.c]
1755      more select() error fixes (don't set rfd/wfd to -1).
1756  - (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
1757  - (bal) Corrected on_exit() emulation via atexit().
1758
1759 20010512
1760  - OpenBSD CVS Sync
1761    - markus@cvs.openbsd.org 2001/05/11 14:59:56
1762      [clientloop.c misc.c misc.h]
1763      add unset_nonblock for stdout/err flushing in client_loop().
1764  - (bal) Patch to partial sync up contrib/solaris/ packaging software.
1765    Patch by pete <ninjaz@webexpress.com>
1766
1767 20010511
1768  - OpenBSD CVS Sync
1769    - markus@cvs.openbsd.org 2001/05/09 22:51:57
1770      [channels.c]
1771      fix -R for protocol 2, noticed by greg@nest.cx.
1772      bug was introduced with experimental dynamic forwarding.
1773    - markus@cvs.openbsd.org 2001/05/09 23:01:31
1774      [rijndael.h]
1775      fix prototype; J.S.Peatfield@damtp.cam.ac.uk
1776
1777 20010509
1778   - OpenBSD CVS Sync
1779    - markus@cvs.openbsd.org 2001/05/06 21:23:31
1780      [cli.c]
1781      cli_read() fails to catch SIGINT + overflow; from obdb@zzlevo.net
1782    - markus@cvs.openbsd.org 2001/05/08 19:17:31
1783      [channels.c serverloop.c clientloop.c]
1784      adds correct error reporting to async connect()s
1785      fixes the server-discards-data-before-connected-bug found by
1786      onoe@sm.sony.co.jp
1787    - mouring@cvs.openbsd.org 2001/05/08 19:45:25
1788      [misc.c misc.h scp.c sftp.c]
1789      Use addargs() in sftp plus some clean up of addargs().  OK Markus
1790    - markus@cvs.openbsd.org 2001/05/06 21:45:14
1791      [clientloop.c]
1792      use atomicio for flushing stdout/stderr bufs. thanks to
1793      jbw@izanami.cee.hw.ac.uk
1794    - markus@cvs.openbsd.org 2001/05/08 22:48:07
1795      [atomicio.c]
1796      no need for xmalloc.h, thanks to espie@
1797  - (bal) UseLogin patch for Solaris/UNICOS.  Patch by Wayne Davison
1798    <wayne@blorf.net>
1799  - (bal) ./configure support to disable SIA on OSF1.  Patch by
1800    Chris Adams <cmadams@hiwaay.net>
1801  - (bal) Updates from the Sony NEWS-OS platform by NAKAJI Hiroyuki
1802    <nakaji@tutrp.tut.ac.jp>
1803
1804 20010508
1805  - (bal) Fixed configure test for USE_SIA.
1806
1807 20010506
1808  - (djm) Update config.guess and config.sub with latest versions (from
1809    ftp://ftp.gnu.org/gnu/config/) to allow configure on ia64-hpux.
1810    Suggested by Jason Mader <jason@ncac.gwu.edu>
1811  - (bal) White Space and #ifdef sync with OpenBSD
1812  - (bal) Add 'seed_rng()' to ssh-add.c
1813  - (bal) CVS ID updates for readpass.c, readpass.h, cli.c, and cli.h
1814  - OpenBSD CVS Sync
1815    - stevesk@cvs.openbsd.org 2001/05/05 13:42:52
1816      [sftp.1 ssh-add.1 ssh-keygen.1]
1817      typos, grammar
1818
1819 20010505
1820  - OpenBSD CVS Sync
1821    - stevesk@cvs.openbsd.org 2001/05/04 14:21:56
1822      [ssh.1 sshd.8]
1823      typos
1824    - markus@cvs.openbsd.org 2001/05/04 14:34:34
1825      [channels.c]
1826      channel_new() reallocs channels[], we cannot use Channel *c after
1827      calling channel_new(), XXX fix this in the future...
1828    - markus@cvs.openbsd.org 2001/05/04 23:47:34
1829      [channels.c channels.h clientloop.c nchan.c nchan.h serverloop.c ssh.c]
1830      move to Channel **channels (instead of Channel *channels), fixes realloc
1831      problems.  channel_new now returns a Channel *, favour Channel * over
1832      channel id.  remove old channel_allocate interface.
1833
1834 20010504
1835  - OpenBSD CVS Sync
1836    - stevesk@cvs.openbsd.org 2001/05/03 15:07:39
1837      [channels.c]
1838      typo in debug() string
1839    - markus@cvs.openbsd.org 2001/05/03 15:45:15
1840      [session.c]
1841      exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au
1842    - stevesk@cvs.openbsd.org 2001/05/03 21:43:01
1843      [servconf.c]
1844      remove "\n" from fatal()
1845    - mouring@cvs.openbsd.org 2001/05/03 23:09:53
1846      [misc.c misc.h scp.c sftp.c]
1847      Move colon() and cleanhost() to misc.c where I should I have put it in
1848      the first place
1849  - (bal) Updated Cygwin README by Corinna Vinschen <vinschen@redhat.com>
1850  - (bal) Avoid socket file security issues in ssh-agent for Cygwin.
1851    Patch by Egor Duda <deo@logos-m.ru>
1852
1853 20010503
1854  - OpenBSD CVS Sync
1855    - markus@cvs.openbsd.org 2001/05/02 16:41:20
1856      [ssh-add.c]
1857      fix prompt for ssh-add.
1858
1859 20010502
1860  - OpenBSD CVS Sync
1861    - mouring@cvs.openbsd.org 2001/05/02 01:25:39
1862      [readpass.c]
1863      Put the 'const' back into ssh_askpass() function.  Pointed out
1864      by Mark Miller <markm@swoon.net>.  OK Markus
1865
1866 20010501
1867  - OpenBSD CVS Sync
1868    - markus@cvs.openbsd.org 2001/04/30 11:18:52
1869      [readconf.c readconf.h ssh.1 ssh.c sshconnect.c]
1870      implement 'ssh -b bind_address' like 'telnet -b'
1871    - markus@cvs.openbsd.org 2001/04/30 15:50:46
1872      [compat.c compat.h kex.c]
1873      allow interop with weaker key generation used by ssh-2.0.x, x < 10
1874    - markus@cvs.openbsd.org 2001/04/30 16:02:49
1875      [compat.c]
1876      ssh-2.0.10 has the weak-key-bug, too.
1877  - (tim) [contrib/caldera/openssh.spec] add Requires line for Caldera 3.1
1878
1879 20010430
1880  - OpenBSD CVS Sync
1881    - markus@cvs.openbsd.org 2001/04/29 18:32:52
1882      [serverloop.c]
1883      fix whitespace
1884    - markus@cvs.openbsd.org 2001/04/29 19:16:52
1885      [channels.c clientloop.c compat.c compat.h serverloop.c]
1886      more ssh.com-2.0.x bug-compat; from per@appgate.com
1887  - (tim) New version of mdoc2man.pl from Mark D. Roth <roth+openssh@feep.net>
1888  - (djm) Add .cvsignore files, suggested by Wayne Davison <wayne@blorf.net>
1889
1890 20010429
1891  - (bal) Updated INSTALL.  PCRE moved to a new place.
1892  - (djm) Release OpenSSH-2.9p1
1893
1894 20010427
1895  - (bal) Fixed uidswap.c so it should work on non-posix complient systems.
1896    patch based on 2.5.2 version by djm.
1897  - (bal) Build manpages and config files once unless changed.  Patch by
1898    Carson Gaspar <carson@taltos.org>
1899  - (bal) arpa/nameser.h does not exist on Cygwin.  Patch by Corinna
1900    Vinschen <vinschen@redhat.com>
1901  - (bal) Add /etc/sysconfig/sshd support to redhat's sshd.init. Patch by
1902    Pekka Savola <pekkas@netcore.fi>
1903  - (bal) Cygwin lacks setgroups() API.  Patch by Corinna Vinschen
1904    <vinschen@redhat.com>
1905  - (bal) version.h synced, RPM specs updated for 2.9
1906  - (tim) update contrib/caldera files with what Caldera is using.
1907    <sps@caldera.de>
1908
1909 20010425
1910  - OpenBSD CVS Sync
1911    - markus@cvs.openbsd.org 2001/04/23 21:57:07
1912      [ssh-keygen.1 ssh-keygen.c]
1913      allow public key for -e, too
1914    - markus@cvs.openbsd.org 2001/04/23 22:14:13
1915      [ssh-keygen.c]
1916      remove debug
1917  - (bal) Whitespace resync w/ OpenBSD for uidswap.c
1918  - (djm) Add new server configuration directive 'PAMAuthenticationViaKbdInt'
1919    (default: off), implies KbdInteractiveAuthentication. Suggestion from
1920    markus@
1921  - (djm) Include crypt.h if available in auth-passwd.c
1922  - tim@mindrot.org 2001/04/25 21:38:01 [configure.in]
1923    man page detection fixes for SCO
1924
1925 20010424
1926  - OpenBSD CVS Sync
1927    - markus@cvs.openbsd.org 2001/04/22 23:58:36
1928      [ssh-keygen.1 ssh.1 sshd.8]
1929      document hostbased and other cleanup
1930  - (stevesk) start_pam() doesn't use DNS now for sshd -u0.
1931  - (stevesk) auth-pam.c: use PERMIT_NO_PASSWD
1932  - (bal) sys/queue.h is bogus for NCR platform.  Patch by Daniel Carroll
1933    <dan@mesastate.edu>
1934  - (bal) Fixed contrib/postinstall.in.  Patch by wsanders@wsanders.net
1935
1936 20010422
1937  - OpenBSD CVS Sync
1938    - markus@cvs.openbsd.org 2001/04/20 16:32:22
1939      [uidswap.c]
1940      set non-privileged gid before uid; tholo@ and deraadt@
1941    - mouring@cvs.openbsd.org 2001/04/21 00:55:57
1942      [sftp.1]
1943      Spelling
1944    - djm@cvs.openbsd.org 2001/04/22 08:13:30
1945      [ssh.1]
1946      typos spotted by stevesk@; ok deraadt@
1947    - markus@cvs.openbsd.org 2001/04/22 12:34:05
1948      [scp.c]
1949      scp > 2GB; niles@scyld.com; ok deraadt@, djm@
1950    - markus@cvs.openbsd.org 2001/04/22 13:25:37
1951      [ssh-keygen.1 ssh-keygen.c]
1952      rename arguments -x -> -e (export key), -X -> -i (import key)
1953      xref draft-ietf-secsh-publickeyfile-01.txt
1954    - markus@cvs.openbsd.org 2001/04/22 13:32:27
1955      [sftp-server.8 sftp.1 ssh.1 sshd.8]
1956      xref draft-ietf-secsh-*
1957    - markus@cvs.openbsd.org 2001/04/22 13:41:02
1958      [ssh-keygen.1 ssh-keygen.c]
1959      style, noted by stevesk; sort flags in usage
1960
1961 20010421
1962  - OpenBSD CVS Sync
1963    - djm@cvs.openbsd.org 2001/04/20 07:17:51
1964      [clientloop.c ssh.1]
1965      Split out and improve escape character documentation, mention ~R in
1966      ~? help text; ok markus@
1967  - Update RPM spec files for CVS version.h
1968  - (stevesk) set the default PAM service name to __progname instead
1969    of the hard-coded value "sshd"; from Mark D. Roth <roth@feep.net>
1970  - (stevesk) document PAM service name change in INSTALL
1971  - tim@mindrot.org 2001/04/21 14:25:57 [Makefile.in configure.in]
1972    fix perl test, fix nroff test, fix Makefile to build outside source tree
1973
1974 20010420
1975  - OpenBSD CVS Sync
1976    - ian@cvs.openbsd.org 2001/04/18 16:21:05
1977      [ssh-keyscan.1]
1978      Fix typo reported in PR/1779
1979    - markus@cvs.openbsd.org 2001/04/18 21:57:42
1980      [readpass.c ssh-add.c]
1981      call askpass from ssh, too, based on work by roth@feep.net, ok deraadt
1982    - markus@cvs.openbsd.org 2001/04/18 22:03:45
1983      [auth2.c sshconnect2.c]
1984      use FDQN with trailing dot in the hostbased auth packets, ok deraadt@
1985    - markus@cvs.openbsd.org 2001/04/18 22:48:26
1986      [auth2.c]
1987      no longer const
1988    - markus@cvs.openbsd.org 2001/04/18 23:43:26
1989      [auth2.c compat.c sshconnect2.c]
1990      more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works now
1991      (however the 2.1.0 server seems to work only if debug is enabled...)
1992    - markus@cvs.openbsd.org 2001/04/18 23:44:51
1993      [authfile.c]
1994      error->debug; noted by fries@
1995    - markus@cvs.openbsd.org 2001/04/19 00:05:11
1996      [auth2.c]
1997      use local variable, no function call needed.
1998      (btw, hostbased works now with ssh.com >= 2.0.13)
1999   - (bal) Put scp-common.h back into scp.c (it exists in the upstream
2000     tree) pointed out by Tom Holroyd <tomh@po.crl.go.jp>
2001
2002 20010418
2003   - OpenBSD CVS Sync
2004    - markus@cvs.openbsd.org 2001/04/17 19:34:25
2005      [session.c]
2006      move auth_approval to do_authenticated().
2007      do_child(): nuke hostkeys from memory
2008      don't source .ssh/rc for subsystems.
2009    - markus@cvs.openbsd.org 2001/04/18 14:15:00
2010      [canohost.c]
2011      debug->debug3
2012   - (bal) renabled 'catman-do:' and fixed it.  So now catman pages should
2013     be working again.
2014   - (bal) Makfile day... Cleaned up multiple mantype support (Patch by
2015     Mark D. Roth <roth+openssh@feep.net>), and fixed PIDDIR support.
2016
2017 20010417
2018   - (bal) Add perl5 check for HP/UX, Removed GNUness from Makefile.in
2019     and temporary commented out 'catman-do:' since it is broken.  Patches
2020     for the first two by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2021   - OpenBSD CVS Sync
2022    - deraadt@cvs.openbsd.org 2001/04/16 08:26:04
2023      [key.c]
2024      better safe than sorry in later mods; yongari@kt-is.co.kr
2025    - markus@cvs.openbsd.org 2001/04/17 08:14:01
2026      [sshconnect1.c]
2027      check for key!=NULL, thanks to costa
2028    - markus@cvs.openbsd.org 2001/04/17 09:52:48
2029      [clientloop.c]
2030      handle EINTR/EAGAIN on read; ok deraadt@
2031    - markus@cvs.openbsd.org 2001/04/17 10:53:26
2032      [key.c key.h readconf.c readconf.h ssh.1 sshconnect2.c]
2033      add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@
2034    - markus@cvs.openbsd.org 2001/04/17 12:55:04
2035      [channels.c ssh.c]
2036      undo socks5 and https support since they are not really used and
2037      only bloat ssh.  remove -D from usage(), since '-D' is experimental.
2038
2039 20010416
2040   - OpenBSD CVS Sync
2041    - stevesk@cvs.openbsd.org 2001/04/15 01:35:22
2042      [ttymodes.c]
2043      fix comments
2044    - markus@cvs.openbsd.org 2001/04/15 08:43:47
2045      [dh.c sftp-glob.c sftp-glob.h sftp-int.c sshconnect2.c sshd.c]
2046      some unused variable and typos; from tomh@po.crl.go.jp
2047    - markus@cvs.openbsd.org 2001/04/15 16:58:03
2048      [authfile.c ssh-keygen.c sshd.c]
2049      don't use errno for key_{load,save}_private; discussion w/ solar@openwall
2050    - markus@cvs.openbsd.org 2001/04/15 17:16:00
2051      [clientloop.c]
2052      set stdin/out/err to nonblocking in SSH proto 1, too. suggested by ho@
2053      should fix some of the blocking problems for rsync over SSH-1
2054    - stevesk@cvs.openbsd.org 2001/04/15 19:41:21
2055      [sshd.8]
2056      some ClientAlive cleanup; ok markus@
2057    - stevesk@cvs.openbsd.org 2001/04/15 21:28:35
2058      [readconf.c servconf.c]
2059      use fatal() or error() vs. fprintf(); ok markus@
2060  - (djm) Convert mandoc manpages to man automatically. Patch from Mark D.
2061    Roth <roth+openssh@feep.net>
2062  - (bal) CVS ID fix up and slight manpage fix from OpenBSD tree.
2063   - (djm) OpenBSD CVS Sync
2064    - mouring@cvs.openbsd.org 2001/04/16 02:31:44
2065      [scp.c sftp.c]
2066      IPv6 support for sftp (which I bungled in my last patch) which is
2067      borrowed from scp.c.  Thanks to Markus@ for pointing it out.
2068    - deraadt@cvs.openbsd.org 2001/04/16 08:05:34
2069      [xmalloc.c]
2070      xrealloc dealing with ptr == nULL; mouring
2071    - djm@cvs.openbsd.org 2001/04/16 08:19:31
2072      [session.c]
2073      Split motd and hushlogin checks into seperate functions, helps for
2074      portable. From Chris Adams <cmadams@hiwaay.net>; ok markus@
2075  - Fix OSF SIA support displaying too much information for quiet
2076    logins and logins where access was denied by SIA. Patch from Chris Adams
2077    <cmadams@hiwaay.net>
2078
2079 20010415
2080  - OpenBSD CVS Sync
2081    - deraadt@cvs.openbsd.org 2001/04/14 04:31:01
2082      [ssh-add.c]
2083      do not double free
2084    - markus@cvs.openbsd.org 2001/04/14 16:17:14
2085      [channels.c]
2086      remove some channels that are not appropriate for keepalive.
2087    - markus@cvs.openbsd.org 2001/04/14 16:27:57
2088      [ssh-add.c]
2089      use clear_pass instead of xfree()
2090    - stevesk@cvs.openbsd.org 2001/04/14 16:33:20
2091      [clientloop.c packet.h session.c ssh.c ttymodes.c ttymodes.h]
2092      protocol 2 tty modes support; ok markus@
2093    - stevesk@cvs.openbsd.org 2001/04/14 17:04:42
2094      [scp.c]
2095      'T' handling rcp/scp sync; ok markus@
2096  - Missed sshtty.[ch] in Sync.
2097
2098 20010414
2099  - Sync with OpenBSD glob.c, strlcat.c and vis.c changes
2100  - Cygwin sftp/sftp-server binary mode patch from Corinna Vinschen
2101    <vinschen@redhat.com>
2102  - OpenBSD CVS Sync
2103    - beck@cvs.openbsd.org 2001/04/13 22:46:54
2104      [channels.c channels.h servconf.c servconf.h serverloop.c sshd.8]
2105      Add options ClientAliveInterval and ClientAliveCountMax to sshd.
2106      This gives the ability to do a "keepalive" via the encrypted channel
2107      which can't be spoofed (unlike TCP keepalives). Useful for when you want
2108      to use ssh connections to authenticate people for something, and know
2109      relatively quickly when they are no longer authenticated. Disabled
2110      by default (of course). ok markus@
2111
2112 20010413
2113  - OpenBSD CVS Sync
2114    - markus@cvs.openbsd.org 2001/04/12 14:29:09
2115      [ssh.c]
2116      show debug output during option processing, report from
2117      pekkas@netcore.fi
2118    - markus@cvs.openbsd.org 2001/04/12 19:15:26
2119      [auth-rhosts.c auth.h auth2.c buffer.c canohost.c canohost.h
2120       compat.c compat.h hostfile.c pathnames.h readconf.c readconf.h
2121       servconf.c servconf.h ssh.c sshconnect.c sshconnect.h sshconnect1.c
2122       sshconnect2.c sshd_config]
2123      implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
2124      similar to RhostRSAAuthentication unless you enable (the experimental)
2125      HostbasedUsesNameFromPacketOnly option.  please test. :)
2126    - markus@cvs.openbsd.org 2001/04/12 19:39:27
2127      [readconf.c]
2128      typo
2129    - stevesk@cvs.openbsd.org 2001/04/12 20:09:38
2130      [misc.c misc.h readconf.c servconf.c ssh.c sshd.c]
2131      robust port validation; ok markus@ jakob@
2132    - mouring@cvs.openbsd.org 2001/04/12 23:17:54
2133      [sftp-int.c sftp-int.h sftp.1 sftp.c]
2134      Add support for:
2135         sftp [user@]host[:file [file]]  - Fetch remote file(s)
2136         sftp [user@]host[:dir[/]]       - Start in remote dir/
2137      OK deraadt@
2138    - stevesk@cvs.openbsd.org 2001/04/13 01:26:17
2139      [ssh.c]
2140      missing \n in error message
2141  - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
2142    lack it.
2143
2144 20010412
2145  - OpenBSD CVS Sync
2146    - markus@cvs.openbsd.org 2001/04/10 07:46:58
2147      [channels.c]
2148      cleanup socks4 handling
2149    - itojun@cvs.openbsd.org 2001/04/10 09:13:22
2150      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
2151      document id_rsa{.pub,}.  markus ok
2152    - markus@cvs.openbsd.org 2001/04/10 12:15:23
2153      [channels.c]
2154      debug cleanup
2155    - djm@cvs.openbsd.org 2001/04/11 07:06:22
2156      [sftp-int.c]
2157      'mget' and 'mput' aliases; ok markus@
2158    - markus@cvs.openbsd.org 2001/04/11 10:59:01
2159      [ssh.c]
2160      use strtol() for ports, thanks jakob@
2161    - markus@cvs.openbsd.org 2001/04/11 13:56:13
2162      [channels.c ssh.c]
2163      https-connect and socks5 support. i feel so bad.
2164    - lebel@cvs.openbsd.org 2001/04/11 16:25:30
2165      [sshd.8 sshd.c]
2166      implement the -e option into sshd:
2167       -e      When this option is specified, sshd will send the output to the
2168               standard error instead of the system log.
2169      markus@ OK.
2170
2171 20010410
2172  - OpenBSD CVS Sync
2173    - deraadt@cvs.openbsd.org 2001/04/08 20:52:55
2174      [sftp.c]
2175      do not modify an actual argv[] entry
2176    - stevesk@cvs.openbsd.org 2001/04/08 23:28:27
2177      [sshd.8]
2178      spelling
2179    - stevesk@cvs.openbsd.org 2001/04/09 00:42:05
2180      [sftp.1]
2181      spelling
2182    - markus@cvs.openbsd.org 2001/04/09 15:12:23
2183      [ssh-add.c]
2184      passphrase caching: ssh-add tries last passphrase, clears passphrase if
2185      not successful and after last try.
2186      based on discussions with espie@, jakob@, ... and code from jakob@ and
2187      wolfgang@wsrcc.com
2188    - markus@cvs.openbsd.org 2001/04/09 15:19:49
2189      [ssh-add.1]
2190      ssh-add retries the last passphrase...
2191    - stevesk@cvs.openbsd.org 2001/04/09 18:00:15
2192      [sshd.8]
2193      ListenAddress mandoc from aaron@
2194
2195 20010409
2196  - (stevesk) use setresgid() for setegid() if needed
2197  - (stevesk) configure.in: typo
2198  - OpenBSD CVS Sync
2199    - stevesk@cvs.openbsd.org 2001/04/08 16:01:36
2200      [sshd.8]
2201      document ListenAddress addr:port
2202    - markus@cvs.openbsd.org 2001/04/08 13:03:00
2203      [ssh-add.c]
2204      init pointers with NULL, thanks to danimal@danimal.org
2205    - markus@cvs.openbsd.org 2001/04/08 11:27:33
2206      [clientloop.c]
2207      leave_raw_mode if ssh2 "session" is closed
2208    - markus@cvs.openbsd.org 2001/04/06 21:00:17
2209      [auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth2.c channels.c session.c
2210       ssh.c sshconnect.c sshconnect.h uidswap.c uidswap.h]
2211      do gid/groups-swap in addition to uid-swap, should help if /home/group
2212      is chmod 750 + chgrp grp /home/group/, work be deraadt and me, thanks
2213      to olar@openwall.com is comments.  we had many requests for this.
2214    - markus@cvs.openbsd.org 2001/04/07 08:55:18
2215      [buffer.c channels.c channels.h readconf.c ssh.c]
2216      allow the ssh client act as a SOCKS4 proxy (dynamic local
2217      portforwarding).  work by Dan Kaminsky <dankamin@cisco.com> and me.
2218      thanks to Dan for this great patch: use 'ssh -D 1080 host' and make
2219      netscape use localhost:1080 as a socks proxy.
2220    - markus@cvs.openbsd.org 2001/04/08 11:24:33
2221      [uidswap.c]
2222      KNF
2223
2224 20010408
2225  - OpenBSD CVS Sync
2226    - stevesk@cvs.openbsd.org 2001/04/06 22:12:47
2227      [hostfile.c]
2228      unused; typo in comment
2229    - stevesk@cvs.openbsd.org 2001/04/06 22:25:25
2230      [servconf.c]
2231      in addition to:
2232      ListenAddress host|ipv4_addr|ipv6_addr
2233      permit:
2234      ListenAddress [host|ipv4_addr|ipv6_addr]:port
2235      ListenAddress host|ipv4_addr:port
2236      sshd.8 updates coming.  ok markus@
2237
2238 20010407
2239  - (bal) CVS ID Resync of version.h
2240  - OpenBSD CVS Sync
2241    - markus@cvs.openbsd.org 2001/04/05 23:39:20
2242      [serverloop.c]
2243      keep the ssh session even if there is no active channel.
2244      this is more in line with the protocol spec and makes
2245         ssh -N -L 1234:server:110 host
2246      more useful.
2247      based on discussion with <mats@mindbright.se> long time ago
2248      and recent mail from <res@shore.net>
2249    - deraadt@cvs.openbsd.org 2001/04/06 16:46:59
2250      [scp.c]
2251      remove trailing / from source paths; fixes pr#1756
2252
2253 20010406
2254  - (stevesk) logintest.c: fix for systems without __progname
2255  - (stevesk) Makefile.in: log.o is in libssh.a
2256  - OpenBSD CVS Sync
2257    - markus@cvs.openbsd.org 2001/04/05 10:00:06
2258      [compat.c]
2259      2.3.x does old  GEX, too; report jakob@
2260    - markus@cvs.openbsd.org 2001/04/05 10:39:03
2261      [compress.c compress.h packet.c]
2262      reset compress state per direction when rekeying.
2263    - markus@cvs.openbsd.org 2001/04/05 10:39:48
2264      [version.h]
2265      temporary version 2.5.4 (supports rekeying).
2266      this is not an official release.
2267    - markus@cvs.openbsd.org 2001/04/05 10:42:57
2268      [auth-chall.c authfd.c channels.c clientloop.c kex.c kexgex.c key.c
2269       mac.c packet.c serverloop.c sftp-client.c sftp-client.h sftp-glob.c
2270       sftp-glob.h sftp-int.c sftp-server.c sftp.c ssh-keygen.c sshconnect.c
2271       sshconnect2.c sshd.c]
2272      fix whitespace: unexpand + trailing spaces.
2273    - markus@cvs.openbsd.org 2001/04/05 11:09:17
2274      [clientloop.c compat.c compat.h]
2275      add SSH_BUG_NOREKEY and detect broken (=all old) openssh versions.
2276    - markus@cvs.openbsd.org 2001/04/05 15:45:43
2277      [ssh.1]
2278      ssh defaults to protocol v2; from quisar@quisar.ambre.net
2279    - stevesk@cvs.openbsd.org 2001/04/05 15:48:18
2280      [canohost.c canohost.h session.c]
2281      move get_remote_name_or_ip() to canohost.[ch]; for portable.  ok markus@
2282    - markus@cvs.openbsd.org 2001/04/05 20:01:10
2283      [clientloop.c]
2284      for ~R print message if server does not support rekeying. (and fix ~R).
2285    - markus@cvs.openbsd.org 2001/04/05 21:02:46
2286      [buffer.c]
2287      better error message
2288    - markus@cvs.openbsd.org 2001/04/05 21:05:24
2289      [clientloop.c ssh.c]
2290      don't request a session for 'ssh -N', pointed out slade@shore.net
2291
2292 20010405
2293  - OpenBSD CVS Sync
2294    - markus@cvs.openbsd.org 2001/04/04 09:48:35
2295      [kex.c kex.h kexdh.c kexgex.c packet.c sshconnect2.c sshd.c]
2296      don't sent multiple kexinit-requests.
2297      send newkeys, block while waiting for newkeys.
2298      fix comments.
2299    - markus@cvs.openbsd.org 2001/04/04 14:34:58
2300      [clientloop.c kex.c kex.h serverloop.c sshconnect2.c sshd.c]
2301      enable server side rekeying + some rekey related clientup.
2302      todo: we should not send any non-KEX messages after we send KEXINIT
2303    - markus@cvs.openbsd.org 2001/04/04 15:50:55
2304      [compat.c]
2305      f-secure 1.3.2 does not handle IGNORE; from milliondl@ornl.gov
2306    - markus@cvs.openbsd.org 2001/04/04 20:25:38
2307      [channels.c channels.h clientloop.c kex.c kex.h serverloop.c
2308       sshconnect2.c sshd.c]
2309      more robust rekeying
2310      don't send channel data after rekeying is started.
2311    - markus@cvs.openbsd.org 2001/04/04 20:32:56
2312      [auth2.c]
2313      we don't care about missing bannerfiles; from tsoome@ut.ee, ok deraadt@
2314    - markus@cvs.openbsd.org 2001/04/04 22:04:35
2315      [kex.c kexgex.c serverloop.c]
2316      parse full kexinit packet.
2317      make server-side more robust, too.
2318    - markus@cvs.openbsd.org 2001/04/04 23:09:18
2319      [dh.c kex.c packet.c]
2320      clear+free keys,iv for rekeying.
2321      + fix DH mem leaks. ok niels@
2322  - (stevesk) don't use vhangup() if defined(HAVE_DEV_PTMX); also removes
2323     BROKEN_VHANGUP
2324
2325 20010404
2326  - OpenBSD CVS Sync
2327    - deraadt@cvs.openbsd.org 2001/04/02 17:32:23
2328      [ssh-agent.1]
2329      grammar; slade@shore.net
2330    - stevesk@cvs.openbsd.org 2001/04/03 13:56:11
2331      [sftp-glob.c ssh-agent.c ssh-keygen.c]
2332      free() -> xfree()
2333    - markus@cvs.openbsd.org 2001/04/03 19:53:29
2334      [dh.c dh.h kex.c kex.h sshconnect2.c sshd.c]
2335      move kex to kex*.c, used dispatch_set() callbacks for kex. should
2336      make rekeying easier.
2337    - todd@cvs.openbsd.org 2001/04/03 21:19:38
2338      [ssh_config]
2339      id_rsa1/2 -> id_rsa; ok markus@
2340    - markus@cvs.openbsd.org 2001/04/03 23:32:12
2341      [kex.c kex.h packet.c sshconnect2.c sshd.c]
2342      undo parts of recent my changes: main part of keyexchange does not
2343      need dispatch-callbacks, since application data is delayed until
2344      the keyexchange completes (if i understand the drafts correctly).
2345      add some infrastructure for re-keying.
2346    - markus@cvs.openbsd.org 2001/04/04 00:06:54
2347      [clientloop.c sshconnect2.c]
2348      enable client rekeying
2349         (1) force rekeying with ~R, or
2350         (2) if the server requests rekeying.
2351      works against ssh-2.0.12/2.0.13/2.1.0/2.2.0/2.3.0/2.3.1/2.4.0
2352  - (bal) Oops.. Missed including kexdh.c and kexgex.c in OpenBSD sync.
2353
2354 20010403
2355  - OpenBSD CVS Sync
2356    - stevesk@cvs.openbsd.org 2001/04/02 14:15:31
2357      [sshd.8]
2358      typo; ok markus@
2359    - stevesk@cvs.openbsd.org 2001/04/02 14:20:23
2360      [readconf.c servconf.c]
2361      correct comment; ok markus@
2362  - (stevesk) nchan.c: remove ostate checks and add EINVAL to
2363     shutdown(SHUT_RD) error() bypass for HP-UX.
2364
2365 20010402
2366  - (stevesk) log.c openbsd sync; missing newlines
2367  - (stevesk) sshpty.h openbsd sync; PTY_H -> SSHPTY_H
2368
2369 20010330
2370  - (djm) Another openbsd-compat/glob.c sync
2371  - (djm) OpenBSD CVS Sync
2372    - provos@cvs.openbsd.org 2001/03/28 21:59:41
2373      [kex.c kex.h sshconnect2.c sshd.c]
2374      forgot to include min and max params in hash, okay markus@
2375    - provos@cvs.openbsd.org 2001/03/28 22:04:57
2376      [dh.c]
2377      more sanity checking on primes file
2378    - markus@cvs.openbsd.org 2001/03/28 22:43:31
2379      [auth.h auth2.c auth2-chall.c]
2380      check auth_root_allowed for kbd-int auth, too.
2381    - provos@cvs.openbsd.org 2001/03/29 14:24:59
2382      [sshconnect2.c]
2383      use recommended defaults
2384    - stevesk@cvs.openbsd.org 2001/03/29 21:06:21
2385      [sshconnect2.c sshd.c]
2386      need to set both STOC and CTOS for SSH_BUG_BIGENDIANAES; ok markus@
2387    - markus@cvs.openbsd.org 2001/03/29 21:17:40
2388      [dh.c dh.h kex.c kex.h]
2389      prepare for rekeying: move DH code to dh.c
2390    - djm@cvs.openbsd.org 2001/03/29 23:42:01
2391      [sshd.c]
2392      Protocol 1 key regeneration log => verbose, some KNF; ok markus@
2393
2394 20010329
2395  - OpenBSD CVS Sync
2396    - stevesk@cvs.openbsd.org 2001/03/26 15:47:59
2397      [ssh.1]
2398      document more defaults; misc. cleanup.  ok markus@
2399    - markus@cvs.openbsd.org 2001/03/26 23:12:42
2400      [authfile.c]
2401      KNF
2402    - markus@cvs.openbsd.org 2001/03/26 23:23:24
2403      [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
2404      try to read private f-secure ssh v2 rsa keys.
2405    - markus@cvs.openbsd.org 2001/03/27 10:34:08
2406      [ssh-rsa.c sshd.c]
2407      use EVP_get_digestbynid, reorder some calls and fix missing free.
2408    - markus@cvs.openbsd.org 2001/03/27 10:57:00
2409      [compat.c compat.h ssh-rsa.c]
2410      some older systems use NID_md5 instead of NID_sha1 for RSASSA-PKCS1-v1_5
2411      signatures in SSH protocol 2, ok djm@
2412    - provos@cvs.openbsd.org 2001/03/27 17:46:50
2413      [compat.c compat.h dh.c dh.h ssh2.h sshconnect2.c sshd.c version.h]
2414      make dh group exchange more flexible, allow min and max group size,
2415      okay markus@, deraadt@
2416    - stevesk@cvs.openbsd.org 2001/03/28 19:56:23
2417      [scp.c]
2418      start to sync scp closer to rcp; ok markus@
2419    - stevesk@cvs.openbsd.org 2001/03/28 20:04:38
2420      [scp.c]
2421      usage more like rcp and add missing -B to usage; ok markus@
2422    - markus@cvs.openbsd.org 2001/03/28 20:50:45
2423      [sshd.c]
2424      call refuse() before close(); from olemx@ans.pl
2425
2426 20010328
2427  - (djm) Reorder tests and library inclusion for Krb4/AFS to try to
2428    resolve linking conflicts with libcrypto. Report and suggested fix
2429    from Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
2430  - (djm) Work around Solaris' broken struct dirent. Diagnosis and suggested
2431    fix from Philippe Levan <levan@epix.net>
2432  - (djm) Rework krbIV tests to get us closer to building on Redhat. Still
2433    doesn't work because of conflicts between krbIV's and OpenSSL's des.h
2434  - (djm) Sync openbsd-compat/glob.c
2435
2436 20010327
2437  - Attempt sync with sshlogin.c w/ OpenBSD (mainly CVS ID)
2438  - Fix pointer issues in waitpid() and wait() replaces.  Patch by Lutz
2439    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2440  - OpenBSD CVS Sync
2441    - djm@cvs.openbsd.org 2001/03/25 00:01:34
2442      [session.c]
2443      shorten; ok markus@
2444    - stevesk@cvs.openbsd.org 2001/03/25 13:16:11
2445      [servconf.c servconf.h session.c sshd.8 sshd_config]
2446      PrintLastLog option; from chip@valinux.com with some minor
2447      changes by me.  ok markus@
2448    - markus@cvs.openbsd.org 2001/03/26 08:07:09
2449      [authfile.c authfile.h ssh-add.c ssh-keygen.c ssh.c sshconnect.c
2450       sshconnect.h sshconnect1.c sshconnect2.c sshd.c]
2451      simpler key load/save interface, see authfile.h
2452  - (djm) Reestablish PAM credentials (which can be supplemental group
2453    memberships) after initgroups() blows them away. Report and suggested
2454    fix from Nalin Dahyabhai <nalin@redhat.com>
2455
2456 20010324
2457  - Fixed permissions ssh-keyscan.  Thanks to Christopher Linn <celinn@mtu.edu>.
2458  - OpenBSD CVS Sync
2459    - djm@cvs.openbsd.org 2001/03/23 11:04:07
2460      [compat.c compat.h sshconnect2.c sshd.c]
2461      Compat for OpenSSH with broken Rijndael/AES. ok markus@
2462    - markus@cvs.openbsd.org 2001/03/23 12:02:49
2463      [auth1.c]
2464      authctxt is now passed to do_authenticated
2465    - markus@cvs.openbsd.org 2001/03/23 13:10:57
2466      [sftp-int.c]
2467      fix put, upload to _absolute_ path, ok djm@
2468    - markus@cvs.openbsd.org 2001/03/23 14:28:32
2469      [session.c sshd.c]
2470      ignore SIGPIPE, restore in child, fixes x11-fwd crashes; with djm@
2471  - (djm) Pull out our own SIGPIPE hacks
2472
2473 20010323
2474  - OpenBSD CVS Sync
2475    - deraadt@cvs.openbsd.org 2001/03/22 20:22:55
2476      [sshd.c]
2477      do not place linefeeds in buffer
2478
2479 20010322
2480  - (djm) Better AIX no tty fix, spotted by Gert Doering <gert@greenie.muc.de>
2481  - (bal) version.c CVS ID resync
2482  - (bal) auth-chall.c auth-passwd.c auth.h auth1.c auth2.c session.c CVS ID
2483    resync
2484  - (bal) scp.c CVS ID resync
2485  - OpenBSD CVS Sync
2486    - markus@cvs.openbsd.org 2001/03/20 19:10:16
2487      [readconf.c]
2488      default to SSH protocol version 2
2489    - markus@cvs.openbsd.org 2001/03/20 19:21:21
2490      [session.c]
2491      remove unused arg
2492    - markus@cvs.openbsd.org 2001/03/20 19:21:21
2493      [session.c]
2494      remove unused arg
2495    - markus@cvs.openbsd.org 2001/03/21 11:43:45
2496      [auth1.c auth2.c session.c session.h]
2497      merge common ssh v1/2 code
2498    - jakob@cvs.openbsd.org 2001/03/21 14:20:45
2499      [ssh-keygen.c]
2500      add -B flag to usage
2501    - markus@cvs.openbsd.org 2001/03/21 21:06:30
2502      [session.c]
2503      missing init; from mib@unimelb.edu.au
2504
2505 20010321
2506  - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
2507    VanDevender <stevev@darkwing.uoregon.edu>
2508  - (djm) Make sure pam_retval is initialised on call to pam_end. Patch
2509    from Solar Designer <solar@openwall.com>
2510  - (djm) Don't loop forever when changing password via PAM. Patch
2511    from Solar Designer <solar@openwall.com>
2512  - (djm) Generate config files before build
2513  - (djm) Correctly handle SIA and AIX when no tty present. Spotted and
2514    suggested fix from Mike Battersby <mib@unimelb.edu.au>
2515
2516 20010320
2517  - (bal) glob.c update to added GLOB_LIMITS (OpenBSD CVS).
2518  - (bal) glob.c update to set gl_pathv to NULL (OpenBSD CVS).
2519  - (bal) Oops.  Missed globc.h change (OpenBSD CVS).
2520  - (djm) OpenBSD CVS Sync
2521    - markus@cvs.openbsd.org 2001/03/19 17:07:23
2522      [auth.c readconf.c]
2523      undo /etc/shell and proto 2,1 change for openssh-2.5.2
2524    - markus@cvs.openbsd.org 2001/03/19 17:12:10
2525      [version.h]
2526      version 2.5.2
2527  - (djm) Update RPM spec version
2528  - (djm) Release 2.5.2p1
2529 - tim@mindrot.org 2001/03/19 18:33:47 [defines.h]
2530   change S_ISLNK macro to work for UnixWare 2.03
2531 - tim@mindrot.org 2001/03/19 20:45:11 [openbsd-compat/glob.c]
2532   add get_arg_max(). Use sysconf() if ARG_MAX is not defined
2533
2534 20010319
2535  - (djm) Seed PRNG at startup, rather than waiting for arc4random calls to
2536    do it implicitly.
2537  - (djm) Add getusershell() functions from OpenBSD CVS
2538  - OpenBSD CVS Sync
2539    - markus@cvs.openbsd.org 2001/03/18 12:07:52
2540      [auth-options.c]
2541      ignore permitopen="host:port" if AllowTcpForwarding==no
2542  - (djm) Make scp work on systems without 64-bit ints
2543  - tim@mindrot.org 2001/03/18 18:28:39 [defines.h]
2544    move HAVE_LONG_LONG_INT where it works
2545  - (bal) Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix
2546    stuff.  Change suggested by Mark Miller <markm@swoon.net>
2547  - (bal) Small fix to scp.  %lu vs %ld
2548  - (bal) NeXTStep lacks S_ISLNK.  Plus split up S_IS*
2549  - (djm) OpenBSD CVS Sync
2550    - djm@cvs.openbsd.org     2001/03/19 03:52:51
2551      [sftp-client.c]
2552      Report ssh connection closing correctly; ok deraadt@
2553    - deraadt@cvs.openbsd.org 2001/03/18 23:30:55
2554      [compat.c compat.h sshd.c]
2555      specifically version match on ssh scanners.  do not log scan
2556      information to the console
2557    - djm@cvs.openbsd.org      2001/03/19 12:10:17
2558      [sshd.8]
2559      Document permitopen authorized_keys option; ok markus@
2560    - djm@cvs.openbsd.org     2001/03/19 05:49:52
2561      [ssh.1]
2562      document PreferredAuthentications option; ok markus@
2563  - (bal) Minor NeXT fixed.  Forgot to #undef NGROUPS_MAX
2564
2565 20010318
2566  - (bal) Fixed scp type casing issue which causes "scp: protocol error:
2567    size not delimited" fatal errors when tranfering.
2568  - OpenBSD CVS Sync
2569    - markus@cvs.openbsd.org 2001/03/17 17:27:59
2570      [auth.c]
2571      check /etc/shells, too
2572  - tim@mindrot.org 2001/03/17 18:45:25 [compat.c]
2573      openbsd-compat/fake-regex.h
2574
2575 20010317
2576  - Support usrinfo() on AIX. Based on patch from Gert Doering
2577    <gert@greenie.muc.de>
2578  - OpenBSD CVS Sync
2579    - markus@cvs.openbsd.org 2001/03/15 15:05:59
2580      [scp.c]
2581      use %lld in printf, ok millert@/deraadt@; report from ssh@client.fi
2582    - markus@cvs.openbsd.org 2001/03/15 22:07:08
2583      [session.c]
2584      pass Session to do_child + KNF
2585    - djm@cvs.openbsd.org 2001/03/16 08:16:18
2586      [sftp-client.c sftp-client.h sftp-glob.c sftp-int.c]
2587      Revise globbing for get/put to be more shell-like. In particular,
2588      "get/put file* directory/" now works. ok markus@
2589    - markus@cvs.openbsd.org 2001/03/16 09:55:53
2590      [sftp-int.c]
2591      fix memset and whitespace
2592    - markus@cvs.openbsd.org 2001/03/16 13:44:24
2593      [sftp-int.c]
2594      discourage strcat/strcpy
2595    - markus@cvs.openbsd.org 2001/03/16 19:06:30
2596      [auth-options.c channels.c channels.h serverloop.c session.c]
2597      implement "permitopen" key option, restricts -L style forwarding to
2598      to specified host:port pairs. based on work by harlan@genua.de
2599  - Check for gl_matchc support in glob_t and fall back to the
2600    openbsd-compat/glob.[ch] support if it does not exist.
2601
2602 20010315
2603  - OpenBSD CVS Sync
2604    - markus@cvs.openbsd.org 2001/03/14 08:57:14
2605      [sftp-client.c]
2606      Wall
2607    - markus@cvs.openbsd.org 2001/03/14 15:15:58
2608      [sftp-int.c]
2609      add version command
2610    - deraadt@cvs.openbsd.org 2001/03/14 22:50:25
2611      [sftp-server.c]
2612      note no getopt()
2613  - (stevesk) ssh-keyscan.c: specify "openbsd-compat/fake-queue.h"
2614  - (bal) Cygwin README change by Corinna Vinschen <vinschen@redhat.com>
2615
2616 20010314
2617  - OpenBSD CVS Sync
2618    - markus@cvs.openbsd.org 2001/03/13 17:34:42
2619      [auth-options.c]
2620      missing xfree, deny key on parse error; ok stevesk@
2621    - djm@cvs.openbsd.org 2001/03/13 22:42:54
2622      [sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c]
2623      sftp client filename globbing for get, put, ch{mod,grp,own}. ok markus@
2624  - (bal) Fix strerror() in bsd-misc.c
2625  - (djm) Add replacement glob() from OpenBSD libc if the system glob is
2626    missing or lacks the GLOB_ALTDIRFUNC extension
2627  - (djm) Remove -I$(srcdir)/openbsd-compat from CFLAGS, refer to headers
2628    relatively. Avoids conflict between glob.h and /usr/include/glob.h
2629
2630 20010313
2631  - OpenBSD CVS Sync
2632    - markus@cvs.openbsd.org 2001/03/12 22:02:02
2633      [key.c key.h ssh-add.c ssh-keygen.c sshconnect.c sshconnect2.c]
2634      remove old key_fingerprint interface, s/_ex//
2635
2636 20010312
2637  - OpenBSD CVS Sync
2638    - markus@cvs.openbsd.org 2001/03/11 13:25:36
2639      [auth2.c key.c]
2640      debug
2641    - jakob@cvs.openbsd.org 2001/03/11 15:03:16
2642      [key.c key.h]
2643      add improved fingerprint functions. based on work by Carsten
2644      Raskgaard <cara@int.tele.dk> and modified by me. ok markus@.
2645    - jakob@cvs.openbsd.org 2001/03/11 15:04:16
2646      [ssh-keygen.1 ssh-keygen.c]
2647      print both md5, sha1 and bubblebabble fingerprints when using
2648      ssh-keygen -l -v. ok markus@.
2649    - jakob@cvs.openbsd.org 2001/03/11 15:13:09
2650      [key.c]
2651      cleanup & shorten some var names key_fingerprint_bubblebabble.
2652    - deraadt@cvs.openbsd.org 2001/03/11 16:39:03
2653      [ssh-keygen.c]
2654      KNF, and SHA1 binary output is just creeping featurism
2655  - tim@mindrot.org 2001/03/11 17:29:32 [configure.in]
2656    test if snprintf() supports %ll
2657    add /dev to search path for PRNGD/EGD socket
2658    fix my mistake in USER_PATH test program
2659  - OpenBSD CVS Sync
2660    - markus@cvs.openbsd.org 2001/03/11 18:29:51
2661      [key.c]
2662      style+cleanup
2663    - markus@cvs.openbsd.org 2001/03/11 22:33:24
2664      [ssh-keygen.1 ssh-keygen.c]
2665      remove -v again. use -B instead for bubblebabble. make -B consistent
2666      with -l and make -B work with /path/to/known_hosts. ok deraadt@
2667  - (djm) Bump portable version number for generating test RPMs
2668  - (djm) Add "static_openssl" RPM build option, remove rsh build dependency
2669  - (bal) Reorder includes in Makefile.
2670
2671 20010311
2672  - OpenBSD CVS Sync
2673    - markus@cvs.openbsd.org 2001/03/10 12:48:27
2674      [sshconnect2.c]
2675      ignore nonexisting private keys; report rjmooney@mediaone.net
2676    - deraadt@cvs.openbsd.org 2001/03/10 12:53:51
2677      [readconf.c ssh_config]
2678      default to SSH2, now that m68k runs fast
2679    - stevesk@cvs.openbsd.org 2001/03/10 15:02:05
2680      [ttymodes.c ttymodes.h]
2681      remove unused sgtty macros; ok markus@
2682    - deraadt@cvs.openbsd.org 2001/03/10 15:31:00
2683      [compat.c compat.h sshconnect.c]
2684      all known netscreen ssh versions, and older versions of OSU ssh cannot
2685      handle password padding (newer OSU is fixed)
2686  - tim@mindrot.org 2001/03/10 16:33:42 [configure.in Makefile.in sshd_config]
2687    make sure $bindir is in USER_PATH so scp will work
2688  - OpenBSD CVS Sync
2689    - markus@cvs.openbsd.org 2001/03/10 17:51:04
2690      [kex.c match.c match.h readconf.c readconf.h sshconnect2.c]
2691      add PreferredAuthentications
2692
2693 20010310
2694  - OpenBSD CVS Sync
2695    - deraadt@cvs.openbsd.org 2001/03/09 03:14:39
2696      [ssh-keygen.c]
2697      create *.pub files with umask 0644, so that you can mv them to
2698      authorized_keys
2699    - deraadt@cvs.openbsd.org 2001/03/09 12:30:29
2700      [sshd.c]
2701      typo; slade@shore.net
2702  - Removed log.o from sftp client.  Not needed.
2703
2704 20010309
2705  - OpenBSD CVS Sync
2706    - stevesk@cvs.openbsd.org 2001/03/08 18:47:12
2707      [auth1.c]
2708      unused; ok markus@
2709    - stevesk@cvs.openbsd.org 2001/03/08 20:44:48
2710      [sftp.1]
2711      spelling, cleanup; ok deraadt@
2712    - markus@cvs.openbsd.org 2001/03/08 21:42:33
2713      [compat.c compat.h readconf.h ssh.c sshconnect1.c sshconnect2.c]
2714      implement client side of SSH2_MSG_USERAUTH_PK_OK (test public key ->
2715      no need to do enter passphrase or do expensive sign operations if the
2716      server does not accept key).
2717
2718 20010308
2719  - OpenBSD CVS Sync
2720    - djm@cvs.openbsd.org 2001/03/07 10:11:23
2721      [sftp-client.c sftp-client.h sftp-int.c sftp-server.c sftp.1 sftp.c sftp.h]
2722      Support for new draft (draft-ietf-secsh-filexfer-01). New symlink handling
2723      functions and small protocol change.
2724    - markus@cvs.openbsd.org 2001/03/08 00:15:48
2725      [readconf.c ssh.1]
2726      turn off useprivilegedports by default. only rhost-auth needs
2727      this. older sshd's may need this, too.
2728  - (stevesk) Reliant Unix (SNI) needs HAVE_BOGUS_SYS_QUEUE_H;
2729    Dirk Markwardt <D.Markwardt@tu-bs.de>
2730
2731 20010307
2732  - (bal) OpenBSD CVS Sync
2733    - deraadt@cvs.openbsd.org 2001/03/06 06:11:18
2734      [ssh-keyscan.c]
2735      appease gcc
2736    - deraadt@cvs.openbsd.org 2001/03/06 06:11:44
2737      [sftp-int.c sftp.1 sftp.c]
2738      sftp -b batchfile; mouring@etoh.eviladmin.org
2739    - deraadt@cvs.openbsd.org 2001/03/06 15:10:42
2740      [sftp.1]
2741      order things
2742    - deraadt@cvs.openbsd.org 2001/03/07 01:19:06
2743      [ssh.1 sshd.8]
2744      the name "secure shell" is boring, noone ever uses it
2745    - deraadt@cvs.openbsd.org 2001/03/07 04:05:58
2746      [ssh.1]
2747      removed dated comment
2748  - Cygwin contrib improvements from Corinna Vinschen <vinschen@redhat.com>
2749
2750 20010306
2751  - (bal) OpenBSD CVS Sync
2752    - deraadt@cvs.openbsd.org 2001/03/05 14:28:47
2753      [sshd.8]
2754      alpha order; jcs@rt.fm
2755    - stevesk@cvs.openbsd.org 2001/03/05 15:44:51
2756      [servconf.c]
2757      sync error message; ok markus@
2758    - deraadt@cvs.openbsd.org 2001/03/05 15:56:16
2759      [myproposal.h ssh.1]
2760      switch to aes128-cbc/hmac-md5 by default in SSH2 -- faster;
2761      provos & markus ok
2762    - deraadt@cvs.openbsd.org 2001/03/05 16:07:15
2763      [sshd.8]
2764      detail default hmac setup too
2765    - markus@cvs.openbsd.org 2001/03/05 17:17:21
2766      [kex.c kex.h sshconnect2.c sshd.c]
2767      generate a 2*need size (~300 instead of 1024/2048) random private
2768      exponent during the DH key agreement. according to Niels (the great
2769      german advisor) this is safe since /etc/primes contains strong
2770      primes only.
2771
2772      References:
2773              P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key
2774              agreement with short exponents, In Advances in Cryptology
2775              - EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343.
2776    - stevesk@cvs.openbsd.org 2001/03/05 17:40:48
2777      [ssh.1]
2778      more ssh_known_hosts2 documentation; ok markus@
2779    - stevesk@cvs.openbsd.org 2001/03/05 17:58:22
2780      [dh.c]
2781      spelling
2782    - deraadt@cvs.openbsd.org 2001/03/06 00:33:04
2783      [authfd.c cli.c ssh-agent.c]
2784      EINTR/EAGAIN handling is required in more cases
2785    - millert@cvs.openbsd.org 2001/03/06 01:06:03
2786      [ssh-keyscan.c]
2787      Don't assume we wil get the version string all in one read().
2788      deraadt@ OK'd
2789    - millert@cvs.openbsd.org 2001/03/06 01:08:27
2790      [clientloop.c]
2791      If read() fails with EINTR deal with it the same way we treat EAGAIN
2792
2793 20010305
2794  - (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
2795  - (bal) CVS ID touch up on sftp-int.c
2796  - (bal) CVS ID touch up on uuencode.c
2797  - (bal) CVS ID touch up on auth2.c, serverloop.c, session.c & sshd.c
2798  - (bal) OpenBSD CVS Sync
2799    - deraadt@cvs.openbsd.org 2001/02/17 23:48:48
2800      [sshd.8]
2801      it's the OpenSSH one
2802    - deraadt@cvs.openbsd.org 2001/02/21 07:37:04
2803      [ssh-keyscan.c]
2804      inline -> __inline__, and some indent
2805    - deraadt@cvs.openbsd.org 2001/02/21 09:05:54
2806      [authfile.c]
2807      improve fd handling
2808    - deraadt@cvs.openbsd.org 2001/02/21 09:12:56
2809      [sftp-server.c]
2810      careful with & and &&; markus ok
2811    - stevesk@cvs.openbsd.org 2001/02/21 21:14:04
2812      [ssh.c]
2813      -i supports DSA identities now; ok markus@
2814    - deraadt@cvs.openbsd.org 2001/02/22 04:29:37
2815      [servconf.c]
2816      grammar; slade@shore.net
2817    - deraadt@cvs.openbsd.org 2001/02/22 06:43:55
2818      [ssh-keygen.1 ssh-keygen.c]
2819      document -d, and -t defaults to rsa1
2820    - deraadt@cvs.openbsd.org 2001/02/22 08:03:51
2821      [ssh-keygen.1 ssh-keygen.c]
2822      bye bye -d
2823    - deraadt@cvs.openbsd.org 2001/02/22 18:09:06
2824      [sshd_config]
2825      activate RSA 2 key
2826    - markus@cvs.openbsd.org 2001/02/22 21:57:27
2827      [ssh.1 sshd.8]
2828      typos/grammar from matt@anzen.com
2829    - markus@cvs.openbsd.org 2001/02/22 21:59:44
2830      [auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c]
2831      use pwcopy in ssh.c, too
2832    - markus@cvs.openbsd.org 2001/02/23 15:34:53
2833      [serverloop.c]
2834      debug2->3
2835    - markus@cvs.openbsd.org 2001/02/23 18:15:13
2836      [sshd.c]
2837      the random session key depends now on the session_key_int
2838      sent by the 'attacker'
2839              dig1 = md5(cookie|session_key_int);
2840              dig2 = md5(dig1|cookie|session_key_int);
2841              fake_session_key = dig1|dig2;
2842      this change is caused by a mail from anakin@pobox.com
2843      patch based on discussions with my german advisor niels@openbsd.org
2844    - deraadt@cvs.openbsd.org 2001/02/24 10:37:55
2845      [readconf.c]
2846      look for id_rsa by default, before id_dsa
2847    - deraadt@cvs.openbsd.org 2001/02/24 10:37:26
2848      [sshd_config]
2849      ssh2 rsa key before dsa key
2850    - markus@cvs.openbsd.org 2001/02/27 10:35:27
2851      [packet.c]
2852      fix random padding
2853    - markus@cvs.openbsd.org 2001/02/27 11:00:11
2854      [compat.c]
2855      support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
2856    - deraadt@cvs.openbsd.org 2001/02/28 05:34:28
2857      [misc.c]
2858      pull in protos
2859    - deraadt@cvs.openbsd.org 2001/02/28 05:36:28
2860      [sftp.c]
2861      do not kill the subprocess on termination (we will see if this helps
2862      things or hurts things)
2863    - markus@cvs.openbsd.org 2001/02/28 08:45:39
2864      [clientloop.c]
2865      fix byte counts for ssh protocol v1
2866    - markus@cvs.openbsd.org 2001/02/28 08:54:55
2867      [channels.c nchan.c nchan.h]
2868      make sure remote stderr does not get truncated.
2869      remove closed fd's from the select mask.
2870    - markus@cvs.openbsd.org 2001/02/28 09:57:07
2871      [packet.c packet.h sshconnect2.c]
2872      in ssh protocol v2 use ignore messages for padding (instead of
2873      trailing \0).
2874    - markus@cvs.openbsd.org 2001/02/28 12:55:07
2875      [channels.c]
2876      unify debug messages
2877    - deraadt@cvs.openbsd.org 2001/02/28 17:52:54
2878      [misc.c]
2879      for completeness, copy pw_gecos too
2880    - markus@cvs.openbsd.org 2001/02/28 21:21:41
2881      [sshd.c]
2882      generate a fake session id, too
2883    - markus@cvs.openbsd.org 2001/02/28 21:27:48
2884      [channels.c packet.c packet.h serverloop.c]
2885      use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message
2886      use random content in ignore messages.
2887    - markus@cvs.openbsd.org 2001/02/28 21:31:32
2888      [channels.c]
2889      typo
2890    - deraadt@cvs.openbsd.org 2001/03/01 02:11:25
2891      [authfd.c]
2892      split line so that p will have an easier time next time around
2893    - deraadt@cvs.openbsd.org 2001/03/01 02:29:04
2894      [ssh.c]
2895      shorten usage by a line
2896    - deraadt@cvs.openbsd.org 2001/03/01 02:45:10
2897      [auth-rsa.c auth2.c deattack.c packet.c]
2898      KNF
2899    - deraadt@cvs.openbsd.org 2001/03/01 03:38:33
2900      [cli.c cli.h rijndael.h ssh-keyscan.1]
2901      copyright notices on all source files
2902    - markus@cvs.openbsd.org 2001/03/01 22:46:37
2903      [ssh.c]
2904      don't truncate remote ssh-2 commands; from mkubita@securities.cz
2905      use min, not max for logging, fixes overflow.
2906    - deraadt@cvs.openbsd.org 2001/03/02 06:21:01
2907      [sshd.8]
2908      explain SIGHUP better
2909    - deraadt@cvs.openbsd.org 2001/03/02 09:42:49
2910      [sshd.8]
2911      doc the dsa/rsa key pair files
2912    - deraadt@cvs.openbsd.org 2001/03/02 18:54:31
2913      [atomicio.c atomicio.h auth-chall.c auth.c auth2-chall.c crc32.h
2914       scp.c serverloop.c session.c sftp-server.8 sftp.1 ssh-add.1 ssh-add.c
2915       ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh.1 sshd.8]
2916      make copyright lines the same format
2917    - deraadt@cvs.openbsd.org 2001/03/03 06:53:12
2918      [ssh-keyscan.c]
2919      standard theo sweep
2920    - millert@cvs.openbsd.org 2001/03/03 21:19:41
2921      [ssh-keyscan.c]
2922      Dynamically allocate read_wait and its copies.  Since maxfd is
2923      based on resource limits it is often (usually?) larger than FD_SETSIZE.
2924    - millert@cvs.openbsd.org 2001/03/03 21:40:30
2925      [sftp-server.c]
2926      Dynamically allocate fd_set; deraadt@ OK
2927    - millert@cvs.openbsd.org 2001/03/03 21:41:07
2928      [packet.c]
2929      Dynamically allocate fd_set; deraadt@ OK
2930    - deraadt@cvs.openbsd.org 2001/03/03 22:07:50
2931      [sftp-server.c]
2932      KNF
2933    - markus@cvs.openbsd.org 2001/03/03 23:52:22
2934      [sftp.c]
2935      clean up arg processing. based on work by Christophe_Moret@hp.com
2936    - markus@cvs.openbsd.org 2001/03/03 23:59:34
2937      [log.c ssh.c]
2938      log*.c -> log.c
2939    - markus@cvs.openbsd.org 2001/03/04 00:03:59
2940      [channels.c]
2941      debug1->2
2942    - stevesk@cvs.openbsd.org 2001/03/04 10:57:53
2943      [ssh.c]
2944      add -m to usage; ok markus@
2945    - stevesk@cvs.openbsd.org 2001/03/04 11:04:41
2946      [sshd.8]
2947      small cleanup and clarify for PermitRootLogin; ok markus@
2948    - stevesk@cvs.openbsd.org 2001/03/04 11:16:06
2949      [servconf.c sshd.8]
2950      kill obsolete RandomSeed; ok markus@ deraadt@
2951    - stevesk@cvs.openbsd.org 2001/03/04 12:54:04
2952      [sshd.8]
2953      spelling
2954    - millert@cvs.openbsd.org 2001/03/04 17:42:28
2955      [authfd.c channels.c dh.c log.c readconf.c servconf.c sftp-int.c
2956       ssh.c sshconnect.c sshd.c]
2957      log functions should not be passed strings that end in newline as they
2958      get passed on to syslog() and when logging to stderr, do_log() appends
2959      its own newline.
2960    - deraadt@cvs.openbsd.org 2001/03/04 18:21:28
2961      [sshd.8]
2962      list SSH2 ciphers
2963  - (bal) Put HAVE_PW_CLASS_IN_PASSWD back into pwcopy()
2964  - (bal) Fix up logging since it changed.  removed log-*.c
2965  - (djm) Fix up LOG_AUTHPRIV for systems that have it
2966  - (stevesk) OpenBSD sync:
2967    - deraadt@cvs.openbsd.org 2001/03/05 08:37:27
2968      [ssh-keyscan.c]
2969      skip inlining, why bother
2970  - (stevesk) sftp.c: handle __progname
2971
2972 20010304
2973  - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
2974  - (bal) Updated contrib/README to remove 'make-ssh-known-hosts' and
2975    give Mark Roth credit for mdoc2man.pl
2976
2977 20010303
2978  - (djm) Remove make-ssh-known-hosts.pl, ssh-keyscan is better.
2979  - (djm) Document PAM ChallengeResponseAuthentication in sshd.8
2980  - (djm) Disable and comment ChallengeResponseAuthentication in sshd_config
2981  - (djm) Allow PRNGd entropy collection from localhost TCP socket. Replace
2982    "--with-egd-pool" configure option with "--with-prngd-socket" and
2983    "--with-prngd-port" options. Debugged and improved by Lutz Jaenicke
2984    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2985
2986 20010301
2987  - (djm) Properly add -lcrypt if needed.
2988  - (djm) Force standard PAM conversation function in a few more places.
2989    Patch from Redhat 2.5.1p1-2 RPM, probably Nalin Dahyabhai
2990    <nalin@redhat.com>
2991  - (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen
2992    <vinschen@redhat.com>
2993  - (djm) Released 2.5.1p2
2994
2995 20010228
2996  - (djm) Detect endianness in configure and use it in rijndael.c. Fixes
2997    "Bad packet length" bugs.
2998  - (djm) Fully revert PAM session patch (again). All PAM session init is
2999    now done before the final fork().
3000  - (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
3001  - (djm) Remove /tmp from EGD socket search list
3002
3003 20010227
3004  - (bal) Applied shutdown() patch for sftp.c by  Corinna Vinschen
3005    <vinschen@redhat.com>
3006  - (bal) OpenBSD Sync
3007    - markus@cvs.openbsd.org 2001/02/23 15:37:45
3008      [session.c]
3009      handle SSH_PROTOFLAG_SCREEN_NUMBER for buggy clients
3010  - (bal) sshd.init support for all Redhat release.  Patch by Jim Knoble
3011    <jmknoble@jmknoble.cx>
3012  - (djm) Fix up POSIX saved uid support. Report from Mark Miller
3013    <markm@swoon.net>
3014  - (djm) Search for -lcrypt on FreeBSD too
3015  - (djm) fatal() on OpenSSL version mismatch
3016  - (djm) Move PAM init to after fork for non-Solaris derived PAMs
3017  - (djm) Warning fix on entropy.c saved uid stuff. Patch from Mark Miller
3018    <markm@swoon.net>
3019  - (djm) Fix PAM fix
3020  - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This
3021    change is being made as 2.5.x configfiles are not back-compatible with
3022    2.3.x.
3023  - (djm) Avoid warnings for missing broken IP_TOS. Patch from Mark Miller
3024    <markm@swoon.net>
3025  - (djm) Open Server 5 doesn't need BROKEN_SAVED_UIDS. Patch from Tim Rice
3026    <tim@multitalents.net>
3027  - (djm) Avoid multiple definition of _PATH_LS. Patch from Tim Rice
3028    <tim@multitalents.net>
3029
3030 20010226
3031  - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
3032  - (djm) Some systems (SCO3, NeXT) have weird saved uid semantics.
3033    Based on patch from Tim Rice <tim@multitalents.net>
3034
3035 20010225
3036  - (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
3037    Patch from Adrian Ho <lexfiend@usa.net>
3038  - (bal) Replace 'unsigned long long' to 'u_int64_t' since not every
3039    platform defines u_int64_t as being that.
3040
3041 20010224
3042  - (bal) Missed part of the UNIX sockets patch.  Patch by Corinna
3043    Vinschen <vinschen@redhat.com>
3044  - (bal) Reorder where 'strftime' is detected to resolve linking
3045    issues on SCO.  Patch by Tim Rice <tim@multitalents.net>
3046
3047 20010224
3048  - (bal) pam_stack fix to correctly detect between RH7 and older RHs.
3049    Patch by Pekka Savola <pekkas@netcore.fi>
3050  - (bal) Renamed sigaction.[ch] to sigact.[ch].  Causes problems with
3051    some platforms.
3052  - (bal) Generalize lack of UNIX sockets since this also effects Cray
3053    not just Cygwin.  Based on patch by Wendy Palm <wendyp@cray.com>
3054
3055 20010223
3056  - (bal) Fix --define rh7 in openssh.spec file.  Patch by Steve Tell
3057    <tell@telltronics.org>
3058  - (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
3059    that it was compiled against.  Patch by Pekka Savola <pekkas@netcore.fi>
3060  - (bal) Double -I for OpenSSL on SCO.  Patch by Tim Rice
3061    <tim@multitalents.net>
3062
3063 20010222
3064  - (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
3065  - (bal) Added mdoc2man.pl from Mark Roth <roth@feep.net>
3066  - (bal) Removed reference to liblogin from contrib/README.  It was
3067    integrated into OpenSSH a long while ago.
3068  - (stevesk) remove erroneous #ifdef sgi code.
3069    Michael Stone <mstone@cs.loyola.edu>
3070
3071 20010221
3072  - (bal) Removed -L/usr/ucblib -R/usr/ucblib for Solaris platform.
3073  - (bal) Fixed OpenSSL rework to use $saved_*.  Patch by Tim Rice
3074    <tim@multitalents.net>
3075  - (bal) Reverted out of 2001/02/15 patch by djm below because it
3076    breaks Solaris.
3077         - (djm) Move PAM session setup back to before setuid to user.
3078           fixes problems on Solaris-drived PAMs.
3079  - (stevesk) session.c: back out to where we were before:
3080     - (djm) Move PAM session initialisation until after fork in sshd. Patch
3081       from Nalin Dahyabhai <nalin@redhat.com>
3082
3083 20010220
3084  - (bal) Fix mixed up params to memmove() from Jan 5th in setenv.c and
3085    getcwd.c.
3086  - (bal) OpenBSD CVS Sync:
3087    - deraadt@cvs.openbsd.org 2001/02/19 23:09:05
3088      [sshd.c]
3089      clarify message to make it not mention "ident"
3090
3091 20010219
3092  - (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
3093    pty.[ch] -> sshpty.[ch]
3094  - (djm) Rework search for OpenSSL location. Skip directories which don't
3095    exist, don't add -L$ssldir/lib if it doesn't exist. Should help SCO
3096    with its limit of 6 -L options.
3097  - OpenBSD CVS Sync:
3098    - reinhard@cvs.openbsd.org        2001/02/17 08:24:40
3099      [sftp.1]
3100      typo
3101    - deraadt@cvs.openbsd.org 2001/02/17 16:28:58
3102      [ssh.c]
3103      cleanup -V output; noted by millert
3104    - deraadt@cvs.openbsd.org 2001/02/17 16:48:48
3105      [sshd.8]
3106      it's the OpenSSH one
3107    - markus@cvs.openbsd.org  2001/02/18 11:33:54
3108      [dispatch.c]
3109      typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi
3110    - markus@cvs.openbsd.org  2001/02/19 02:53:32
3111      [compat.c compat.h serverloop.c]
3112      ssh-1.2.{18-22} has broken handling of ignore messages; report from
3113      itojun@
3114    - markus@cvs.openbsd.org  2001/02/19 03:35:23
3115      [version.h]
3116      OpenSSH_2.5.1 adds bug compat with 1.2.{18-22}
3117    - deraadt@cvs.openbsd.org 2001/02/19 03:36:25
3118      [scp.c]
3119      np is changed by recursion; vinschen@redhat.com
3120  - Update versions in RPM spec files
3121  - Release 2.5.1p1
3122
3123 20010218
3124  - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice
3125    <tim@multitalents.net>
3126  - (Bal) Patch for lack of RA_RESTART in misc.c for mysignal by
3127    stevesk
3128  - (djm) Fix my breaking of cygwin builds, Patch from Corinna Vinschen
3129    <vinschen@redhat.com> and myself.
3130  - (djm) Close listen_sock on bind() failures. Patch from Arkadiusz
3131    Miskiewicz <misiek@pld.ORG.PL>
3132  - (djm) Robustify EGD/PRNGd code in face of socket closures. Patch from
3133    Todd C. Miller <Todd.Miller@courtesan.com>
3134  - (djm) Use ttyname() to determine name of tty returned by openpty()
3135    rather then risking overflow. Patch from Marek Michalkiewicz
3136    <marekm@amelek.gda.pl>
3137  - (djm) Swapped tests for no_libsocket and no_libnsl in configure.in.
3138    Patch from Marek Michalkiewicz <marekm@amelek.gda.pl>
3139  - (djm) Doc fixes from Pekka Savola <pekkas@netcore.fi>
3140  - (djm) Use SA_INTERRUPT along SA_RESTART if present (equivalent for
3141    SunOS)
3142  - (djm) SCO needs librpc for libwrap. Patch from Tim Rice
3143    <tim@multitalents.net>
3144  - (stevesk) misc.c: cpp rework of SA_(INTERRUPT|RESTART) handling.
3145  - (stevesk) scp.c: use mysignal() for updateprogressmeter() handler.
3146  - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for
3147    SIGALRM.
3148  - (djm) Move entropy.c over to mysignal()
3149  - (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has
3150    a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C.
3151    Miller <Todd.Miller@courtesan.com>
3152  - (djm) Update RPM spec files for 2.5.0p1
3153  - (djm) Merge BSD_AUTH support from Markus Friedl and David J. MacKenzie
3154    enable with --with-bsd-auth.
3155  - (stevesk) entropy.c: typo; should be SIGPIPE
3156
3157 20010217
3158  - (bal) OpenBSD Sync:
3159    - markus@cvs.openbsd.org 2001/02/16 13:38:18
3160      [channel.c]
3161      remove debug
3162    - markus@cvs.openbsd.org 2001/02/16 14:03:43
3163      [session.c]
3164      proper payload-length check for x11 w/o screen-number
3165
3166 20010216
3167  - (bal) added '--with-prce'  to allow overriding of system regex when
3168    required (tested by David Dulek <ddulek@fastenal.com>)
3169  - (bal) Added DG/UX case and set that they have a broken IPTOS.
3170  - (djm) Mini-configure reorder patch from Tim Rice <tim@multitalents.net>
3171    Fixes linking on SCO.
3172  - (djm) Make gnome-ssh-askpass handle multi-line prompts. Patch from
3173    Nalin Dahyabhai <nalin@redhat.com>
3174  - (djm) BSD license for gnome-ssh-askpass (was X11)
3175  - (djm) KNF on gnome-ssh-askpass
3176  - (djm) USE_PIPES for a few more sysv platforms
3177  - (djm) Cleanup configure.in a little
3178  - (djm) Ask users to check config.log when we can't find necessary libs
3179  - (djm) Set "login ID" on systems with setluid. Only enabled for SCO
3180    OpenServer for now. Based on patch from svaughan <svaughan@asterion.com>
3181  - (djm) OpenBSD CVS:
3182    - markus@cvs.openbsd.org  2001/02/15 16:19:59
3183      [channels.c channels.h serverloop.c sshconnect.c sshconnect.h]
3184      [sshconnect1.c sshconnect2.c]
3185      genericize password padding function for SSH1 and SSH2.
3186      add stylized echo to 2, too.
3187  - (djm) Add roundup() macro to defines.h
3188  - (stevesk) set SA_RESTART flag in mysignal() for SIGCHLD;
3189    needed on Unixware 2.x.
3190
3191 20010215
3192  - (djm) Move PAM session setup back to before setuid to user. Fixes
3193    problems on Solaris-derived PAMs.
3194  - (djm) Clean up PAM namespace. Suggested by Darren Moffat
3195    <Darren.Moffat@eng.sun.com>
3196  - (bal) Sync w/ OpenSSH for new release
3197    - markus@cvs.openbsd.org 2001/02/12 12:45:06
3198      [sshconnect1.c]
3199      fix xmalloc(0), ok dugsong@
3200    - markus@cvs.openbsd.org 2001/02/11 12:59:25
3201      [Makefile.in sshd.8 sshconnect2.c readconf.h readconf.c packet.c
3202       sshd.c ssh.c ssh.1 servconf.h servconf.c myproposal.h kex.h kex.c]
3203      1) clean up the MAC support for SSH-2
3204      2) allow you to specify the MAC with 'ssh -m'
3205      3) or the 'MACs' keyword in ssh(d)_config
3206      4) add hmac-{md5,sha1}-96
3207              ok stevesk@, provos@
3208    - markus@cvs.openbsd.org 2001/02/12 16:16:23
3209      [auth-passwd.c auth.c auth.h auth1.c auth2.c servconf.c servconf.h
3210       ssh-keygen.c sshd.8]
3211      PermitRootLogin={yes,without-password,forced-commands-only,no}
3212      (before this change, root could login even if PermitRootLogin==no)
3213    - deraadt@cvs.openbsd.org 2001/02/12 22:56:09
3214      [clientloop.c packet.c ssh-keyscan.c]
3215      deal with EAGAIN/EINTR selects which were skipped
3216    - markus@cvs.openssh.org 2001/02/13 22:49:40
3217      [auth1.c auth2.c]
3218      setproctitle(user) only if getpwnam succeeds
3219    - markus@cvs.openbsd.org 2001/02/12 23:26:20
3220      [sshd.c]
3221      missing memset; from solar@openwall.com
3222    - stevesk@cvs.openbsd.org 2001/02/12 20:53:33
3223      [sftp-int.c]
3224      lumask now works with 1 numeric arg; ok markus@, djm@
3225    - djm@cvs.openbsd.org 2001/02/14 9:46:03
3226      [sftp-client.c sftp-int.c sftp.1]
3227      Fix and document 'preserve modes & times' option ('-p' flag in sftp);
3228      ok markus@
3229  - (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
3230  - (djm) Move to Jim's 1.2.0 X11 askpass program
3231  - (stevesk) OpenBSD sync:
3232    - deraadt@cvs.openbsd.org 2001/02/15 01:38:04
3233      [serverloop.c]
3234      indent
3235
3236 20010214
3237  - (djm) Don't try to close PAM session or delete credentials if the
3238    session has not been open or credentials not set. Based on patch from
3239    Andrew Bartlett <abartlet@pcug.org.au>
3240  - (djm) Move PAM session initialisation until after fork in sshd. Patch
3241    from Nalin Dahyabhai <nalin@redhat.com>
3242  - (bal) Missing function prototype in bsd-snprintf.c patch by
3243    Mark Miller <markm@swoon.net>
3244  - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams
3245    <cmadams@hiwaay.net> with a little modification and KNF.
3246  - (stevesk) fix for SIA patch, misplaced session_setup_sia()
3247
3248 20010213
3249  - (djm) Only test -S potential EGD sockets if they exist and are readable.
3250  - (bal) Cleaned out bsd-snprintf.c.  VARARGS have been banished and
3251    I did a base KNF over the whe whole file to make it more acceptable.
3252    (backed out of original patch and removed it from ChangeLog)
3253  - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by
3254    Tim Rice <tim@multitalents.net>
3255  - (stevesk) auth1.c: fix PAM passwordless check.
3256
3257 20010212
3258  - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1",
3259    --define "skip_gnome_askpass 1", --define "rh7 1" and make the
3260    implicit rpm-3.0.5 dependancy explicit. Patch and suggestions from
3261    Pekka Savola <pekkas@netcore.fi>
3262  - (djm) Clean up PCRE text in INSTALL
3263  - (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby
3264    <mib@unimelb.edu.au>
3265  - (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
3266  - (stevesk) session.c: remove debugging code.
3267
3268 20010211
3269  - (bal) OpenBSD Sync
3270    - markus@cvs.openbsd.org 2001/02/07 22:35:46
3271      [auth1.c auth2.c sshd.c]
3272      move k_setpag() to a central place; ok dugsong@
3273    - markus@cvs.openbsd.org 2001/02/10 12:52:02
3274      [auth2.c]
3275      offer passwd before s/key
3276    - markus@cvs.openbsd.org 2001/02/8 22:37:10
3277      [canohost.c]
3278      remove last call to sprintf; ok deraadt@
3279    - markus@cvs.openbsd.org 2001/02/10 1:33:32
3280      [canohost.c]
3281      add debug message, since sshd blocks here if DNS is not available
3282    - markus@cvs.openbsd.org 2001/02/10 12:44:02
3283      [cli.c]
3284      don't call vis() for \r
3285    - danh@cvs.openbsd.org 2001/02/10 0:12:43
3286      [scp.c]
3287      revert a small change to allow -r option to work again; ok deraadt@
3288    - danh@cvs.openbsd.org 2001/02/10 15:14:11
3289      [scp.c]
3290      fix memory leak; ok markus@
3291    - djm@cvs.openbsd.org 2001/02/10 0:45:52
3292      [scp.1]
3293      Mention that you can quote pathnames with spaces in them
3294    - markus@cvs.openbsd.org 2001/02/10 1:46:28
3295      [ssh.c]
3296      remove mapping of argv[0] -> hostname
3297    - markus@cvs.openbsd.org 2001/02/06 22:26:17
3298      [sshconnect2.c]
3299      do not ask for passphrase in batch mode; report from ejb@ql.org
3300    - itojun@cvs.opebsd.org 2001/02/08 10:47:05
3301      [sshconnect.c sshconnect1.c sshconnect2.c]
3302      %.30s is too short for IPv6 numeric address.  use %.128s for now.
3303      markus ok
3304    - markus@cvs.openbsd.org 2001/02/09 12:28:35
3305      [sshconnect2.c]
3306      do not free twice, thanks to /etc/malloc.conf
3307    - markus@cvs.openbsd.org 2001/02/09 17:10:53
3308      [sshconnect2.c]
3309      partial success: debug->log; "Permission denied" if no more auth methods
3310    - markus@cvs.openbsd.org 2001/02/10 12:09:21
3311      [sshconnect2.c]
3312      remove some lines
3313    - markus@cvs.openbsd.org 2001/02/09 13:38:07
3314      [auth-options.c]
3315      reset options if no option is given; from han.holl@prismant.nl
3316    - markus@cvs.openbsd.org 2001/02/08 21:58:28
3317      [channels.c]
3318      nuke sprintf, ok deraadt@
3319    - markus@cvs.openbsd.org 2001/02/08 21:58:28
3320      [channels.c]
3321      nuke sprintf, ok deraadt@
3322    - markus@cvs.openbsd.org 2001/02/06 22:43:02
3323      [clientloop.h]
3324      remove confusing callback code
3325    - deraadt@cvs.openbsd.org 2001/02/08 14:39:36
3326      [readconf.c]
3327      snprintf
3328    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
3329      sync with netbsd tree changes.
3330      - more strict prototypes, include necessary headers
3331      - use paths.h/pathnames.h decls
3332      - size_t typecase to int -> u_long
3333    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
3334      [ssh-keyscan.c]
3335      fix size_t -> int cast (use u_long).  markus ok
3336    - markus@cvs.openbsd.org 2001/02/07 22:43:16
3337      [ssh-keyscan.c]
3338      s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
3339    - itojun@cvs.openbsd.org 2001/02/09 9:04:59
3340      [ssh-keyscan.c]
3341      do not assume malloc() returns zero-filled region.  found by
3342      malloc.conf=AJ.
3343    - markus@cvs.openbsd.org 2001/02/08 22:35:30
3344      [sshconnect.c]
3345      don't connect if batch_mode is true and stricthostkeychecking set to
3346     'ask'
3347    - djm@cvs.openbsd.org 2001/02/04 21:26:07
3348      [sshd_config]
3349      type: ok markus@
3350    - deraadt@cvs.openbsd.org 2001/02/06 22:07:50
3351      [sshd_config]
3352      enable sftp-server by default
3353    - deraadt 2001/02/07 8:57:26
3354      [xmalloc.c]
3355      deal with new ANSI malloc stuff
3356    - markus@cvs.openbsd.org 2001/02/07 16:46:08
3357      [xmalloc.c]
3358      typo in fatal()
3359    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
3360      [xmalloc.c]
3361      fix size_t -> int cast (use u_long).  markus ok
3362    - 1.47 Thu Feb 8 23:11:42 GMT 2001 by dugsong
3363      [serverloop.c sshconnect1.c]
3364      mitigate SSH1 traffic analysis - from Solar Designer
3365      <solar@openwall.com>, ok provos@
3366  - (bal) fixed sftp-client.c.  Return 'status' instead of '0'
3367    (from the OpenBSD tree)
3368  - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
3369  - (bal) sftp-sever.c  '%8lld' to '%8llu' (OpenBSD Sync)
3370  - (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
3371  - (bal) A bit more whitespace cleanup
3372  - (djm) Set PAM_RHOST earlier, patch from Andrew Bartlett
3373    <abartlet@pcug.org.au>
3374  - (stevesk) misc.c: ssh.h not needed.
3375  - (stevesk) compat.c: more friendly cpp error
3376  - (stevesk) OpenBSD sync:
3377    - stevesk@cvs.openbsd.org 2001/02/11 06:15:57
3378      [LICENSE]
3379      typos and small cleanup; ok deraadt@
3380
3381 20010210
3382  - (djm) Sync sftp and scp stuff from OpenBSD:
3383    - djm@cvs.openbsd.org     2001/02/07 03:55:13
3384      [sftp-client.c]
3385      Don't free handles before we are done with them. Based on work from
3386      Corinna Vinschen <vinschen@redhat.com>. ok markus@
3387    - djm@cvs.openbsd.org     2001/02/06 22:32:53
3388      [sftp.1]
3389      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
3390    - deraadt@cvs.openbsd.org 2001/02/07 04:07:29
3391      [sftp.1]
3392      pretty up significantly
3393    - itojun@cvs.openbsd.org  2001/02/07 06:49:42
3394      [sftp.1]
3395      .Bl-.El mismatch.  markus ok
3396    - djm@cvs.openbsd.org     2001/02/07 06:12:30
3397      [sftp-int.c]
3398      Check that target is a directory before doing ls; ok markus@
3399    - itojun@cvs.openbsd.org  2001/02/07 11:01:18
3400      [scp.c sftp-client.c sftp-server.c]
3401      unsigned long long -> %llu, not %qu.  markus ok
3402    - stevesk@cvs.openbsd.org 2001/02/07 11:10:39
3403      [sftp.1 sftp-int.c]
3404      more man page cleanup and sync of help text with man page; ok markus@
3405    - markus@cvs.openbsd.org  2001/02/07 14:58:34
3406      [sftp-client.c]
3407      older servers reply with SSH2_FXP_NAME + count==0 instead of EOF
3408    - djm@cvs.openbsd.org     2001/02/07 15:27:19
3409      [sftp.c]
3410      Don't forward agent and X11 in sftp. Suggestion from Roumen Petrov
3411      <roumen.petrov@skalasoft.com>
3412    - stevesk@cvs.openbsd.org 2001/02/07 15:36:04
3413      [sftp-int.c]
3414      portable; ok markus@
3415    - stevesk@cvs.openbsd.org 2001/02/07 15:55:47
3416      [sftp-int.c]
3417      lowercase cmds[].c also; ok markus@
3418    - markus@cvs.openbsd.org  2001/02/07 17:04:52
3419      [pathnames.h sftp.c]
3420      allow sftp over ssh protocol 1; ok djm@
3421    - deraadt@cvs.openbsd.org 2001/02/08 07:38:55
3422      [scp.c]
3423      memory leak fix, and snprintf throughout
3424    - deraadt@cvs.openbsd.org 2001/02/08 08:02:02
3425      [sftp-int.c]
3426      plug a memory leak
3427    - stevesk@cvs.openbsd.org 2001/02/08 10:11:23
3428      [session.c sftp-client.c]
3429      %i -> %d
3430    - stevesk@cvs.openbsd.org 2001/02/08 10:57:59
3431      [sftp-int.c]
3432      typo
3433    - stevesk@cvs.openbsd.org 2001/02/08 15:28:07
3434      [sftp-int.c pathnames.h]
3435      _PATH_LS; ok markus@
3436    - djm@cvs.openbsd.org     2001/02/09 04:46:25
3437      [sftp-int.c]
3438      Check for NULL attribs for chown, chmod & chgrp operations, only send
3439      relevant attribs back to server; ok markus@
3440    - djm@cvs.openbsd.org     2001/02/06 15:05:25
3441      [sftp.c]
3442      Use getopt to process commandline arguments
3443    - djm@cvs.openbsd.org     2001/02/06 15:06:21
3444      [sftp.c ]
3445      Wait for ssh subprocess at exit
3446    - djm@cvs.openbsd.org     2001/02/06 15:18:16
3447      [sftp-int.c]
3448      stat target for remote chdir before doing chdir
3449    - djm@cvs.openbsd.org     2001/02/06 15:32:54
3450      [sftp.1]
3451      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
3452    - provos@cvs.openbsd.org  2001/02/05 22:22:02
3453      [sftp-int.c]
3454      cleanup get_pathname, fix pwd after failed cd. okay djm@
3455  - (djm) Update makefile.in for _PATH_SFTP_SERVER
3456  - (bal) sftp-client.c replace NULL w/ 0 in do_ls() (pending in OpenBSD tree)
3457
3458 20010209
3459  - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
3460    <rjmooney@mediaone.net>
3461  - (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
3462    main tree while porting forward.  Pointed out by Lutz Jaenicke
3463    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3464  - (bal) double entry in configure.in.  Pointed out by Lutz Jaenicke
3465    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3466  - (stevesk) OpenBSD sync:
3467    - markus@cvs.openbsd.org  2001/02/08 11:20:01
3468      [auth2.c]
3469      strict checking
3470    - markus@cvs.openbsd.org  2001/02/08 11:15:22
3471      [version.h]
3472      update to 2.3.2
3473    - markus@cvs.openbsd.org  2001/02/08 11:12:30
3474      [auth2.c]
3475      fix typo
3476  - (djm) Update spec files
3477  - (bal) OpenBSD sync:
3478    - deraadt@cvs.openbsd.org 2001/02/08 14:38:54
3479      [scp.c]
3480      memory leak fix, and snprintf throughout
3481    - markus@cvs.openbsd.org 2001/02/06 22:43:02
3482      [clientloop.c]
3483      remove confusing callback code
3484  - (djm) Add CVS Id's to files that we have missed
3485  - (bal) OpenBSD Sync (more):
3486    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
3487      sync with netbsd tree changes.
3488      - more strict prototypes, include necessary headers
3489      - use paths.h/pathnames.h decls
3490      - size_t typecase to int -> u_long
3491    - markus@cvs.openbsd.org 2001/02/06 22:07:42
3492      [ssh.c]
3493      fatal() if subsystem fails
3494    - markus@cvs.openbsd.org 2001/02/06 22:43:02
3495      [ssh.c]
3496      remove confusing callback code
3497    - jakob@cvs.openbsd.org 2001/02/06 23:03:24
3498      [ssh.c]
3499      add -1 option (force protocol version 1). ok markus@
3500    - jakob@cvs.openbsd.org 2001/02/06 23:06:21
3501      [ssh.c]
3502      reorder -{1,2,4,6} options. ok markus@
3503  - (bal) Missing 'const' in readpass.h
3504  - (bal) OpenBSD Sync (so at least the thing compiles for 2.3.2 =)
3505    - djm@cvs.openbsd.org 2001/02/06 23:30:28
3506      [sftp-client.c]
3507      replace arc4random with counter for request ids; ok markus@
3508  - (djm) Define _PATH_TTY for systems that don't. Report from Lutz
3509    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3510
3511 20010208
3512  - (djm) Don't delete external askpass program in make uninstall target.
3513    Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com>
3514  - (djm) Fix linking of sftp, don't need arc4random any more.
3515  - (djm) Try to use shell that supports "test -S" for EGD socket search.
3516    Based on patch from Tim Rice <tim@multitalents.net>
3517
3518 20010207
3519  - (bal) Save the whole path to AR in configure.  Some Solaris 2.7 installs
3520    seem lose track of it while in openbsd-compat/  (two confirmed reports)
3521  - (djm) Much KNF on PAM code
3522  - (djm) Revise auth-pam.c conversation function to be a little more
3523    readable.
3524  - (djm) Revise kbd-int PAM conversation function to fold all text messages
3525    to before first prompt. Fixes hangs if last pam_message did not require
3526    a reply.
3527  - (djm) Fix password changing when using PAM kbd-int authentication
3528
3529 20010205
3530  - (bal) Disable groupaccess by setting NGROUPS_MAX to 0 for platforms
3531    that don't have NGROUPS_MAX.
3532  - (bal) AIX patch for auth1.c by William L. Jones <jones@hpc.utexas.edu>
3533  - (stevesk) OpenBSD sync:
3534    - stevesk@cvs.openbsd.org 2001/02/04 08:32:27
3535      [many files; did this manually to our top-level source dir]
3536      unexpand and remove end-of-line whitespace; ok markus@
3537    - stevesk@cvs.openbsd.org 2001/02/04 15:21:19
3538      [sftp-server.c]
3539      SSH2_FILEXFER_ATTR_UIDGID support; ok markus@
3540    - deraadt@cvs.openbsd.org 2001/02/04 17:02:32
3541      [sftp-int.c]
3542      ? == help
3543    - deraadt@cvs.openbsd.org 2001/02/04 16:47:46
3544      [sftp-int.c]
3545      sort commands, so that abbreviations work as expected
3546    - stevesk@cvs.openbsd.org 2001/02/04 15:17:52
3547      [sftp-int.c]
3548      debugging sftp: precedence and missing break.  chmod, chown, chgrp
3549      seem to be working now.
3550    - markus@cvs.openbsd.org 2001/02/04 14:41:21
3551      [sftp-int.c]
3552      use base 8 for umask/chmod
3553    - markus@cvs.openbsd.org 2001/02/04 11:11:54
3554      [sftp-int.c]
3555      fix LCD
3556    - markus@cvs.openbsd.org  2001/02/04 08:10:44
3557      [ssh.1]
3558      typo; dpo@club-internet.fr
3559    - stevesk@cvs.openbsd.org 2001/02/04 06:30:12
3560      [auth2.c authfd.c packet.c]
3561      remove duplicate #include's; ok markus@
3562    - deraadt@cvs.openbsd.org 2001/02/04 16:56:23
3563      [scp.c sshd.c]
3564      alpha happiness
3565    - stevesk@cvs.openbsd.org 2001/02/04 15:12:17
3566      [sshd.c]
3567      precedence; ok markus@
3568    - deraadt@cvs.openbsd.org 2001/02/04 08:14:15
3569      [ssh.c sshd.c]
3570      make the alpha happy
3571    - markus@cvs.openbsd.org  2001/01/31 13:37:24
3572      [channels.c channels.h serverloop.c ssh.c]
3573      do not disconnect if local port forwarding fails, e.g. if port is
3574      already in use
3575    - markus@cvs.openbsd.org  2001/02/01 14:58:09
3576      [channels.c]
3577      use ipaddr in channel messages, ietf-secsh wants this
3578    - markus@cvs.openbsd.org  2001/01/31 12:26:20
3579      [channels.c]
3580      ssh.com-2.0.1x does not send additional info in CHANNEL_OPEN_FAILURE
3581      messages; bug report from edmundo@rano.org
3582    - markus@cvs.openbsd.org  2001/01/31 13:48:09
3583      [sshconnect2.c]
3584      unused
3585    - deraadt@cvs.openbsd.org 2001/02/04 08:23:08
3586      [sftp-client.c sftp-server.c]
3587      make gcc on the alpha even happier
3588
3589 20010204
3590  - (bal) I think this is the last of the bsd-*.h that don't belong.
3591  - (bal) Minor Makefile fix
3592  - (bal) openbsd-compat/Makefile minor fix.  Ensure dependancies are done
3593    right.
3594  - (bal) Changed order of LIB="" in -with-skey due to library resolving.
3595  - (bal) next-posix.h changed to bsd-nextstep.h
3596  - (djm) OpenBSD CVS sync:
3597    - markus@cvs.openbsd.org  2001/02/03 03:08:38
3598      [auth-options.c auth-rh-rsa.c auth-rhosts.c auth.c canohost.c]
3599      [canohost.h servconf.c servconf.h session.c sshconnect1.c sshd.8]
3600      [sshd_config]
3601      make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@
3602    - markus@cvs.openbsd.org  2001/02/03 03:19:51
3603      [ssh.1 sshd.8 sshd_config]
3604      Skey is now called ChallengeResponse
3605    - markus@cvs.openbsd.org  2001/02/03 03:43:09
3606      [sshd.8]
3607      use no-pty option in .ssh/authorized_keys* if you need a 8-bit clean
3608      channel. note from Erik.Anggard@cygate.se (pr/1659)
3609    - stevesk@cvs.openbsd.org 2001/02/03 10:03:06
3610      [ssh.1]
3611      typos; ok markus@
3612    - djm@cvs.openbsd.org     2001/02/04 04:11:56
3613      [scp.1 sftp-server.c ssh.1 sshd.8 sftp-client.c sftp-client.h]
3614      [sftp-common.c sftp-common.h sftp-int.c sftp-int.h sftp.1 sftp.c]
3615      Basic interactive sftp client; ok theo@
3616  - (djm) Update RPM specs for new sftp binary
3617  - (djm) Update several bits for new optional reverse lookup stuff. I
3618    think I got them all.
3619  - (djm) Makefile.in fixes
3620  - (stevesk) add mysignal() wrapper and use it for the protocol 2
3621    SIGCHLD handler.
3622  - (djm) Use setvbuf() instead of setlinebuf(). Suggest from stevesk@
3623
3624 20010203
3625  - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com>
3626  - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD
3627    based file) to ensure #include space does not get confused.
3628  - (bal) Minor Makefile.in tweak.  dirname may not exist on some
3629    platforms so builds fail.  (NeXT being a well known one)
3630
3631 20010202
3632  - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
3633    <vinschen@redhat.com>
3634  - (bal) Makefile fix to use $(MAKE) instead of 'make'  for platforms
3635    that use 'gmake'.   Patch by Tim Rice <tim@multitalents.net>
3636
3637 20010201
3638  - (bal) Minor fix to Makefile to stop rebuilding executables if no
3639    changes have occured to any of the supporting code.  Patch by
3640    Roumen Petrov <roumen.petrov@skalasoft.com>
3641
3642 20010131
3643  - (djm) OpenBSD CVS Sync:
3644    - djm@cvs.openbsd.org     2001/01/30 15:48:53
3645      [sshconnect.c]
3646      Make warning message a little more consistent. ok markus@
3647  - (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
3648    Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
3649    respectively.
3650  - (djm) Don't log SSH2 PAM KbdInt responses to debug, they may contain
3651    passwords.
3652  - (bal) Reorder.  Move all bsd-*, fake-*, next-*, and cygwin* stuff to
3653    openbsd-compat/.  And resolve all ./configure and Makefile.in issues
3654    assocated.
3655
3656 20010130
3657  - (djm) OpenBSD CVS Sync:
3658    - markus@cvs.openbsd.org  2001/01/29 09:55:37
3659      [channels.c channels.h clientloop.c serverloop.c]
3660      fix select overflow; ok deraadt@ and stevesk@
3661    - markus@cvs.openbsd.org  2001/01/29 12:42:35
3662      [canohost.c canohost.h channels.c clientloop.c]
3663      add get_peer_ipaddr(socket), x11-fwd in ssh2 requires ipaddr, not DNS
3664    - markus@cvs.openbsd.org  2001/01/29 12:47:32
3665      [rsa.c rsa.h ssh-agent.c sshconnect1.c sshd.c]
3666      handle rsa_private_decrypt failures; helps against the Bleichenbacher
3667      pkcs#1 attack
3668    - djm@cvs.openbsd.org     2001/01/29 05:36:11
3669      [ssh.1 ssh.c]
3670      Allow invocation of sybsystem by commandline (-s); ok markus@
3671  - (stevesk) configure.in: remove duplicate PROG_LS
3672
3673 20010129
3674  - (stevesk) sftp-server.c: use %lld vs. %qd
3675
3676 20010128
3677  - (bal) Put USE_PIPES back into sco3.2v5
3678  - (bal) OpenBSD Sync
3679    - markus@cvs.openbsd.org 2001/01/28 10:15:34
3680      [dispatch.c]
3681      re-keying is not supported; ok deraadt@
3682    - markus@cvs.openbsd.org 2001/01/28 10:24:04
3683      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
3684      cleanup AUTHORS sections
3685    - markus@cvs.openbsd.org 2001/01/28 10:37:26
3686      [sshd.c sshd.8]
3687      remove -Q, no longer needed
3688    - stevesk@cvs.openbsd.org 2001/01/28 20:36:16
3689      [readconf.c ssh.1]
3690      ``StrictHostKeyChecking ask'' documentation and small cleanup.
3691      ok markus@
3692    - stevesk@cvs.openbsd.org 2001/01/28 20:43:25
3693      [sshd.8]
3694      spelling.  ok markus@
3695    - stevesk@cvs.openbsd.org 2001/01/28 20:53:21
3696      [xmalloc.c]
3697      use size_t for strlen() return.  ok markus@
3698    - stevesk@cvs.openbsd.org 2001/01/28 22:27:05
3699      [authfile.c]
3700      spelling.  use sizeof vs. strlen().  ok markus@
3701    - niklas@cvs.openbsd.org 2001/01/29 1:59:14
3702      [atomicio.h canohost.h clientloop.h deattack.h dh.h dispatch.h
3703       groupaccess.c groupaccess.h hmac.h hostfile.h includes.h kex.h
3704       key.h log.h login.h match.h misc.h myproposal.h nchan.ms pathnames.h
3705       radix.h readpass.h rijndael.h serverloop.h session.h sftp.h ssh-add.1
3706       ssh-dss.h ssh-keygen.1 ssh-keyscan.1 ssh-rsa.h ssh1.h ssh_config
3707       sshconnect.h sshd_config tildexpand.h uidswap.h uuencode.h]
3708      $OpenBSD$
3709   - (bal) Minor auth2.c resync.  Whitespace and moving of an #include.
3710
3711 20010126
3712  - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
3713    Petrov <roumen.petrov@skalasoft.com>
3714  - (bal) OpenBSD Sync
3715    - deraadt@cvs.openbsd.org 2001/01/25 8:06:33
3716      [ssh-agent.c]
3717      call _exit() in signal handler
3718
3719 20010125
3720  - (djm) Sync bsd-* support files:
3721    - deraadt@cvs.openbsd.org 2000/01/26 03:43:20
3722      [rresvport.c bindresvport.c]
3723      new bindresvport() semantics that itojun, shin, jean-luc and i have
3724      agreed on, which will be happy for the future. bindresvport_sa() for
3725      sockaddr *, too.  docs later..
3726    - deraadt@cvs.openbsd.org 2000/01/24 02:24:21
3727      [bindresvport.c]
3728      in bindresvport(), if sin is non-NULL, example sin->sin_family for
3729      the actual family being processed
3730  - (djm) Mention PRNGd in documentation, it is nicer than EGD
3731  - (djm) Automatically search for "well-known" EGD/PRNGd sockets in autoconf
3732  - (bal) AC_FUNC_STRFTIME added to autoconf
3733  - (bal) OpenBSD Resync
3734    - stevesk@cvs.openbsd.org 2001/01/24 21:03:50
3735      [channels.c]
3736      missing freeaddrinfo(); ok markus@
3737
3738 20010124
3739  - (bal) OpenBSD Resync
3740    - markus@cvs.openbsd.org 2001/01/23 10:45:10
3741      [ssh.h]
3742      nuke comment
3743  - (bal) no 64bit support patch from Tim Rice <tim@multitalents.net>
3744  - (bal) #ifdef around S_IFSOCK if platform does not support it.
3745    patch by Tim Rice <tim@multitalents.net>
3746  - (bal) fake-regex.h cleanup based on Tim Rice's patch.
3747  - (stevesk) sftp-server.c: fix chmod() mode mask
3748
3749 20010123
3750  - (bal) regexp.h typo in configure.in.  Should have been regex.h
3751  - (bal) SSH_USER_DIR to _PATH_SSH_USER_DIR patch by stevesk@
3752  - (bal) SSH_ASKPASS_DEFAULT to _PATH_SSH_ASKPASS_DEFAULT
3753  - (bal) OpenBSD Resync
3754    - markus@cvs.openbsd.org 2001/01/22 8:15:00
3755      [auth-krb4.c sshconnect1.c]
3756      only AFS needs radix.[ch]
3757    - markus@cvs.openbsd.org 2001/01/22 8:32:53
3758      [auth2.c]
3759      no need to include; from mouring@etoh.eviladmin.org
3760    - stevesk@cvs.openbsd.org 2001/01/22 16:55:21
3761      [key.c]
3762      free() -> xfree(); ok markus@
3763    - stevesk@cvs.openbsd.org 2001/01/22 17:22:28
3764      [sshconnect2.c sshd.c]
3765      fix memory leaks in SSH2 key exchange; ok markus@
3766    - markus@cvs.openbsd.org 2001/01/22 23:06:39
3767      [auth1.c auth2.c readconf.c readconf.h servconf.c servconf.h
3768       sshconnect1.c sshconnect2.c sshd.c]
3769      rename skey -> challenge response.
3770      auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled.
3771
3772
3773 20010122
3774  - (bal) OpenBSD Resync
3775    - markus@cvs.openbsd.org 2001/01/19 12:45:26 GMT 2001 by markus
3776      [servconf.c ssh.h sshd.c]
3777      only auth-chall.c needs #ifdef SKEY
3778    - markus@cvs.openbsd.org 2001/01/19 15:55:10 GMT 2001 by markus
3779      [auth-krb4.c auth-options.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
3780       auth1.c auth2.c channels.c clientloop.c dh.c dispatch.c nchan.c
3781       packet.c pathname.h readconf.c scp.c servconf.c serverloop.c
3782       session.c ssh-add.c ssh-keygen.c ssh-keyscan.c ssh.c ssh.h
3783       ssh1.h sshconnect1.c sshd.c ttymodes.c]
3784      move ssh1 definitions to ssh1.h, pathnames to pathnames.h
3785    - markus@cvs.openbsd.org 2001/01/19 16:48:14
3786      [sshd.8]
3787      fix typo; from stevesk@
3788    - markus@cvs.openbsd.org 2001/01/19 16:50:58
3789      [ssh-dss.c]
3790      clear and free digest, make consistent with other code (use dlen); from
3791      stevesk@
3792    - markus@cvs.openbsd.org 2001/01/20 15:55:20 GMT 2001 by markus
3793      [auth-options.c auth-options.h auth-rsa.c auth2.c]
3794      pass the filename to auth_parse_options()
3795    - markus@cvs.openbsd.org 2001/01/20 17:59:40 GMT 2001
3796      [readconf.c]
3797      fix SIGSEGV from -o ""; problem noted by jehsom@togetherweb.com
3798    - stevesk@cvs.openbsd.org 2001/01/20 18:20:29
3799      [sshconnect2.c]
3800      dh_new_group() does not return NULL.  ok markus@
3801    - markus@cvs.openbsd.org 2001/01/20 21:33:42
3802      [ssh-add.c]
3803      do not loop forever if askpass does not exist; from
3804      andrew@pimlott.ne.mediaone.net
3805    - djm@cvs.openbsd.org 2001/01/20 23:00:56
3806      [servconf.c]
3807      Check for NULL return from strdelim; ok markus
3808    - djm@cvs.openbsd.org 2001/01/20 23:02:07
3809      [readconf.c]
3810      KNF; ok markus
3811    - jakob@cvs.openbsd.org 2001/01/21 9:00:33
3812      [ssh-keygen.1]
3813      remove -R flag; ok markus@
3814    - markus@cvs.openbsd.org 2001/01/21 19:05:40
3815      [atomicio.c automicio.h auth-chall.c auth-krb4.c auth-options.c
3816       auth-options.h auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
3817       auth.c auth.h auth1.c auth2-chall.c auth2.c authfd.c authfile.c
3818       bufaux.c  bufaux.h buffer.c canahost.c canahost.h channels.c
3819       cipher.c cli.c clientloop.c clientloop.h compat.c compress.c
3820       deattack.c dh.c dispatch.c groupaccess.c hmac.c hostfile.c kex.c
3821       key.c key.h log-client.c log-server.c log.c log.h login.c login.h
3822       match.c misc.c misc.h nchan.c packet.c pty.c radix.h readconf.c
3823       readpass.c readpass.h rsa.c scp.c servconf.c serverloop.c serverloop.h
3824       session.c sftp-server.c ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c
3825       ssh-keyscan.c ssh-rsa.c ssh.c ssh.h sshconnect.c sshconnect.h
3826       sshconnect1.c sshconnect2.c sshd.c tildexpand.c tildexpand.h
3827       ttysmodes.c uidswap.c xmalloc.c]
3828      split ssh.h and try to cleanup the #include mess. remove unnecessary
3829      #includes.  rename util.[ch] -> misc.[ch]
3830  - (bal) renamed 'PIDDIR' to '_PATH_SSH_PIDDIR' to match OpenBSD tree
3831  - (bal) Moved #ifdef KRB4 in auth-krb4.c above the #include to resolve
3832    conflict when compiling for non-kerb install
3833  - (bal) removed the #ifdef SKEY in auth1.c to match Markus' changes
3834    on 1/19.
3835
3836 20010120
3837  - (bal) OpenBSD Resync
3838    - markus@cvs.openbsd.org 2001/01/19 12:45:26
3839      [ssh-chall.c servconf.c servconf.h ssh.h sshd.c]
3840      only auth-chall.c needs #ifdef SKEY
3841  - (bal) Slight auth2-pam.c clean up.
3842  - (bal) Includes a fake-regexp.h to be only used if regcomp() is found,
3843    but no 'regexp.h' found (SCO OpenServer 3 lacks the header).
3844
3845 20010119
3846  - (djm) Update versions in RPM specfiles
3847  - (bal) OpenBSD Resync
3848    - markus@cvs.openbsd.org 2001/01/18 16:20:21
3849      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h
3850       sshd.8 sshd.c]
3851      log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many
3852      systems
3853    - markus@cvs.openbsd.org 2001/01/18 16:59:59
3854      [auth-passwd.c auth.c auth.h auth1.c auth2.c serverloop.c session.c
3855       session.h sshconnect1.c]
3856      1) removes fake skey from sshd, since this will be much
3857         harder with /usr/libexec/auth/login_XXX
3858      2) share/unify code used in ssh-1 and ssh-2 authentication (server side)
3859      3) make addition of BSD_AUTH and other challenge reponse methods
3860         easier.
3861    - markus@cvs.openbsd.org 2001/01/18 17:12:43
3862      [auth-chall.c auth2-chall.c]
3863      rename *-skey.c *-chall.c since the files are not skey specific
3864  - (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
3865    to fix NULL pointer deref and fake authloop breakage in PAM code.
3866  - (bal) Updated contrib/cygwin/ by Corinna Vinschen <vinschen@redhat.com>
3867  - (bal) Minor cygwin patch to auth1.c.  Suggested by djm.
3868
3869 20010118
3870  - (bal) Super Sized OpenBSD Resync
3871    - markus@cvs.openbsd.org 2001/01/11 22:14:20 GMT 2001 by markus
3872      [sshd.c]
3873      maxfd+1
3874    - markus@cvs.openbsd.org 2001/01/13 17:59:18
3875      [ssh-keygen.1]
3876      small ssh-keygen manpage cleanup; stevesk@pobox.com
3877    - markus@cvs.openbsd.org 2001/01/13 18:03:07
3878      [scp.c ssh-keygen.c sshd.c]
3879      getopt() returns -1 not EOF; stevesk@pobox.com
3880    - markus@cvs.openbsd.org 2001/01/13 18:06:54
3881      [ssh-keyscan.c]
3882      use SSH_DEFAULT_PORT; from stevesk@pobox.com
3883    - markus@cvs.openbsd.org 2001/01/13 18:12:47
3884      [ssh-keyscan.c]
3885      free() -> xfree(); fix memory leak; from stevesk@pobox.com
3886    - markus@cvs.openbsd.org 2001/01/13 18:14:13
3887      [ssh-add.c]
3888      typo, from stevesk@sweden.hp.com
3889    - markus@cvs.openbsd.org 2001/01/13 18:32:50
3890      [packet.c session.c ssh.c sshconnect.c sshd.c]
3891      split out keepalive from packet_interactive (from dale@accentre.com)
3892      set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too.
3893    - markus@cvs.openbsd.org 2001/01/13 18:36:45
3894      [packet.c packet.h]
3895      reorder, typo
3896    - markus@cvs.openbsd.org 2001/01/13 18:38:00
3897      [auth-options.c]
3898      fix comment
3899    - markus@cvs.openbsd.org 2001/01/13 18:43:31
3900      [session.c]
3901      Wall
3902    - markus@cvs.openbsd.org 2001/01/13 19:14:08
3903      [clientloop.h clientloop.c ssh.c]
3904      move callback to headerfile
3905    - markus@cvs.openbsd.org 2001/01/15 21:40:10
3906      [ssh.c]
3907      use log() instead of stderr
3908    - markus@cvs.openbsd.org 2001/01/15 21:43:51
3909      [dh.c]
3910      use error() not stderr!
3911    - markus@cvs.openbsd.org 2001/01/15 21:45:29
3912      [sftp-server.c]
3913      rename must fail if newpath exists, debug off by default
3914    - markus@cvs.openbsd.org 2001/01/15 21:46:38
3915      [sftp-server.c]
3916      readable long listing for sftp-server, ok deraadt@
3917    - markus@cvs.openbsd.org 2001/01/16 19:20:06
3918      [key.c ssh-rsa.c]
3919      make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from
3920      galb@vandyke.com.  note that you have to delete older ssh2-rsa keys,
3921      since they are in the wrong format, too. they must be removed from
3922      .ssh/authorized_keys2 and .ssh/known_hosts2, etc.
3923      (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP
3924      .ssh/authorized_keys2) additionally, we now check that
3925      BN_num_bits(rsa->n) >= 768.
3926    - markus@cvs.openbsd.org 2001/01/16 20:54:27
3927      [sftp-server.c]
3928      remove some statics. simpler handles; idea from nisse@lysator.liu.se
3929    - deraadt@cvs.openbsd.org 2001/01/16 23:58:08
3930      [bufaux.c radix.c sshconnect.h sshconnect1.c]
3931      indent
3932  - (bal) Added bsd-strmode.[ch] since some non-OpenBSD platforms may
3933    be missing such feature.
3934
3935
3936 20010117
3937  - (djm) Only write random seed file at exit
3938  - (djm) Make PAM support optional, enable with --with-pam
3939  - (djm) Try to use libcrypt on Linux, but link it after OpenSSL (which
3940    provides a crypt() of its own)
3941  - (djm) Avoid a warning in bsd-bindresvport.c
3942  - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This
3943    can cause weird segfaults errors on Solaris
3944  - (djm) Avoid warning in PAM code by making read_passphrase arguments const
3945  - (djm) Add --with-pam to RPM spec files
3946
3947 20010115
3948  - (bal) sftp-server.c change to use chmod() if fchmod() does not exist.
3949  - (bal) utimes() support via utime() interface on machine that lack utimes().
3950
3951 20010114
3952  - (stevesk) initial work for OpenBSD "support supplementary group in
3953    {Allow,Deny}Groups" patch:
3954    - import getgrouplist.c from OpenBSD (bsd-getgrouplist.c)
3955    - add bsd-getgrouplist.h
3956    - new files groupaccess.[ch]
3957    - build but don't use yet (need to merge auth.c changes)
3958  - (stevesk) complete:
3959    - markus@cvs.openbsd.org  2001/01/13 11:56:48
3960      [auth.c sshd.8]
3961      support supplementary group in {Allow,Deny}Groups
3962      from stevesk@pobox.com
3963
3964 20010112
3965  - (bal) OpenBSD Sync
3966    - markus@cvs.openbsd.org 2001/01/10 22:56:22
3967      [bufaux.h bufaux.c sftp-server.c sftp.h getput.h]
3968      cleanup sftp-server implementation:
3969      add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT
3970      parse SSH2_FILEXFER_ATTR_EXTENDED
3971      send SSH2_FX_EOF if readdir returns no more entries
3972      reply to SSH2_FXP_EXTENDED message
3973      use #defines from the draft
3974      move #definations to sftp.h
3975      more info:
3976      http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt
3977    - markus@cvs.openbsd.org 2001/01/10 19:43:20
3978      [sshd.c]
3979      XXX - generate_empheral_server_key() is not safe against races,
3980      because it calls log()
3981    - markus@cvs.openbsd.org 2001/01/09 21:19:50
3982      [packet.c]
3983      allow TCP_NDELAY for ipv6; from netbsd via itojun@
3984
3985 20010110
3986  - (djm) SNI/Reliant Unix needs USE_PIPES and $DISPLAY hack. Report from
3987    Bladt Norbert <Norbert.Bladt@adi.ch>
3988
3989 20010109
3990  - (bal) Resync CVS ID of cli.c
3991  - (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
3992    code.
3993  - (bal) OpenBSD Sync
3994    - markus@cvs.openbsd.org 2001/01/08 22:29:05
3995      [auth2.c compat.c compat.h servconf.c servconf.h sshd.8
3996       sshd_config version.h]
3997      implement option 'Banner /etc/issue.net' for ssh2, move version to
3998      2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner
3999      is enabled).
4000    - markus@cvs.openbsd.org 2001/01/08 22:03:23
4001      [channels.c ssh-keyscan.c]
4002      O_NDELAY -> O_NONBLOCK; thanks stevesk@pobox.com
4003    - markus@cvs.openbsd.org 2001/01/08 21:55:41
4004      [sshconnect1.c]
4005      more cleanups and fixes from stevesk@pobox.com:
4006      1) try_agent_authentication() for loop will overwrite key just
4007         allocated with key_new(); don't alloc
4008      2) call ssh_close_authentication_connection() before exit
4009         try_agent_authentication()
4010      3) free mem on bad passphrase in try_rsa_authentication()
4011    - markus@cvs.openbsd.org 2001/01/08 21:48:17
4012      [kex.c]
4013      missing free; thanks stevesk@pobox.com
4014   - (bal) Detect if clock_t structure exists, if not define it.
4015   - (bal) Detect if O_NONBLOCK exists, if not define it.
4016   - (bal) removed news4-posix.h (now empty)
4017   - (bal) changed bsd-bindresvport.c and bsd-rresvport.c to use 'socklen_t'
4018     instead of 'int'
4019  - (stevesk) sshd_config: sync
4020  - (stevesk) defines.h: remove spurious ``;''
4021
4022 20010108
4023  - (bal) Fixed another typo in cli.c
4024  - (bal) OpenBSD Sync
4025    - markus@cvs.openbsd.org 2001/01/07 21:26:55
4026      [cli.c]
4027      typo
4028    - markus@cvs.openbsd.org 2001/01/07 21:26:55
4029      [cli.c]
4030      missing free, stevesk@pobox.com
4031    - markus@cvs.openbsd.org 2001/01/07 19:06:25
4032      [auth1.c]
4033      missing free, stevesk@pobox.com
4034    - markus@cvs.openbsd.org 2001/01/07 11:28:04
4035      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1
4036       ssh.h sshd.8 sshd.c]
4037      rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
4038      syslog priority changes:
4039              fatal() LOG_ERR  -> LOG_CRIT
4040              log()   LOG_INFO -> LOG_NOTICE
4041  - Updated TODO
4042
4043 20010107
4044  - (bal) OpenBSD Sync
4045    - markus@cvs.openbsd.org 2001/01/06 11:23:27
4046      [ssh-rsa.c]
4047      remove unused
4048    - itojun@cvs.openbsd.org 2001/01/05 08:23:29
4049      [ssh-keyscan.1]
4050      missing .El
4051    - markus@cvs.openbsd.org 2001/01/04 22:41:03
4052      [session.c sshconnect.c]
4053      consistent use of _PATH_BSHELL; from stevesk@pobox.com
4054    - djm@cvs.openbsd.org 2001/01/04 22:35:32
4055      [ssh.1 sshd.8]
4056      Mention AES as available SSH2 Cipher; ok markus
4057    - markus@cvs.openbsd.org 2001/01/04 22:25:58
4058      [sshd.c]
4059      sync usage()/man with defaults; from stevesk@pobox.com
4060    - markus@cvs.openbsd.org 2001/01/04 22:21:26
4061      [sshconnect2.c]
4062      handle SSH2_MSG_USERAUTH_BANNER; fixes bug when connecting to a server
4063      that prints a banner (e.g. /etc/issue.net)
4064
4065 20010105
4066  - (bal) contrib/caldera/ provided by Tim Rice <tim@multitalents.net>
4067  - (bal) bsd-getcwd.c and bsd-setenv.c changed from bcopy() to memmove()
4068
4069 20010104
4070  - (djm) Fix memory leak on systems with BROKEN_GETADDRINFO. Based on
4071    work by Chris Vaughan <vaughan99@yahoo.com>
4072
4073 20010103
4074  - (bal) fixed up sshconnect.c so it was closer inline with the OpenBSD
4075    tree (mainly positioning)
4076  - (bal) OpenSSH CVS Update
4077    - markus@cvs.openbsd.org 2001/01/02 20:41:02
4078      [packet.c]
4079      log remote ip on disconnect; PR 1600 from jcs@rt.fm
4080    - markus@cvs.openbsd.org 2001/01/02 20:50:56
4081      [sshconnect.c]
4082      strict_host_key_checking for host_status != HOST_CHANGED &&
4083      ip_status == HOST_CHANGED
4084  - (bal) authfile.c: Synced CVS ID tag
4085  - (bal) UnixWare 2.0 fixes by Tim Rice <tim@multitalents.net>
4086  - (bal) Disable sftp-server if no 64bit int support exists.  Based on
4087    patch by Tim Rice <tim@multitalents.net>
4088  - (bal) Makefile.in changes to uninstall: target to remove sftp-server
4089    and sftp-server.8 manpage.
4090
4091 20010102
4092  - (bal) OpenBSD CVS Update
4093    - markus@cvs.openbsd.org 2001/01/01 14:52:49
4094      [scp.c]
4095      use shared fatal(); from stevesk@pobox.com
4096
4097 20001231
4098  - (bal) Reverted out of MAXHOSTNAMELEN.  This should be set per OS.
4099    for multiple reasons.
4100  - (bal) Reverted out of a partial NeXT patch.
4101
4102 20001230
4103  - (bal) OpenBSD CVS Update
4104    - markus@cvs.openbsd.org 2000/12/28 18:58:30
4105      [ssh-keygen.c]
4106      enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
4107    - markus@cvs.openbsd.org 2000/12/29 22:19:13
4108      [channels.c]
4109      missing xfree; from vaughan99@yahoo.com
4110  - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
4111  - (bal) if no MAXHOSTNAMELEN is defined.  Default to 64 character defination.
4112    Suggested by Christian Kurz <shorty@debian.org>
4113  - (bal) Add in '.c.o' section to Makefile.in to address make programs that
4114     don't honor CPPFLAGS by default.  Suggested by Lutz Jaenicke
4115     <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4116
4117 20001229
4118  - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
4119    Kurz <shorty@debian.org>
4120  - (bal) OpenBSD CVS Update
4121    - markus@cvs.openbsd.org 2000/12/28 14:25:51
4122      [auth.h auth2.c]
4123      count authentication failures only
4124    - markus@cvs.openbsd.org 2000/12/28 14:25:03
4125      [sshconnect.c]
4126      fingerprint for MITM attacks, too.
4127    - markus@cvs.openbsd.org 2000/12/28 12:03:57
4128      [sshd.8 sshd.c]
4129      document -D
4130    - markus@cvs.openbsd.org 2000/12/27 14:19:21
4131      [serverloop.c]
4132      less chatty
4133    - markus@cvs.openbsd.org 2000/12/27 12:34
4134      [auth1.c sshconnect2.c sshd.c]
4135      typo
4136    - markus@cvs.openbsd.org 2000/12/27 12:30:19
4137      [readconf.c readconf.h ssh.1 sshconnect.c]
4138      new option: HostKeyAlias: allow the user to record the host key
4139      under a different name. This is useful for ssh tunneling over
4140      forwarded connections or if you run multiple sshd's on different
4141      ports on the same machine.
4142    - markus@cvs.openbsd.org 2000/12/27 11:51:53
4143      [ssh.1 ssh.c]
4144      multiple -t force pty allocation, document ORIGINAL_COMMAND
4145    - markus@cvs.openbsd.org 2000/12/27 11:41:31
4146      [sshd.8]
4147      update for ssh-2
4148  - (stevesk) compress.[ch] sync with openbsd; missed in prototype
4149    fix merge.
4150
4151 20001228
4152  - (bal) Patch to add libutil.h to loginrec.c only if the platform has
4153    libutil.h.  Suggested by Pekka Savola <pekka@netcore.fi>
4154  - (djm) Update to new x11-askpass in RPM spec
4155  - (bal) SCO patch to not include <sys/queue.h> since it's unrelated
4156    header.  Patch by Tim Rice <tim@multitalents.net>
4157  - Updated TODO w/ known HP/UX issue
4158  - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the
4159    bad reference to 'NeXT including it else were' on the #ifdef version.
4160
4161 20001227
4162  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
4163    Takumi Yamane <yamtak@b-session.com>
4164  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
4165    by Corinna Vinschen <vinschen@redhat.com>
4166  - (djm) Fix catman-do target for non-bash
4167  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
4168    Takumi Yamane <yamtak@b-session.com>
4169  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
4170    by Corinna Vinschen <vinschen@redhat.com>
4171  - (djm) Fix catman-do target for non-bash
4172  - (bal) Fixed NeXT's lack of CPPFLAGS honoring.
4173  - (bal) ssh-keyscan.c: NeXT (and older BSDs) don't support getrlimit() w/
4174    'RLIMIT_NOFILE'
4175  - (djm) Remove *.Ylonen files. They are no longer in the OpenBSD tree,
4176    the info in COPYING.Ylonen has been moved to the start of each
4177    SSH1-derived file and README.Ylonen is well out of date.
4178
4179 20001223
4180  - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
4181    if a change to config.h has occurred.  Suggested by Gert Doering
4182    <gert@greenie.muc.de>
4183  - (bal) OpenBSD CVS Update:
4184    - markus@cvs.openbsd.org 2000/12/22 16:49:40
4185      [ssh-keygen.c]
4186      fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.com
4187
4188 20001222
4189  - Updated RCSID for pty.c
4190  - (bal) OpenBSD CVS Updates:
4191   - markus@cvs.openbsd.org 2000/12/21 15:10:16
4192     [auth-rh-rsa.c hostfile.c hostfile.h sshconnect.c]
4193     print keyfile:line for changed hostkeys, for deraadt@, ok deraadt@
4194   - markus@cvs.openbsd.org 2000/12/20 19:26:56
4195     [authfile.c]
4196     allow ssh -i userkey for root
4197   - markus@cvs.openbsd.org 2000/12/20 19:37:21
4198     [authfd.c authfd.h kex.c sshconnect2.c sshd.c uidswap.c uidswap.h]
4199     fix prototypes; from stevesk@pobox.com
4200   - markus@cvs.openbsd.org 2000/12/20 19:32:08
4201     [sshd.c]
4202     init pointer to NULL; report from Jan.Ivan@cern.ch
4203   - markus@cvs.openbsd.org 2000/12/19 23:17:54
4204     [auth-krb4.c auth-options.c auth-options.h auth-rhosts.c auth-rsa.c
4205      auth1.c auth2-skey.c auth2.c authfd.c authfd.h authfile.c bufaux.c
4206      bufaux.h buffer.c canohost.c channels.c clientloop.c compress.c
4207      crc32.c deattack.c getput.h hmac.c hmac.h hostfile.c kex.c kex.h
4208      key.c key.h log.c login.c match.c match.h mpaux.c mpaux.h packet.c
4209      packet.h radix.c readconf.c rsa.c scp.c servconf.c servconf.h
4210      serverloop.c session.c sftp-server.c ssh-agent.c ssh-dss.c ssh-dss.h
4211      ssh-keygen.c ssh-keyscan.c ssh-rsa.c ssh-rsa.h ssh.c ssh.h  uuencode.c
4212      uuencode.h sshconnect1.c sshconnect2.c sshd.c tildexpand.c]
4213     replace 'unsigned bla' with 'u_bla' everywhere. also replace 'char
4214     unsigned' with u_char.
4215
4216 20001221
4217  - (stevesk) OpenBSD CVS updates:
4218    - markus@cvs.openbsd.org 2000/12/19 15:43:45
4219      [authfile.c channels.c sftp-server.c ssh-agent.c]
4220      remove() -> unlink() for consistency
4221    - markus@cvs.openbsd.org 2000/12/19 15:48:09
4222      [ssh-keyscan.c]
4223      replace <ssl/x.h> with <openssl/x.h>
4224    - markus@cvs.openbsd.org 2000/12/17 02:33:40
4225      [uidswap.c]
4226      typo; from wsanchez@apple.com
4227
4228 20001220
4229  - (djm) Workaround PAM inconsistencies between Solaris derived PAM code
4230    and Linux-PAM. Based on report and fix from Andrew Morgan
4231    <morgan@transmeta.com>
4232
4233 20001218
4234  - (stevesk) rsa.c: entropy.h not needed.
4235  - (bal) split CFLAGS into CFLAGS and CPPFLAGS in configure.in and Makefile.
4236    Suggested by Wilfredo Sanchez <wsanchez@apple.com>
4237
4238 20001216
4239  - (stevesk) OpenBSD CVS updates:
4240    - markus@cvs.openbsd.org 2000/12/16 02:53:57
4241      [scp.c]
4242      allow + in usernames; request from Florian.Weimer@RUS.Uni-Stuttgart.DE
4243    - markus@cvs.openbsd.org 2000/12/16 02:39:57
4244      [scp.c]
4245      unused; from stevesk@pobox.com
4246
4247 20001215
4248  - (stevesk) Old OpenBSD patch wasn't completely applied:
4249    - markus@cvs.openbsd.org 2000/01/24 22:11:20
4250      [scp.c]
4251      allow '.' in usernames; from jedgar@fxp.org
4252  - (stevesk) OpenBSD CVS updates:
4253    - markus@cvs.openbsd.org 2000/12/13 16:26:53
4254      [ssh-keyscan.c]
4255      fatal already adds \n; from stevesk@pobox.com
4256    - markus@cvs.openbsd.org 2000/12/13 16:25:44
4257      [ssh-agent.c]
4258      remove redundant spaces; from stevesk@pobox.com
4259    - ho@cvs.openbsd.org 2000/12/12 15:50:21
4260      [pty.c]
4261      When failing to set tty owner and mode on a read-only filesystem, don't
4262      abort if the tty already has correct owner and reasonably sane modes.
4263      Example; permit 'root' to login to a firewall with read-only root fs.
4264      (markus@ ok)
4265    - deraadt@cvs.openbsd.org 2000/12/13 06:36:05
4266      [pty.c]
4267      KNF
4268    - markus@cvs.openbsd.org 2000/12/12 14:45:21
4269      [sshd.c]
4270      source port < 1024 is no longer required for rhosts-rsa since it
4271      adds no additional security.
4272    - markus@cvs.openbsd.org 2000/12/12 16:11:49
4273      [ssh.1 ssh.c]
4274      rhosts-rsa is no longer automagically disabled if ssh is not privileged.
4275      UsePrivilegedPort=no disables rhosts-rsa _only_ for old servers.
4276      these changes should not change the visible default behaviour of the ssh client.
4277    - deraadt@cvs.openbsd.org 2000/12/11 10:27:33
4278      [scp.c]
4279      when copying 0-sized files, do not re-print ETA time at completion
4280    - provos@cvs.openbsd.org 2000/12/15 10:30:15
4281      [kex.c kex.h sshconnect2.c sshd.c]
4282      compute diffie-hellman in parallel between server and client. okay markus@
4283
4284 20001213
4285  - (djm) Make sure we reset the SIGPIPE disposition after we fork. Report
4286    from Andreas M. Kirchwitz <amk@krell.zikzak.de>
4287  - (stevesk) OpenBSD CVS update:
4288    - markus@cvs.openbsd.org 2000/12/12 15:30:02
4289      [ssh-keyscan.c ssh.c sshd.c]
4290      consistently use __progname; from stevesk@pobox.com
4291
4292 20001211
4293  - (bal) Applied patch to include ssh-keyscan into Redhat's package, and
4294    patch to install ssh-keyscan manpage.  Patch by Pekka Savola
4295    <pekka@netcore.fi>
4296  - (bal) OpenbSD CVS update
4297    - markus@cvs.openbsd.org 2000/12/10 17:01:53
4298      [sshconnect1.c]
4299      always request new challenge for skey/tis-auth, fixes interop with
4300      other implementations; report from roth@feep.net
4301
4302 20001210
4303  - (bal) OpenBSD CVS updates
4304    - markus@cvs.openbsd.org 2000/12/09 13:41:51
4305      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
4306      undo rijndael changes
4307    - markus@cvs.openbsd.org 2000/12/09 13:48:31
4308      [rijndael.c]
4309      fix byte order bug w/o introducing new implementation
4310    - markus@cvs.openbsd.org 2000/12/09 14:08:27
4311      [sftp-server.c]
4312      "" -> "." for realpath; from vinschen@redhat.com
4313    - markus@cvs.openbsd.org 2000/12/09 14:06:54
4314      [ssh-agent.c]
4315      extern int optind; from stevesk@sweden.hp.com
4316    - provos@cvs.openbsd.org 2000/12/09 23:51:11
4317      [compat.c]
4318      remove unnecessary '\n'
4319
4320 20001209
4321  - (bal) OpenBSD CVS updates:
4322    - djm@cvs.openbsd.org 2000/12/07 4:24:59
4323      [ssh.1]
4324      Typo fix from Wilfredo Sanchez <wsanchez@apple.com>; ok theo
4325
4326 20001207
4327  - (bal) OpenBSD CVS updates:
4328    - markus@cvs.openbsd.org 2000/12/06 22:58:14
4329      [compat.c compat.h packet.c]
4330      disable debug messages for ssh.com/f-secure 2.0.1x, 2.1.0
4331    - markus@cvs.openbsd.org 2000/12/06 23:10:39
4332      [rijndael.c]
4333      unexpand(1)
4334    - markus@cvs.openbsd.org 2000/12/06 23:05:43
4335      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
4336      new rijndael implementation. fixes endian bugs
4337
4338 20001206
4339  - (bal) OpenBSD CVS updates:
4340    - markus@cvs.openbsd.org 2000/12/05 20:34:09
4341      [channels.c channels.h clientloop.c serverloop.c]
4342      async connects for -R/-L; ok deraadt@
4343    - todd@cvs.openssh.org 2000/12/05 16:47:28
4344      [sshd.c]
4345      tweak comment to reflect real location of pid file; ok provos@
4346  - (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
4347    have it (used in ssh-keyscan).
4348  - (stevesk) OpenBSD CVS update:
4349    - markus@cvs.openbsd.org 2000/12/06 19:57:48
4350      [ssh-keyscan.c]
4351      err(3) -> internal error(), from stevesk@sweden.hp.com
4352
4353 20001205
4354  - (bal) OpenBSD CVS updates:
4355    - markus@cvs.openbsd.org 2000/12/04 19:24:02
4356      [ssh-keyscan.c ssh-keyscan.1]
4357      David Maziere's ssh-keyscan, ok niels@
4358  - (bal) Updated Makefile.in to include ssh-keyscan that was just added
4359    to the recent OpenBSD source tree.
4360  - (stevesk) fix typos in contrib/hpux/README
4361
4362 20001204
4363  - (bal) More C functions defined in NeXT that are unaccessable without
4364    defining -POSIX.
4365  - (bal) OpenBSD CVS updates:
4366    - markus@cvs.openbsd.org 2000/12/03 11:29:04
4367      [compat.c]
4368      remove fallback to SSH_BUG_HMAC now that the drafts are updated
4369    - markus@cvs.openbsd.org 2000/12/03 11:27:55
4370      [compat.c]
4371      correctly match "2.1.0.pl2 SSH" etc; from
4372      pekkas@netcore.fi/bugzilla.redhat
4373    - markus@cvs.openbsd.org 2000/12/03 11:15:03
4374      [auth2.c compat.c compat.h sshconnect2.c]
4375      support f-secure/ssh.com 2.0.12; ok niels@
4376
4377 20001203
4378  - (bal) OpenBSD CVS updates:
4379   - markus@cvs.openbsd.org 2000/11/30 22:54:31
4380     [channels.c]
4381     debug->warn if tried to do -R style fwd w/o client requesting this;
4382     ok neils@
4383   - markus@cvs.openbsd.org 2000/11/29 20:39:17
4384     [cipher.c]
4385     des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IV
4386   - markus@cvs.openbsd.org 2000/11/30 18:33:05
4387     [ssh-agent.c]
4388     agents must not dump core, ok niels@
4389   - markus@cvs.openbsd.org 2000/11/30 07:04:02
4390     [ssh.1]
4391     T is for both protocols
4392   - markus@cvs.openbsd.org 2000/12/01 00:00:51
4393     [ssh.1]
4394     typo; from green@FreeBSD.org
4395   - markus@cvs.openbsd.org 2000/11/30 07:02:35
4396     [ssh.c]
4397     check -T before isatty()
4398   - provos@cvs.openbsd.org 2000/11/29 13:51:27
4399     [sshconnect.c]
4400     show IP address and hostname when new key is encountered. okay markus@
4401   - markus@cvs.openbsd.org 2000/11/30 22:53:35
4402     [sshconnect.c]
4403     disable agent/x11/port fwding if hostkey has changed; ok niels@
4404   - marksu@cvs.openbsd.org 2000/11/29 21:11:59
4405     [sshd.c]
4406     sshd -D, startup w/o deamon(), for monitoring scripts or inittab;
4407     from handler@sub-rosa.com and eric@urbanrange.com; ok niels@
4408  - (djm) Added patch from Nalin Dahyabhai <nalin@redhat.com> to enable
4409    PAM authentication using KbdInteractive.
4410  - (djm) Added another TODO
4411
4412 20001202
4413  - (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
4414  - (bal) Irix need some sort of mansubdir, patch by Michael Stone
4415    <mstone@cs.loyola.edu>
4416
4417 20001129
4418  - (djm) Back out all the serverloop.c hacks. sshd will now hang again
4419    if there are background children with open fds.
4420  - (djm) bsd-rresvport.c bzero -> memset
4421  - (djm) Don't fail in defines.h on absence of 64 bit types (we will
4422    still fail during compilation of sftp-server).
4423  - (djm) Fail if ar is not found during configure
4424  - (djm) OpenBSD CVS updates:
4425    - provos@cvs.openbsd.org  2000/11/22 08:38:31
4426      [sshd.8]
4427      talk about /etc/primes, okay markus@
4428    - markus@cvs.openbsd.org  2000/11/23 14:03:48
4429      [ssh.c sshconnect1.c sshconnect2.c]
4430      complain about invalid ciphers for ssh1/ssh2, fall back to reasonable
4431      defaults
4432    - markus@cvs.openbsd.org  2000/11/25 09:42:53
4433      [sshconnect1.c]
4434      reorder check for illegal ciphers, bugreport from espie@
4435    - markus@cvs.openbsd.org  2000/11/25 10:19:34
4436      [ssh-keygen.c ssh.h]
4437      print keytype when generating a key.
4438      reasonable defaults for RSA1/RSA/DSA keys.
4439  - (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
4440    more manpage paths in fixpaths calls
4441  - (djm) Also add xauth path at Pekka's suggestion.
4442  - (djm) Add Redhat RPM patch for AUTHPRIV SyslogFacility
4443
4444 20001125
4445  - (djm) Give up privs when reading seed file
4446
4447 20001123
4448  - (bal) Merge OpenBSD changes:
4449    - markus@cvs.openbsd.org  2000/11/15 22:31:36
4450      [auth-options.c]
4451      case insensitive key options; from stevesk@sweeden.hp.com
4452    - markus@cvs.openbsd.org  2000/11/16 17:55:43
4453      [dh.c]
4454      do not use perror() in sshd, after child is forked()
4455    - markus@cvs.openbsd.org  2000/11/14 23:42:40
4456      [auth-rsa.c]
4457      parse option only if key matches; fix some confusing seen by the client
4458    - markus@cvs.openbsd.org  2000/11/14 23:44:19
4459      [session.c]
4460      check no_agent_forward_flag for ssh-2, too
4461    - markus@cvs.openbsd.org  2000/11/15
4462      [ssh-agent.1]
4463      reorder SYNOPSIS; typo, use .It
4464    - markus@cvs.openbsd.org  2000/11/14 23:48:55
4465      [ssh-agent.c]
4466      do not reorder keys if a key is removed
4467    - markus@cvs.openbsd.org  2000/11/15 19:58:08
4468      [ssh.c]
4469      just ignore non existing user keys
4470    - millert@cvs.openbsd.org  200/11/15 20:24:43
4471      [ssh-keygen.c]
4472      Add missing \n at end of error message.
4473
4474 20001122
4475  - (bal) Minor patch to ensure platforms lacking IRIX job limit supports
4476    are compilable.
4477  - (bal) Updated TODO as of 11/18/2000 with known things to resolve.
4478
4479 20001117
4480  - (bal) Changed from 'primes' to 'primes.out' for consistancy sake.  It
4481    has no affect the output.  Patch by Corinna Vinschen <vinschen@redhat.com>
4482  - (stevesk) Reworked progname support.
4483  - (bal) Misplaced #include "includes.h" in bsd-setproctitle.c.  Patch by
4484    Shinichi Maruyama <marya@st.jip.co.jp>
4485
4486 20001116
4487  - (bal) Added in MAXSYMLINK test in bsd-realpath.c.  Required for some SCO
4488    releases.
4489  - (bal) Make builds work outside of source tree.  Patch by Mark D. Roth
4490    <roth@feep.net>
4491
4492 20001113
4493  - (djm) Add pointer to http://www.imasy.or.jp/~gotoh/connect.c to
4494    contrib/README
4495  - (djm) Merge OpenBSD changes:
4496    - markus@cvs.openbsd.org  2000/11/06 16:04:56
4497      [channels.c channels.h clientloop.c nchan.c serverloop.c]
4498      [session.c ssh.c]
4499      agent forwarding and -R for ssh2, based on work from
4500      jhuuskon@messi.uku.fi
4501    - markus@cvs.openbsd.org  2000/11/06 16:13:27
4502      [ssh.c sshconnect.c sshd.c]
4503      do not disabled rhosts(rsa) if server port > 1024; from
4504      pekkas@netcore.fi
4505    - markus@cvs.openbsd.org  2000/11/06 16:16:35
4506      [sshconnect.c]
4507      downgrade client to 1.3 if server is 1.4; help from mdb@juniper.net
4508    - markus@cvs.openbsd.org  2000/11/09 18:04:40
4509      [auth1.c]
4510      typo; from mouring@pconline.com
4511    - markus@cvs.openbsd.org  2000/11/12 12:03:28
4512      [ssh-agent.c]
4513      off-by-one when removing a key from the agent
4514    - markus@cvs.openbsd.org  2000/11/12 12:50:39
4515      [auth-rh-rsa.c auth2.c authfd.c authfd.h]
4516      [authfile.c hostfile.c kex.c kex.h key.c key.h myproposal.h]
4517      [readconf.c readconf.h rsa.c rsa.h servconf.c servconf.h ssh-add.c]
4518      [ssh-agent.c ssh-keygen.1 ssh-keygen.c ssh.1 ssh.c ssh_config]
4519      [sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config ssh-dss.c]
4520      [ssh-dss.h ssh-rsa.c ssh-rsa.h dsa.c dsa.h]
4521      add support for RSA to SSH2.  please test.
4522      there are now 3 types of keys: RSA1 is used by ssh-1 only,
4523      RSA and DSA are used by SSH2.
4524      you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
4525      keys for SSH2 and use the RSA keys for hostkeys or for user keys.
4526      SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.
4527  - (djm) Fix up Makefile and Redhat init script to create RSA host keys
4528  - (djm) Change to interim version
4529  - (djm) Fix RPM spec file stupidity
4530  - (djm) fixpaths to DSA and RSA keys too
4531
4532 20001112
4533  - (bal) SCO Patch to add needed libraries for configure.in.  Patch by
4534    Phillips Porch <root@theporch.com>
4535  - (bal) IRIX patch to adding Job Limits.  Patch by Denis Parker
4536    <dcp@sgi.com>
4537  - (stevesk) pty.c: HP-UX 10 and 11 don't define TIOCSCTTY.  Add error() to
4538    failed ioctl(TIOCSCTTY) call.
4539
4540 20001111
4541  - (djm) Added /etc/primes for kex DH group neg, fixup Makefile.in and
4542    packaging files
4543  - (djm) Fix new Makefile.in warnings
4544  - (djm) Fix vsprintf("%h") in bsd-snprintf.c, short int va_args are
4545    promoted to type int. Report and fix from Dan Astoorian
4546    <djast@cs.toronto.edu>
4547  - (djm) Hardwire sysconfdir in RPM spec files as some RPM versions get
4548    it wrong. Report from Bennett Todd <bet@rahul.net>
4549
4550 20001110
4551  - (bal) Fixed dropped answer from skey_keyinfo() in auth1.c
4552  - (bal) Changed from --with-skey to --with-skey=PATH in configure.in
4553  - (bal) Added in check to verify S/Key library is being detected in
4554    configure.in
4555  - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif.
4556    Patch by Mark Miller <markm@swoon.net>
4557  - (bal) Added 'util.h' header to loginrec.c only if HAVE_UTIL_H is defined
4558    to remove warnings under MacOS X.  Patch by Mark Miller <markm@swoon.net>
4559  - (bal) Fixed LDFLAG mispelling in configure.in for --with-afs
4560
4561 20001107
4562  - (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
4563    Mark Miller <markm@swoon.net>
4564  - (bal) sshd.init files corrected to assign $? to RETVAL.  Patch by
4565    Jarno Huuskonen <jhuuskon@messi.uku.fi>
4566  - (bal) fixpaths fixed to stop it from quitely failing. Patch by
4567    Mark D. Roth <roth@feep.net>
4568
4569 20001106
4570  - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
4571  - (djm) Manually fix up missed diff hunks (mainly RCS idents)
4572  - (djm) Remove UPGRADING document in favour of a link to the better
4573    maintained FAQ on www.openssh.com
4574  - (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
4575    <pekkas@netcore.fi>
4576  - (djm) Don't need X11-askpass in RPM spec file if building without it
4577    from Pekka Savola <pekkas@netcore.fi>
4578  - (djm) Release 2.3.0p1
4579  - (bal) typo in configure.in in regards to --with-ldflags from Marko
4580    Asplund <aspa@kronodoc.fi>
4581  - (bal) fixed next-posix.h.  Forgot prototype of getppid().
4582
4583 20001105
4584  - (bal) Sync with OpenBSD:
4585    - markus@cvs.openbsd.org 2000/10/31 9:31:58
4586      [compat.c]
4587      handle all old openssh versions
4588    - markus@cvs.openbsd.org 2000/10/31 13:1853
4589      [deattack.c]
4590      so that large packets do not wrap "n"; from netbsd
4591  - (bal) rijndel.c - fix up RCSID to match OpenBSD tree
4592  - (bal) auth2-skey.c - Checked in.  Missing from portable tree.
4593  - (bal) Reworked NEWS-OS and NeXT ports to extract waitpid() and
4594    setsid() into more common files
4595  - (stevesk) pty.c: use __hpux to identify HP-UX.
4596  - (bal) Missed auth-skey.o in Makefile.in and minor correction to
4597    bsd-waitpid.c
4598
4599 20001029
4600  - (stevesk) Fix typo in auth.c: USE_PAM not PAM
4601  - (stevesk) Create contrib/cygwin/ directory; patch from
4602    Corinna Vinschen <vinschen@redhat.com>
4603  - (bal) Resolved more $xno and $xyes issues in configure.in
4604  - (bal) next-posix.h - spelling and forgot a prototype
4605
4606 20001028
4607  - (djm) fix select hack in serverloop.c from Philippe WILLEM
4608    <Philippe.WILLEM@urssaf.fr>
4609  - (djm) Fix mangled AIXAUTHENTICATE code
4610  - (djm) authctxt->pw may be NULL. Fix from Markus Friedl
4611    <markus.friedl@informatik.uni-erlangen.de>
4612  - (djm) Sync with OpenBSD:
4613    - markus@cvs.openbsd.org  2000/10/16 15:46:32
4614      [ssh.1]
4615      fixes from pekkas@netcore.fi
4616    - markus@cvs.openbsd.org  2000/10/17 14:28:11
4617      [atomicio.c]
4618      return number of characters processed; ok deraadt@
4619    - markus@cvs.openbsd.org  2000/10/18 12:04:02
4620      [atomicio.c]
4621      undo
4622    - markus@cvs.openbsd.org  2000/10/18 12:23:02
4623      [scp.c]
4624      replace atomicio(read,...) with read(); ok deraadt@
4625    - markus@cvs.openbsd.org  2000/10/18 12:42:00
4626      [session.c]
4627      restore old record login behaviour
4628    - deraadt@cvs.openbsd.org 2000/10/19 10:41:13
4629      [auth-skey.c]
4630      fmt string problem in unused code
4631    - provos@cvs.openbsd.org  2000/10/19 10:45:16
4632      [sshconnect2.c]
4633      don't reference freed memory. okay deraadt@
4634    - markus@cvs.openbsd.org  2000/10/21 11:04:23
4635      [canohost.c]
4636      typo, eramore@era-t.ericsson.se; ok niels@
4637    - markus@cvs.openbsd.org  2000/10/23 13:31:55
4638      [cipher.c]
4639      non-alignment dependent swap_bytes(); from
4640      simonb@wasabisystems.com/netbsd
4641    - markus@cvs.openbsd.org  2000/10/26 12:38:28
4642      [compat.c]
4643      add older vandyke products
4644    - markus@cvs.openbsd.org  2000/10/27 01:32:19
4645      [channels.c channels.h clientloop.c serverloop.c session.c]
4646      [ssh.c util.c]
4647      enable non-blocking IO on channels, and tty's (except for the
4648      client ttys).
4649
4650 20001027
4651  - (djm) Increase REKEY_BYTES to 2^24 for arc4random
4652
4653 20001025
4654  - (djm) Added WARNING.RNG file and modified configure to ask users of the
4655    builtin entropy code to read it.
4656  - (djm) Prefer builtin regex to PCRE.
4657  - (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
4658  - (bal) Apply fixes to configure.in pointed out by Pavel Roskin
4659    <proski@gnu.org>
4660
4661 20001020
4662  - (djm) Don't define _REENTRANT for SNI/Reliant Unix
4663  - (bal) Imported NEWS-OS waitpid() macros into NeXT.  Since implementation
4664    is more correct then current version.
4665
4666 20001018
4667  - (stevesk) Add initial support for setproctitle().  Current
4668    support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
4669  - (stevesk) Add egd startup scripts to contrib/hpux/
4670
4671 20001017
4672  - (djm) Add -lregex to cywin libs from Corinna Vinschen
4673    <vinschen@cygnus.com>
4674  - (djm) Don't rely on atomicio's retval to determine length of askpass
4675    supplied passphrase. Problem report from Lutz Jaenicke
4676    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4677  - (bal) Changed from GNU rx to PCRE on suggestion from djm.
4678  - (bal) Integrated Sony NEWS-OS patches from NAKAJI Hirouyuki
4679    <nakaji@tutrp.tut.ac.jp>
4680
4681 20001016
4682  - (djm) Sync with OpenBSD:
4683    - markus@cvs.openbsd.org  2000/10/14 04:01:15
4684      [cipher.c]
4685      debug3
4686    - markus@cvs.openbsd.org  2000/10/14 04:07:23
4687      [scp.c]
4688      remove spaces from arguments; from djm@mindrot.org
4689    - markus@cvs.openbsd.org  2000/10/14 06:09:46
4690      [ssh.1]
4691      Cipher is for SSH-1 only
4692    - markus@cvs.openbsd.org  2000/10/14 06:12:09
4693      [servconf.c servconf.h serverloop.c session.c sshd.8]
4694      AllowTcpForwarding; from naddy@
4695    - markus@cvs.openbsd.org  2000/10/14 06:16:56
4696      [auth2.c compat.c compat.h sshconnect2.c version.h]
4697      OpenSSH_2.3; note that is is not complete, but the version number
4698      needs to be changed for interoperability reasons
4699    - markus@cvs.openbsd.org  2000/10/14 06:19:45
4700      [auth-rsa.c]
4701      do not send RSA challenge if key is not allowed by key-options; from
4702      eivind@ThinkSec.com
4703    - markus@cvs.openbsd.org  2000/10/15 08:14:01
4704      [rijndael.c session.c]
4705      typos; from stevesk@sweden.hp.com
4706    - markus@cvs.openbsd.org  2000/10/15 08:18:31
4707      [rijndael.c]
4708      typo
4709  - (djm) Copy manpages back over from OpenBSD - too tedious to wade
4710    through diffs
4711  - (djm) Added condrestart to Redhat init script. Patch from Pekka Savola
4712    <pekkas@netcore.fi>
4713  - (djm) Update version in Redhat spec file
4714  - (djm) Merge some of Nalin Dahyabhai <nalin@redhat.com> changes from the
4715    Redhat 7.0 spec file
4716  - (djm) Make inability to read/write PRNG seedfile non-fatal
4717
4718
4719 20001015
4720  - (djm) Fix ssh2 hang on background processes at logout.
4721
4722 20001014
4723  - (bal) Add support for realpath and getcwd for platforms with broken
4724    or missing realpath implementations for sftp-server.
4725  - (bal) Corrected mistake in INSTALL in regards to GNU rx library
4726  - (bal) Add support for GNU rx library for those lacking regexp support
4727  - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
4728  - (djm) Revert SSH2 serverloop hack, will find a better way.
4729  - (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
4730    from Martin Johansson <fatbob@acc.umu.se>
4731  - (djm) Big OpenBSD sync:
4732    - markus@cvs.openbsd.org  2000/09/30 10:27:44
4733      [log.c]
4734      allow loglevel debug
4735    - markus@cvs.openbsd.org  2000/10/03 11:59:57
4736      [packet.c]
4737      hmac->mac
4738    - markus@cvs.openbsd.org  2000/10/03 12:03:03
4739      [auth-krb4.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth1.c]
4740      move fake-auth from auth1.c to individual auth methods, disables s/key in
4741      debug-msg
4742    - markus@cvs.openbsd.org  2000/10/03 12:16:48
4743      ssh.c
4744      do not resolve canonname, i have no idea why this was added oin ossh
4745    - markus@cvs.openbsd.org  2000/10/09 15:30:44
4746      ssh-keygen.1 ssh-keygen.c
4747      -X now reads private ssh.com DSA keys, too.
4748    - markus@cvs.openbsd.org  2000/10/09 15:32:34
4749      auth-options.c
4750      clear options on every call.
4751    - markus@cvs.openbsd.org  2000/10/09 15:51:00
4752      authfd.c authfd.h
4753      interop with ssh-agent2, from <res@shore.net>
4754    - markus@cvs.openbsd.org  2000/10/10 14:20:45
4755      compat.c
4756      use rexexp for version string matching
4757    - provos@cvs.openbsd.org  2000/10/10 22:02:18
4758      [kex.c kex.h myproposal.h ssh.h ssh2.h sshconnect2.c sshd.c dh.c dh.h]
4759      First rough implementation of the diffie-hellman group exchange.  The
4760      client can ask the server for bigger groups to perform the diffie-hellman
4761      in, thus increasing the attack complexity when using ciphers with longer
4762      keys.  University of Windsor provided network, T the company.
4763    - markus@cvs.openbsd.org  2000/10/11 13:59:52
4764      [auth-rsa.c auth2.c]
4765      clear auth options unless auth sucessfull
4766    - markus@cvs.openbsd.org  2000/10/11 14:00:27
4767      [auth-options.h]
4768      clear auth options unless auth sucessfull
4769    - markus@cvs.openbsd.org  2000/10/11 14:03:27
4770      [scp.1 scp.c]
4771      support 'scp -o' with help from mouring@pconline.com
4772    - markus@cvs.openbsd.org  2000/10/11 14:11:35
4773      [dh.c]
4774      Wall
4775    - markus@cvs.openbsd.org  2000/10/11 14:14:40
4776      [auth.h auth2.c readconf.c readconf.h readpass.c servconf.c servconf.h]
4777      [ssh.h sshconnect2.c sshd_config auth2-skey.c cli.c cli.h]
4778      add support for s/key (kbd-interactive) to ssh2, based on work by
4779      mkiernan@avantgo.com and me
4780    - markus@cvs.openbsd.org  2000/10/11 14:27:24
4781      [auth.c auth1.c auth2.c authfile.c cipher.c cipher.h kex.c kex.h]
4782      [myproposal.h packet.c readconf.c session.c ssh.c ssh.h sshconnect1.c]
4783      [sshconnect2.c sshd.c]
4784      new cipher framework
4785    - markus@cvs.openbsd.org  2000/10/11 14:45:21
4786      [cipher.c]
4787      remove DES
4788    - markus@cvs.openbsd.org  2000/10/12 03:59:20
4789      [cipher.c cipher.h sshconnect1.c sshconnect2.c sshd.c]
4790      enable DES in SSH-1 clients only
4791    - markus@cvs.openbsd.org  2000/10/12 08:21:13
4792      [kex.h packet.c]
4793      remove unused
4794    - markus@cvs.openbsd.org  2000/10/13 12:34:46
4795      [sshd.c]
4796      Kludge for F-Secure Macintosh < 1.0.2; appro@fy.chalmers.se
4797    - markus@cvs.openbsd.org  2000/10/13 12:59:15
4798      [cipher.c cipher.h myproposal.h  rijndael.c rijndael.h]
4799      rijndael/aes support
4800    - markus@cvs.openbsd.org  2000/10/13 13:10:54
4801      [sshd.8]
4802      more info about -V
4803    - markus@cvs.openbsd.org  2000/10/13 13:12:02
4804      [myproposal.h]
4805      prefer no compression
4806  - (djm) Fix scp user@host handling
4807  - (djm) Don't clobber ssh_prng_cmds on install
4808  - (stevesk) Include config.h in rijndael.c so we define intXX_t and
4809    u_intXX_t types on all platforms.
4810  - (stevesk) rijndael.c: cleanup missing declaration warnings.
4811  - (stevesk) ~/.hushlogin shouldn't cause required password change to
4812    be bypassed.
4813  - (stevesk) Display correct path to ssh-askpass in configure output.
4814    Report from Lutz Jaenicke.
4815
4816 20001007
4817  - (stevesk) Print PAM return value in PAM log messages to aid
4818    with debugging.
4819  - (stevesk) Fix detection of pw_class struct member in configure;
4820    patch from KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp>
4821
4822 20001002
4823  - (djm) Fix USER_PATH, report from Kevin Steves <stevesk@sweden.hp.com>
4824  - (djm) Add host system and CC to end-of-configure report. Suggested by
4825    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4826
4827 20000931
4828  - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com>
4829
4830 20000930
4831  - (djm) Irix ssh_prng_cmds path fix from Pekka Savola <pekkas@netcore.fi>
4832  - (djm) Support in bsd-snprintf.c for long long conversions from
4833    Ben Lindstrom <mouring@pconline.com>
4834  - (djm) Cleanup NeXT support from Ben Lindstrom <mouring@pconline.com>
4835  - (djm) Ignore SIGPIPEs from serverloop to child. Fixes crashes with
4836    very short lived X connections. Bug report from Tobias Oetiker
4837    <oetiker@ee.ethz.ch>. Fix from Markus Friedl <markus@cvs.openbsd.org>
4838  - (djm) Add recent InitScripts as a RPM dependancy for openssh-server
4839    patch from Pekka Savola <pekkas@netcore.fi>
4840  - (djm) Forgot to cvs add LICENSE file
4841  - (djm) Add LICENSE to RPM spec files
4842  - (djm) CVS OpenBSD sync:
4843    - markus@cvs.openbsd.org  2000/09/26 13:59:59
4844      [clientloop.c]
4845      use debug2
4846    - markus@cvs.openbsd.org  2000/09/27 15:41:34
4847      [auth2.c sshconnect2.c]
4848      use key_type()
4849    - markus@cvs.openbsd.org  2000/09/28 12:03:18
4850      [channels.c]
4851      debug -> debug2 cleanup
4852  - (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
4853    strip "/dev/"). Fix loginrec.c based on patch from Alain St-Denis
4854    <Alain.St-Denis@ec.gc.ca>
4855  - (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
4856    Problem was caused by interrupted read in ssh-add. Report from Donald
4857    J. Barry <don@astro.cornell.edu>
4858
4859 20000929
4860  - (djm) Fix SSH2 not terminating until all background tasks done problem.
4861  - (djm) Another off-by-one fix from Pavel Kankovsky
4862    <peak@argo.troja.mff.cuni.cz>
4863  - (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
4864    tidy necessary differences. Use Markus' new debugN() in entropy.c
4865  - (djm) Merged big SCO portability patch from Tim Rice
4866    <tim@multitalents.net>
4867
4868 20000926
4869  - (djm) Update X11-askpass to 1.0.2 in RPM spec file
4870  - (djm) Define _REENTRANT to pickup strtok_r() on HP/UX
4871  - (djm) Security: fix off-by-one buffer overrun in fake-getnameinfo.c.
4872    Report and fix from Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
4873
4874 20000924
4875  - (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
4876  - (djm) A bit more cleanup - created cygwin_util.h
4877  - (djm) Include strtok_r() from OpenBSD libc. Fixes report from Mark Miller
4878    <markm@swoon.net>
4879
4880 20000923
4881  - (djm) Fix address logging in utmp from Kevin Steves
4882    <stevesk@sweden.hp.com>
4883  - (djm) Redhat spec and manpage fixes from Pekka Savola <pekkas@netcore.fi>
4884  - (djm) Seperate tests for int64_t and u_int64_t types
4885  - (djm) Tweak password expiry checking at suggestion of Kevin Steves
4886    <stevesk@sweden.hp.com>
4887  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
4888  - (djm) Use printf %lld instead of %qd in sftp-server.c. Fix from
4889    Michael Stone <mstone@cs.loyola.edu>
4890  - (djm) OpenBSD CVS sync:
4891    - markus@cvs.openbsd.org  2000/09/17 09:38:59
4892      [sshconnect2.c sshd.c]
4893      fix DEBUG_KEXDH
4894    - markus@cvs.openbsd.org  2000/09/17 09:52:51
4895      [sshconnect.c]
4896      yes no; ok niels@
4897    - markus@cvs.openbsd.org  2000/09/21 04:55:11
4898      [sshd.8]
4899      typo
4900    - markus@cvs.openbsd.org  2000/09/21 05:03:54
4901      [serverloop.c]
4902      typo
4903    - markus@cvs.openbsd.org  2000/09/21 05:11:42
4904      scp.c
4905      utime() to utimes(); mouring@pconline.com
4906    - markus@cvs.openbsd.org  2000/09/21 05:25:08
4907      sshconnect2.c
4908      change login logic in ssh2, allows plugin of other auth methods
4909    - markus@cvs.openbsd.org  2000/09/21 05:25:35
4910      [auth2.c channels.c channels.h clientloop.c dispatch.c dispatch.h]
4911      [serverloop.c]
4912      add context to dispatch_run
4913    - markus@cvs.openbsd.org  2000/09/21 05:07:52
4914      authfd.c authfd.h ssh-agent.c
4915      bug compat for old ssh.com software
4916
4917 20000920
4918  - (djm) Fix bad path substitution. Report from Andrew Miner
4919    <asminer@cs.iastate.edu>
4920
4921 20000916
4922  - (djm) Fix SSL search order from Lutz Jaenicke
4923    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4924  - (djm) New SuSE spec from Corinna Vinschen <corinna@vinschen.de>
4925  - (djm) Update CygWin support from Corinna Vinschen <vinschen@cygnus.com>
4926  - (djm) Use a real struct sockaddr inside the fake struct sockaddr_storage.
4927    Patch from Larry Jones <larry.jones@sdrc.com>
4928  - (djm) Add Steve VanDevender's <stevev@darkwing.uoregon.edu> PAM
4929    password change patch.
4930  - (djm) Bring licenses on my stuff in line with OpenBSD's
4931  - (djm) Cleanup auth-passwd.c and unify HP/UX authentication. Patch from
4932    Kevin Steves <stevesk@sweden.hp.com>
4933  - (djm) Shadow expiry check fix from Pavel Troller <patrol@omni.sinus.cz>
4934  - (djm) Re-enable int64_t types - we need them for sftp
4935  - (djm) Use libexecdir from configure , rather than libexecdir/ssh
4936  - (djm) Update Redhat SPEC file accordingly
4937  - (djm) Add Kevin Steves <stevesk@sweden.hp.com> HP/UX contrib files
4938  - (djm) Add Charles Levert <charles@comm.polymtl.ca> getpgrp patch
4939  - (djm) Fix password auth on HP/UX 10.20. Patch from Dirk De Wachter
4940    <Dirk.DeWachter@rug.ac.be>
4941  - (djm) Fixprogs and entropy list fixes from Larry Jones
4942    <larry.jones@sdrc.com>
4943  - (djm) Fix for SuSE spec file from Takashi YOSHIDA
4944    <tyoshida@gemini.rc.kyushu-u.ac.jp>
4945  - (djm) Merge OpenBSD changes:
4946    - markus@cvs.openbsd.org  2000/09/05 02:59:57
4947      [session.c]
4948      print hostname (not hushlogin)
4949    - markus@cvs.openbsd.org  2000/09/05 13:18:48
4950      [authfile.c ssh-add.c]
4951      enable ssh-add -d for DSA keys
4952    - markus@cvs.openbsd.org  2000/09/05 13:20:49
4953      [sftp-server.c]
4954      cleanup
4955    - markus@cvs.openbsd.org  2000/09/06 03:46:41
4956      [authfile.h]
4957      prototype
4958    - deraadt@cvs.openbsd.org 2000/09/07 14:27:56
4959      [ALL]
4960      cleanup copyright notices on all files.  I have attempted to be
4961      accurate with the details.  everything is now under Tatu's licence
4962      (which I copied from his readme), and/or the core-sdi bsd-ish thing
4963      for deattack, or various openbsd developers under a 2-term bsd
4964      licence.  We're not changing any rules, just being accurate.
4965    - markus@cvs.openbsd.org  2000/09/07 14:40:30
4966      [channels.c channels.h clientloop.c serverloop.c ssh.c]
4967      cleanup window and packet sizes for ssh2 flow control; ok niels
4968    - markus@cvs.openbsd.org  2000/09/07 14:53:00
4969      [scp.c]
4970      typo
4971    - markus@cvs.openbsd.org  2000/09/07 15:13:37
4972      [auth-options.c auth-options.h auth-rh-rsa.c auth-rsa.c auth.c]
4973      [authfile.h canohost.c channels.h compat.c hostfile.h log.c match.h]
4974      [pty.c readconf.c]
4975      some more Copyright fixes
4976    - markus@cvs.openbsd.org  2000/09/08 03:02:51
4977      [README.openssh2]
4978      bye bye
4979    - deraadt@cvs.openbsd.org 2000/09/11 18:38:33
4980      [LICENCE cipher.c]
4981      a few more comments about it being ARC4 not RC4
4982    - markus@cvs.openbsd.org  2000/09/12 14:53:11
4983      [log-client.c log-server.c log.c ssh.1 ssh.c ssh.h sshd.8 sshd.c]
4984      multiple debug levels
4985    - markus@cvs.openbsd.org  2000/09/14 14:25:15
4986      [clientloop.c]
4987      typo
4988    - deraadt@cvs.openbsd.org 2000/09/15 01:13:51
4989      [ssh-agent.c]
4990      check return value for setenv(3) for failure, and deal appropriately
4991
4992 20000913
4993  - (djm) Fix server not exiting with jobs in background.
4994
4995 20000905
4996  - (djm) Import OpenBSD CVS changes
4997    - markus@cvs.openbsd.org  2000/08/31 15:52:24
4998      [Makefile sshd.8 sshd_config sftp-server.8 sftp-server.c]
4999      implement a SFTP server. interops with sftp2, scp2 and the windows
5000      client from ssh.com
5001    - markus@cvs.openbsd.org  2000/08/31 15:56:03
5002      [README.openssh2]
5003      sync
5004    - markus@cvs.openbsd.org  2000/08/31 16:05:42
5005      [session.c]
5006      Wall
5007    - markus@cvs.openbsd.org  2000/08/31 16:09:34
5008      [authfd.c ssh-agent.c]
5009      add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensions
5010    - deraadt@cvs.openbsd.org 2000/09/01 09:25:13
5011      [scp.1 scp.c]
5012      cleanup and fix -S support; stevesk@sweden.hp.com
5013    - markus@cvs.openbsd.org  2000/09/01 16:29:32
5014      [sftp-server.c]
5015      portability fixes
5016    - markus@cvs.openbsd.org  2000/09/01 16:32:41
5017      [sftp-server.c]
5018      fix cast; mouring@pconline.com
5019    - itojun@cvs.openbsd.org  2000/09/03 09:23:28
5020      [ssh-add.1 ssh.1]
5021      add missing .El against .Bl.
5022    - markus@cvs.openbsd.org  2000/09/04 13:03:41
5023      [session.c]
5024      missing close; ok theo
5025    - markus@cvs.openbsd.org  2000/09/04 13:07:21
5026      [session.c]
5027      fix get_last_login_time order; from andre@van-veen.de
5028    - markus@cvs.openbsd.org  2000/09/04 13:10:09
5029      [sftp-server.c]
5030      more cast fixes; from mouring@pconline.com
5031    - markus@cvs.openbsd.org  2000/09/04 13:06:04
5032      [session.c]
5033      set SSH_ORIGINAL_COMMAND; from Leakin@dfw.nostrum.com, bet@rahul.net
5034  - (djm) Cleanup after import. Fix sftp-server compilation, Makefile
5035  - (djm) Merge cygwin support from Corinna Vinschen <vinschen@cygnus.com>
5036
5037 20000903
5038  - (djm) Fix Redhat init script
5039
5040 20000901
5041  - (djm) Pick up Jim's new X11-askpass
5042  - (djm) Release 2.2.0p1
5043
5044 20000831
5045  - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
5046    <acox@cv.telegroup.com>
5047  - (djm) Pick up new version (2.2.0) from OpenBSD CVS
5048
5049 20000830
5050  - (djm) Compile warning fixes from Mark Miller <markm@swoon.net>
5051  - (djm) Periodically rekey arc4random
5052  - (djm) Clean up diff against OpenBSD.
5053  - (djm) HPUX 11 needs USE_PIPES as well: Kevin Steves
5054    <stevesk@sweden.hp.com>
5055  - (djm) Quieten the pam delete credentials error message
5056  - (djm) Fix printing of $DISPLAY hack if set by system type. Report from
5057    Kevin Steves <stevesk@sweden.hp.com>
5058  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
5059  - (djm) Fix doh in bsd-arc4random.c
5060
5061 20000829
5062  - (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
5063    Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
5064    Garrick James <garrick@james.net>
5065  - (djm) Check for SCO pty naming style (ptyp%d/ttyp%d). Based on fix from
5066    Bastian Trompetter <btrompetter@firemail.de>
5067  - (djm) NeXT tweaks from Ben Lindstrom <mouring@pconline.com>
5068  - More OpenBSD updates:
5069    - deraadt@cvs.openbsd.org 2000/08/24 15:46:59
5070      [scp.c]
5071      off_t in sink, to fix files > 2GB, i think, test is still running ;-)
5072    - deraadt@cvs.openbsd.org 2000/08/25 10:10:06
5073      [session.c]
5074      Wall
5075    - markus@cvs.openbsd.org  2000/08/26 04:33:43
5076      [compat.c]
5077      ssh.com-2.3.0
5078    - markus@cvs.openbsd.org  2000/08/27 12:18:05
5079      [compat.c]
5080      compatibility with future ssh.com versions
5081    - deraadt@cvs.openbsd.org 2000/08/27 21:50:55
5082      [auth-krb4.c session.c ssh-add.c sshconnect.c uidswap.c]
5083      print uid/gid as unsigned
5084    - markus@cvs.openbsd.org  2000/08/28 13:51:00
5085      [ssh.c]
5086      enable -n and -f for ssh2
5087    - markus@cvs.openbsd.org  2000/08/28 14:19:53
5088      [ssh.c]
5089      allow combination of -N and -f
5090    - markus@cvs.openbsd.org  2000/08/28 14:20:56
5091      [util.c]
5092      util.c
5093    - markus@cvs.openbsd.org  2000/08/28 14:22:02
5094      [util.c]
5095      undo
5096    - markus@cvs.openbsd.org  2000/08/28 14:23:38
5097      [util.c]
5098      don't complain if setting NONBLOCK fails with ENODEV
5099
5100 20000823
5101  - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
5102    Avoids "scp never exits" problem. Reports from Lutz Jaenicke
5103    <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA
5104    <kajiyama@grad.sccs.chukyo-u.ac.jp>
5105  - (djm) Pick up LOGIN_PROGRAM from environment or PATH if not set by headers
5106  - (djm) Add local version to version.h
5107  - (djm) Don't reseed arc4random everytime it is used
5108  - (djm) OpenBSD CVS updates:
5109    - deraadt@cvs.openbsd.org 2000/08/18 20:07:23
5110      [ssh.c]
5111      accept remsh as a valid name as well; roman@buildpoint.com
5112    - deraadt@cvs.openbsd.org 2000/08/18 20:17:13
5113      [deattack.c crc32.c packet.c]
5114      rename crc32() to ssh_crc32() to avoid zlib name clash.  do not move to
5115      libz crc32 function yet, because it has ugly "long"'s in it;
5116      oneill@cs.sfu.ca
5117    - deraadt@cvs.openbsd.org 2000/08/18 20:26:08
5118      [scp.1 scp.c]
5119      -S prog support; tv@debian.org
5120    - deraadt@cvs.openbsd.org 2000/08/18 20:50:07
5121      [scp.c]
5122      knf
5123    - deraadt@cvs.openbsd.org 2000/08/18 20:57:33
5124      [log-client.c]
5125      shorten
5126    - markus@cvs.openbsd.org  2000/08/19 12:48:11
5127      [channels.c channels.h clientloop.c ssh.c ssh.h]
5128      support for ~. in ssh2
5129    - deraadt@cvs.openbsd.org 2000/08/19 15:29:40
5130      [crc32.h]
5131      proper prototype
5132    - markus@cvs.openbsd.org  2000/08/19 15:34:44
5133      [authfd.c authfd.h key.c key.h ssh-add.1 ssh-add.c ssh-agent.1]
5134      [ssh-agent.c ssh-keygen.c sshconnect1.c sshconnect2.c Makefile]
5135      [fingerprint.c fingerprint.h]
5136      add SSH2/DSA support to the agent and some other DSA related cleanups.
5137      (note that we cannot talk to ssh.com's ssh2 agents)
5138    - markus@cvs.openbsd.org  2000/08/19 15:55:52
5139      [channels.c channels.h clientloop.c]
5140      more ~ support for ssh2
5141    - markus@cvs.openbsd.org  2000/08/19 16:21:19
5142      [clientloop.c]
5143      oops
5144    - millert@cvs.openbsd.org 2000/08/20 12:25:53
5145      [session.c]
5146      We have to stash the result of get_remote_name_or_ip() before we
5147      close our socket or getpeername() will get EBADF and the process
5148      will exit.  Only a problem for "UseLogin yes".
5149    - millert@cvs.openbsd.org 2000/08/20 12:30:59
5150      [session.c]
5151      Only check /etc/nologin if "UseLogin no" since login(1) may have its
5152      own policy on determining who is allowed to login when /etc/nologin
5153      is present.  Also use the _PATH_NOLOGIN define.
5154    - millert@cvs.openbsd.org 2000/08/20 12:42:43
5155      [auth1.c auth2.c session.c ssh.c]
5156      Add calls to setusercontext() and login_get*().  We basically call
5157      setusercontext() in most places where previously we did a setlogin().
5158      Add default login.conf file and put root in the "daemon" login class.
5159    - millert@cvs.openbsd.org 2000/08/21 10:23:31
5160      [session.c]
5161      Fix incorrect PATH setting; noted by Markus.
5162
5163 20000818
5164  - (djm) OpenBSD CVS changes:
5165    - markus@cvs.openbsd.org  2000/07/22 03:14:37
5166      [servconf.c servconf.h sshd.8 sshd.c sshd_config]
5167      random early drop; ok theo, niels
5168    - deraadt@cvs.openbsd.org 2000/07/26 11:46:51
5169      [ssh.1]
5170      typo
5171    - deraadt@cvs.openbsd.org 2000/08/01 11:46:11
5172      [sshd.8]
5173      many fixes from pepper@mail.reppep.com
5174    - provos@cvs.openbsd.org  2000/08/01 13:01:42
5175      [Makefile.in util.c aux.c]
5176      rename aux.c to util.c to help with cygwin port
5177    - deraadt@cvs.openbsd.org 2000/08/02 00:23:31
5178      [authfd.c]
5179      correct sun_len; Alexander@Leidinger.net
5180    - provos@cvs.openbsd.org  2000/08/02 10:27:17
5181      [readconf.c sshd.8]
5182      disable kerberos authentication by default
5183    - provos@cvs.openbsd.org  2000/08/02 11:27:05
5184      [sshd.8 readconf.c auth-krb4.c]
5185      disallow kerberos authentication if we can't verify the TGT; from
5186      dugsong@
5187      kerberos authentication is on by default only if you have a srvtab.
5188    - markus@cvs.openbsd.org  2000/08/04 14:30:07
5189      [auth.c]
5190      unused
5191    - markus@cvs.openbsd.org  2000/08/04 14:30:35
5192      [sshd_config]
5193      MaxStartups
5194    - markus@cvs.openbsd.org  2000/08/15 13:20:46
5195      [authfd.c]
5196      cleanup; ok niels@
5197    - markus@cvs.openbsd.org  2000/08/17 14:05:10
5198      [session.c]
5199      cleanup login(1)-like jobs, no duplicate utmp entries
5200    - markus@cvs.openbsd.org  2000/08/17 14:06:34
5201      [session.c sshd.8 sshd.c]
5202       sshd -u len, similar to telnetd
5203  - (djm) Lastlog was not getting closed after writing login entry
5204  - (djm) Add Solaris package support from Rip Loomis <loomisg@cist.saic.com>
5205
5206 20000816
5207  - (djm) Replacement for inet_ntoa for Irix (which breaks on gcc)
5208  - (djm) Fix strerror replacement for old SunOS. Based on patch from
5209    Charles Levert <charles@comm.polymtl.ca>
5210  - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4
5211    implementation.
5212  - (djm) SUN_LEN macro for systems which lack it
5213
5214 20000815
5215  - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com>
5216  - (djm) Avoid failures on Irix when ssh is not setuid. Fix from
5217    Michael Stone <mstone@cs.loyola.edu>
5218  - (djm) Don't seek in directory based lastlogs
5219  - (djm) Fix --with-ipaddr-display configure option test. Patch from
5220    Jarno Huuskonen <jhuuskon@messi.uku.fi>
5221  - (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
5222
5223 20000813
5224  - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
5225    Fabrice bacchella <fabrice.bacchella@marchfirst.fr>
5226
5227 20000809
5228  - (djm) Define AIX hard limits if headers don't. Report from
5229    Bill Painter <william.t.painter@lmco.com>
5230  - (djm) utmp direct write & SunOS 4 patch from Charles Levert
5231    <charles@comm.polymtl.ca>
5232
5233 20000808
5234  - (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
5235    time, spec file cleanup.
5236
5237 20000807
5238  - (djm) Set 0755 on binaries during install. Report from Lutz Jaenicke
5239  - (djm) Suppress error messages on channel close shutdown() failurs
5240    works around Linux bug. Patch from Zack Weinberg <zack@wolery.cumb.org>
5241  - (djm) Add some more entropy collection commands from Lutz Jaenicke
5242
5243 20000725
5244  - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
5245
5246 20000721
5247  - (djm) OpenBSD CVS updates:
5248    - markus@cvs.openbsd.org  2000/07/16 02:27:22
5249      [authfd.c authfd.h channels.c clientloop.c ssh-add.c ssh-agent.c ssh.c]
5250      [sshconnect1.c sshconnect2.c]
5251      make ssh-add accept dsa keys (the agent does not)
5252    - djm@cvs.openbsd.org     2000/07/17 19:25:02
5253      [sshd.c]
5254      Another closing of stdin; ok deraadt
5255    - markus@cvs.openbsd.org  2000/07/19 18:33:12
5256      [dsa.c]
5257      missing free, reorder
5258    - markus@cvs.openbsd.org  2000/07/20 16:23:14
5259      [ssh-keygen.1]
5260      document input and output files
5261
5262 20000720
5263  - (djm) Spec file fix from Petr Novotny <Petr.Novotny@antek.cz>
5264
5265 20000716
5266  - (djm) Release 2.1.1p4
5267
5268 20000715
5269  - (djm) OpenBSD CVS updates
5270    - provos@cvs.openbsd.org  2000/07/13 16:53:22
5271      [aux.c readconf.c servconf.c ssh.h]
5272      allow multiple whitespace but only one '=' between tokens, bug report from
5273      Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@
5274    - provos@cvs.openbsd.org  2000/07/13 17:14:09
5275      [clientloop.c]
5276      typo; todd@fries.net
5277    - provos@cvs.openbsd.org  2000/07/13 17:19:31
5278      [scp.c]
5279      close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu>
5280    - markus@cvs.openbsd.org  2000/07/14 16:59:46
5281      [readconf.c servconf.c]
5282      allow leading whitespace. ok niels
5283    - djm@cvs.openbsd.org     2000/07/14 22:01:38
5284      [ssh-keygen.c ssh.c]
5285      Always create ~/.ssh with mode 700; ok Markus
5286  - Fixes for SunOS 4.1.4 from Gordon Atwood <gordon@cs.ualberta.ca>
5287    - Include floatingpoint.h for entropy.c
5288    - strerror replacement
5289
5290 20000712
5291  - (djm) Remove -lresolve for Reliant Unix
5292  - (djm) OpenBSD CVS Updates:
5293    - deraadt@cvs.openbsd.org 2000/07/11 02:11:34
5294      [session.c sshd.c ]
5295      make MaxStartups code still work with -d; djm
5296    - deraadt@cvs.openbsd.org 2000/07/11 13:17:45
5297      [readconf.c ssh_config]
5298      disable FallBackToRsh by default
5299  - (djm) Replace in_addr_t with u_int32_t in bsd-inet_aton.c. Report from
5300    Ben Lindstrom <mouring@pconline.com>
5301  - (djm) Make building of X11-Askpass and GNOME-Askpass optional in RPM
5302    spec file.
5303  - (djm) Released 2.1.1p3
5304
5305 20000711
5306  - (djm) Fixup for AIX getuserattr() support from Tom Bertelson
5307    <tbert@abac.com>
5308  - (djm) ReliantUNIX support from Udo Schweigert <ust@cert.siemens.de>
5309  - (djm) NeXT: dirent structures to get scp working from Ben Lindstrom
5310    <mouring@pconline.com>
5311  - (djm) Fix broken inet_ntoa check and ut_user/ut_name confusion, report
5312    from Jim Watt <jimw@peisj.pebio.com>
5313  - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
5314    to compile on more platforms (incl NeXT).
5315  - (djm) Added bsd-inet_aton and configure support for NeXT
5316  - (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
5317  - (djm) OpenBSD CVS updates:
5318    - markus@cvs.openbsd.org  2000/06/26 03:22:29
5319      [authfd.c]
5320      cleanup, less cut&paste
5321    - markus@cvs.openbsd.org  2000/06/26 15:59:19
5322      [servconf.c servconf.h session.c sshd.8 sshd.c]
5323      MaxStartups: limit number of unauthenticated connections, work by
5324      theo and me
5325    - deraadt@cvs.openbsd.org 2000/07/05 14:18:07
5326      [session.c]
5327      use no_x11_forwarding_flag correctly; provos ok
5328    - provos@cvs.openbsd.org  2000/07/05 15:35:57
5329      [sshd.c]
5330      typo
5331    - aaron@cvs.openbsd.org   2000/07/05 22:06:58
5332      [scp.1 ssh-agent.1 ssh-keygen.1 sshd.8]
5333      Insert more missing .El directives. Our troff really should identify
5334      these and spit out a warning.
5335    - todd@cvs.openbsd.org    2000/07/06 21:55:04
5336      [auth-rsa.c auth2.c ssh-keygen.c]
5337      clean code is good code
5338    - deraadt@cvs.openbsd.org 2000/07/07 02:14:29
5339      [serverloop.c]
5340      sense of port forwarding flag test was backwards
5341    - provos@cvs.openbsd.org  2000/07/08 17:17:31
5342      [compat.c readconf.c]
5343      replace strtok with strsep; from David Young <dyoung@onthejob.net>
5344    - deraadt@cvs.openbsd.org 2000/07/08 19:21:15
5345      [auth.h]
5346      KNF
5347    - ho@cvs.openbsd.org      2000/07/08 19:27:33
5348      [compat.c readconf.c]
5349      Better conditions for strsep() ending.
5350    - ho@cvs.openbsd.org      2000/07/10 10:27:05
5351      [readconf.c]
5352      Get the correct message on errors. (niels@ ok)
5353    - ho@cvs.openbsd.org      2000/07/10 10:30:25
5354      [cipher.c kex.c servconf.c]
5355      strtok() --> strsep(). (niels@ ok)
5356  - (djm) Fix problem with debug mode and MaxStartups
5357  - (djm) Don't generate host keys when $(DESTDIR) is set (e.g. during RPM
5358    builds)
5359  - (djm) Add strsep function from OpenBSD libc for systems that lack it
5360
5361 20000709
5362  - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
5363    Kevin Steves <stevesk@sweden.hp.com>
5364  - (djm) Match prototype and function declaration for rresvport_af.
5365    Problem report from Niklas Edmundsson <nikke@ing.umu.se>
5366  - (djm) Missing $(DESTDIR) on host-key target causing problems with RPM
5367    builds. Problem report from Gregory Leblanc <GLeblanc@cu-portland.edu>
5368  - (djm) Replace ut_name with ut_user. Patch from Jim Watt
5369    <jimw@peisj.pebio.com>
5370  - (djm) Fix pam sprintf fix
5371  - (djm) Cleanup entropy collection code a little more. Split initialisation
5372    from seeding, perform intialisation immediatly at start, be careful with
5373    uids. Based on problem report from Jim Watt <jimw@peisj.pebio.com>
5374  - (djm) More NeXT compatibility from Ben Lindstrom <mouring@pconline.com>
5375    Including sigaction() et al. replacements
5376  - (djm) AIX getuserattr() session initialisation from Tom Bertelson
5377    <tbert@abac.com>
5378
5379 20000708
5380  - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
5381    Aaron Hopkins <aaron@die.net>
5382  - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
5383    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5384  - (djm) Fixed undefined variables for OSF SIA. Report from
5385    Baars, Henk <Hendrik.Baars@nl.origin-it.com>
5386  - (djm) Handle EWOULDBLOCK returns from read() and write() in atomicio.c
5387    Fix from Marquess, Steve Mr JMLFDC <Steve.Marquess@DET.AMEDD.ARMY.MIL>
5388  - (djm) Don't use inet_addr.
5389
5390 20000702
5391  - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
5392  - (djm) Stop shadow expiry checking from preventing logins with NIS. Based
5393    on fix from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
5394  - (djm) Use standard OpenSSL functions in auth-skey.c. Patch from
5395    Chris, the Young One <cky@pobox.com>
5396  - (djm) Fix scp progress meter on really wide terminals. Based on patch
5397    from James H. Cloos Jr. <cloos@jhcloos.com>
5398
5399 20000701
5400  - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
5401  - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
5402  - (djm) Replace "/bin/sh" with _PATH_BSHELL. Report from Corinna Vinschen
5403    <vinschen@cygnus.com>
5404  - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
5405  - (djm) Added check for broken snprintf() functions which do not correctly
5406    terminate output string and attempt to use replacement.
5407  - (djm) Released 2.1.1p2
5408
5409 20000628
5410  - (djm) Fixes to lastlog code for Irix
5411  - (djm) Use atomicio in loginrec
5412  - (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
5413    Irix 6.x array sessions, project id's, and system audit trail id.
5414  - (djm) Added 'distprep' make target to simplify packaging
5415  - (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
5416    support. Enable using "USE_SIA=1 ./configure [options]"
5417
5418 20000627
5419  - (djm) Fixes to login code - not setting li->uid, cleanups
5420  - (djm) Formatting
5421
5422 20000626
5423  - (djm) Better fix to aclocal tests from Garrick James <garrick@james.net>
5424  - (djm) Account expiry support from Andreas Steinmetz <ast@domdv.de>
5425  - (djm) Added password expiry checking (no password change support)
5426  - (djm) Make EGD failures non-fatal if OpenSSL's entropy pool is still OK
5427    based on patch from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5428  - (djm) Fix fixed EGD code.
5429  - OpenBSD CVS update
5430    - provos@cvs.openbsd.org  2000/06/25 14:17:58
5431      [channels.c]
5432      correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>
5433
5434 20000623
5435  - (djm) Use sa_family_t in prototype for rresvport_af. Patch from
5436    Svante Signell <svante.signell@telia.com>
5437  - (djm) Autoconf logic to define sa_family_t if it is missing
5438  - OpenBSD CVS Updates:
5439    - markus@cvs.openbsd.org  2000/06/22 10:32:27
5440      [sshd.c]
5441      missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
5442    - djm@cvs.openbsd.org     2000/06/22 17:55:00
5443      [auth-krb4.c key.c radix.c uuencode.c]
5444      Missing CVS idents; ok markus
5445
5446 20000622
5447  - (djm) Automatically generate host key during "make install". Suggested
5448    by Gary E. Miller <gem@rellim.com>
5449  - (djm) Paranoia before kill() system call
5450  - OpenBSD CVS Updates:
5451    - markus@cvs.openbsd.org  2000/06/18 18:50:11
5452      [auth2.c compat.c compat.h sshconnect2.c]
5453      make userauth+pubkey interop with ssh.com-2.2.0
5454    - markus@cvs.openbsd.org  2000/06/18 20:56:17
5455      [dsa.c]
5456      mem leak + be more paranoid in dsa_verify.
5457    - markus@cvs.openbsd.org  2000/06/18 21:29:50
5458      [key.c]
5459      cleanup fingerprinting, less hardcoded sizes
5460    - markus@cvs.openbsd.org  2000/06/19 19:39:45
5461      [atomicio.c auth-options.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
5462      [auth-rsa.c auth-skey.c authfd.c authfd.h authfile.c bufaux.c bufaux.h]
5463      [buffer.c buffer.h canohost.c channels.c channels.h cipher.c cipher.h]
5464      [clientloop.c compat.c compat.h compress.c compress.h crc32.c crc32.h]
5465      [deattack.c dispatch.c dsa.c fingerprint.c fingerprint.h getput.h hmac.c]
5466      [kex.c log-client.c log-server.c login.c match.c mpaux.c mpaux.h nchan.c]
5467      [nchan.h packet.c packet.h pty.c pty.h readconf.c readconf.h readpass.c]
5468      [rsa.c rsa.h scp.c servconf.c servconf.h ssh-add.c ssh-keygen.c ssh.c]
5469      [ssh.h tildexpand.c ttymodes.c ttymodes.h uidswap.c xmalloc.c xmalloc.h]
5470      OpenBSD tag
5471    - markus@cvs.openbsd.org  2000/06/21 10:46:10
5472      sshconnect2.c missing free; nuke old comment
5473
5474 20000620
5475  - (djm) Replace use of '-o' and '-a' logical operators in configure tests
5476    with '||' and '&&'. As suggested by Jim Knoble <jmknoble@jmknoble.cx>
5477    to fix SCO Unixware problem reported by Gary E. Miller <gem@rellim.com>
5478  - (djm) Typo in loginrec.c
5479
5480 20000618
5481  - (djm) Add summary of configure options to end of ./configure run
5482  - (djm) Not all systems define RUSAGE_SELF & RUSAGE_CHILDREN. Report from
5483    Michael Stone <mstone@cs.loyola.edu>
5484  - (djm) rusage is a privileged operation on some Unices (incl.
5485    Solaris 2.5.1). Report from Paul D. Smith <pausmith@nortelnetworks.com>
5486  - (djm) Avoid PAM failures when running without a TTY. Report from
5487    Martin Petrak <petrak@spsknm.schools.sk>
5488  - (djm) Include sys/types.h when including netinet/in.h in configure tests.
5489    Patch from Jun-ichiro itojun Hagino <itojun@iijlab.net>
5490  - (djm) Started merge of Ben Lindstrom's <mouring@pconline.com> NeXT support
5491  - OpenBSD CVS updates:
5492    - deraadt@cvs.openbsd.org 2000/06/17 09:58:46
5493      [channels.c]
5494      everyone says "nix it" (remove protocol 2 debugging message)
5495    - markus@cvs.openbsd.org  2000/06/17 13:24:34
5496      [sshconnect.c]
5497      allow extended server banners
5498    - markus@cvs.openbsd.org  2000/06/17 14:30:10
5499      [sshconnect.c]
5500      missing atomicio, typo
5501    - jakob@cvs.openbsd.org   2000/06/17 16:52:34
5502      [servconf.c servconf.h session.c sshd.8 sshd_config]
5503      add support for ssh v2 subsystems. ok markus@.
5504    - deraadt@cvs.openbsd.org 2000/06/17 18:57:48
5505      [readconf.c servconf.c]
5506      include = in WHITESPACE; markus ok
5507    - markus@cvs.openbsd.org  2000/06/17 19:09:10
5508      [auth2.c]
5509      implement bug compatibility with ssh-2.0.13 pubkey, server side
5510    - markus@cvs.openbsd.org  2000/06/17 21:00:28
5511      [compat.c]
5512      initial support for ssh.com's 2.2.0
5513    - markus@cvs.openbsd.org  2000/06/17 21:16:09
5514      [scp.c]
5515      typo
5516    - markus@cvs.openbsd.org  2000/06/17 22:05:02
5517      [auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
5518      split auth-rsa option parsing into auth-options
5519      add options support to authorized_keys2
5520    - markus@cvs.openbsd.org  2000/06/17 22:42:54
5521      [session.c]
5522      typo
5523
5524 20000613
5525  - (djm) Fixes from Andrew McGill <andrewm@datrix.co.za>:
5526   - Platform define for SCO 3.x which breaks on /dev/ptmx
5527   - Detect and try to fix missing MAXPATHLEN
5528  - (djm) Fix short copy in loginrec.c (based on patch from Phill Camp
5529    <P.S.S.Camp@ukc.ac.uk>
5530
5531 20000612
5532  - (djm) Glob manpages in RPM spec files to catch compressed files
5533  - (djm) Full license in auth-pam.c
5534  - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
5535  - (andre) AIX, lastlog, configure fixes from Tom Bertelson <tbert@abac.com>:
5536   - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is
5537      def'd
5538   - Set AIX to use preformatted manpages
5539
5540 20000610
5541  - (djm) Minor doc tweaks
5542  - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>
5543
5544 20000609
5545  - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
5546    (in favour of utmpx) on Solaris 8
5547
5548 20000606
5549  - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
5550    list of commands (by default). Removed verbose debugging (by default).
5551  - (djm) Increased command entropy estimates and default entropy collection
5552    timeout
5553  - (djm) Remove duplicate headers from loginrec.c
5554  - (djm) Don't add /usr/local/lib to library search path on Irix
5555  - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
5556    <tibbs@math.uh.edu>
5557  - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
5558    <zack@wolery.cumb.org>
5559  - (djm) OpenBSD CVS updates:
5560   - todd@cvs.openbsd.org
5561     [sshconnect2.c]
5562     teach protocol v2 to count login failures properly and also enable an
5563     explanation of why the password prompt comes up again like v1; this is NOT
5564     crypto
5565   - markus@cvs.openbsd.org
5566     [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
5567     xauth_location support; pr 1234
5568     [readconf.c sshconnect2.c]
5569     typo, unused
5570     [session.c]
5571     allow use_login only for login sessions, otherwise remote commands are
5572     execed with uid==0
5573     [sshd.8]
5574     document UseLogin better
5575     [version.h]
5576     OpenSSH 2.1.1
5577     [auth-rsa.c]
5578     fix match_hostname() logic for auth-rsa: deny access if we have a
5579     negative match or no match at all
5580     [channels.c hostfile.c match.c]
5581     don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via
5582     kris@FreeBSD.org
5583
5584 20000606
5585  - (djm) Added --with-cflags, --with-ldflags and --with-libs options to
5586    configure.
5587
5588 20000604
5589  - Configure tweaking for new login code on Irix 5.3
5590  - (andre) login code changes based on djm feedback
5591
5592 20000603
5593  - (andre) New login code
5594     - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c
5595     - Add loginrec.[ch], logintest.c and autoconf code
5596
5597 20000531
5598  - Cleanup of auth.c, login.c and fake-*
5599  - Cleanup of auth-pam.c, save and print "account expired" error messages
5600  - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
5601  - Rewrote bsd-login to use proper utmp API if available. Major cleanup
5602    of fallback DIY code.
5603
5604 20000530
5605  - Define atexit for old Solaris
5606  - Fix buffer overrun in login.c for systems which use syslen in utmpx.
5607    patch from YOSHIFUJI Hideaki <yoshfuji@cerberus.nemoto.ecei.tohoku.ac.jp>
5608  - OpenBSD CVS updates:
5609   - markus@cvs.openbsd.org
5610     [session.c]
5611     make x11-fwd work w/ localhost (xauth add host/unix:11)
5612     [cipher.c compat.c readconf.c servconf.c]
5613     check strtok() != NULL; ok niels@
5614     [key.c]
5615     fix key_read() for uuencoded keys w/o '='
5616     [serverloop.c]
5617     group ssh1 vs. ssh2 in serverloop
5618     [kex.c kex.h myproposal.h sshconnect2.c sshd.c]
5619     split kexinit/kexdh, factor out common code
5620     [readconf.c ssh.1 ssh.c]
5621     forwardagent defaults to no, add ssh -A
5622   - theo@cvs.openbsd.org
5623     [session.c]
5624     just some line shortening
5625  - Released 2.1.0p3
5626
5627 20000520
5628  - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
5629  - Don't touch utmp if USE_UTMPX defined
5630  - SunOS 4.x support from Todd C. Miller <Todd.Miller@courtesan.com>
5631  - SIGCHLD fix for AIX and HPUX from Tom Bertelson <tbert@abac.com>
5632  - HPUX and Configure fixes from Lutz Jaenicke
5633    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5634  - Use mkinstalldirs script to make directories instead of non-portable
5635    "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5636  - Doc cleanup
5637
5638 20000518
5639  - Include Andre Lucas' fixprogs script. Forgot to "cvs add" it yesterday
5640  - OpenBSD CVS updates:
5641   - markus@cvs.openbsd.org
5642     [sshconnect.c]
5643     copy only ai_addrlen bytes; misiek@pld.org.pl
5644     [auth.c]
5645     accept an empty shell in authentication; bug reported by
5646     chris@tinker.ucr.edu
5647     [serverloop.c]
5648     we don't have stderr for interactive terminal sessions (fcntl errors)
5649
5650 20000517
5651  - Fix from Andre Lucas <andre.lucas@dial.pipex.com>
5652   - Fixes command line printing segfaults (spotter: Bladt Norbert)
5653   - Fixes erroneous printing of debug messages to syslog
5654   - Fixes utmp for MacOS X (spotter: Aristedes Maniatis)
5655   - Gives useful error message if PRNG initialisation fails
5656   - Reduced ssh startup delay
5657   - Measures cumulative command time rather than the time between reads
5658     after select()
5659   - 'fixprogs' perl script to eliminate non-working entropy commands, and
5660     optionally run 'ent' to measure command entropy
5661  - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
5662  - Avoid WCOREDUMP complation errors for systems that lack it
5663  - Avoid SIGCHLD warnings from entropy commands
5664  - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
5665  - OpenBSD CVS update:
5666   - markus@cvs.openbsd.org
5667     [ssh.c]
5668     fix usage()
5669     [ssh2.h]
5670     draft-ietf-secsh-architecture-05.txt
5671     [ssh.1]
5672     document ssh -T -N (ssh2 only)
5673     [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c]
5674     enable nonblocking IO for sshd w/ proto 1, too; split out common code
5675     [aux.c]
5676     missing include
5677  - Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
5678   - INSTALL typo and URL fix
5679   - Makefile fix
5680   - Solaris fixes
5681  - Checking for ssize_t and memmove. Based on patch from SAKAI Kiyotaka
5682    <ksakai@kso.netwk.ntt-at.co.jp>
5683  - RSAless operation patch from kevin_oconnor@standardandpoors.com
5684  - Detect OpenSSL seperatly from RSA
5685  - Better test for RSA (more compatible with RSAref). Based on work by
5686    Ed Eden <ede370@stl.rural.usda.gov>
5687
5688 20000513
5689  - Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
5690    <misiek@pld.org.pl>
5691
5692 20000511
5693  - Fix for prng_seed permissions checking from Lutz Jaenicke
5694    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5695  - "make host-key" fix for Irix
5696
5697 20000509
5698  - OpenBSD CVS update
5699   - markus@cvs.openbsd.org
5700     [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c]
5701     [ssh.h sshconnect1.c sshconnect2.c sshd.8]
5702     - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
5703   - hugh@cvs.openbsd.org
5704     [ssh.1]
5705     - zap typo
5706     [ssh-keygen.1]
5707     - One last nit fix. (markus approved)
5708     [sshd.8]
5709     - some markus certified spelling adjustments
5710   - markus@cvs.openbsd.org
5711     [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c]
5712     [sshconnect2.c ]
5713     - bug compat w/ ssh-2.0.13 x11, split out bugs
5714     [nchan.c]
5715     - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@
5716     [ssh-keygen.c]
5717     - handle escapes in real and original key format, ok millert@
5718     [version.h]
5719     - OpenSSH-2.1
5720  - Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
5721  - Doc updates
5722  - Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported
5723    by Andre Lucas <andre.lucas@dial.pipex.com>
5724
5725 20000508
5726  - Makefile and RPM spec fixes
5727  - Generate DSA host keys during "make key" or RPM installs
5728  - OpenBSD CVS update
5729   - markus@cvs.openbsd.org
5730     [clientloop.c sshconnect2.c]
5731     - make x11-fwd interop w/ ssh-2.0.13
5732     [README.openssh2]
5733     - interop w/ SecureFX
5734  - Release 2.0.0beta2
5735
5736  - Configure caching and cleanup patch from Andre Lucas'
5737    <andre.lucas@dial.pipex.com>
5738
5739 20000507
5740  - Remove references to SSLeay.
5741  - Big OpenBSD CVS update
5742   - markus@cvs.openbsd.org
5743     [clientloop.c]
5744     - typo
5745     [session.c]
5746     - update proctitle on pty alloc/dealloc, e.g. w/ windows client
5747     [session.c]
5748     - update proctitle for proto 1, too
5749     [channels.h nchan.c serverloop.c session.c sshd.c]
5750     - use c-style comments
5751   - deraadt@cvs.openbsd.org
5752     [scp.c]
5753     - more atomicio
5754   - markus@cvs.openbsd.org
5755     [channels.c]
5756     - set O_NONBLOCK
5757     [ssh.1]
5758     - update AUTHOR
5759     [readconf.c ssh-keygen.c ssh.h]
5760     - default DSA key file ~/.ssh/id_dsa
5761     [clientloop.c]
5762     - typo, rm verbose debug
5763   - deraadt@cvs.openbsd.org
5764     [ssh-keygen.1]
5765     - document DSA use of ssh-keygen
5766     [sshd.8]
5767     - a start at describing what i understand of the DSA side
5768     [ssh-keygen.1]
5769     - document -X and -x
5770     [ssh-keygen.c]
5771     - simplify usage
5772   - markus@cvs.openbsd.org
5773     [sshd.8]
5774     - there is no rhosts_dsa
5775     [ssh-keygen.1]
5776     - document -y, update -X,-x
5777     [nchan.c]
5778     - fix close for non-open ssh1 channels
5779     [servconf.c servconf.h ssh.h sshd.8 sshd.c ]
5780     - s/DsaKey/HostDSAKey/, document option
5781     [sshconnect2.c]
5782     - respect number_of_password_prompts
5783     [channels.c channels.h servconf.c servconf.h session.c sshd.8]
5784     - GatewayPorts for sshd, ok deraadt@
5785     [ssh-add.1 ssh-agent.1 ssh.1]
5786     - more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
5787     [ssh.1]
5788     - more info on proto 2
5789     [sshd.8]
5790     - sync AUTHOR w/ ssh.1
5791     [key.c key.h sshconnect.c]
5792     - print key type when talking about host keys
5793     [packet.c]
5794     - clear padding in ssh2
5795     [dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
5796     - replace broken uuencode w/ libc b64_ntop
5797     [auth2.c]
5798     - log failure before sending the reply
5799     [key.c radix.c uuencode.c]
5800     - remote trailing comments before calling __b64_pton
5801     [auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
5802     [sshconnect2.c sshd.8]
5803     - add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
5804  - Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
5805
5806 20000502
5807  - OpenBSD CVS update
5808    [channels.c]
5809    - init all fds, close all fds.
5810    [sshconnect2.c]
5811    - check whether file exists before asking for passphrase
5812    [servconf.c servconf.h sshd.8 sshd.c]
5813    - PidFile, pr 1210
5814    [channels.c]
5815    - EINTR
5816    [channels.c]
5817    - unbreak, ok niels@
5818    [sshd.c]
5819    - unlink pid file, ok niels@
5820    [auth2.c]
5821    - Add missing #ifdefs; ok - markus
5822  - Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy
5823    gathering commands from a text file
5824  - Release 2.0.0beta1
5825
5826 20000501
5827  - OpenBSD CVS update
5828    [packet.c]
5829    - send debug messages in SSH2 format
5830    [scp.c]
5831    - fix very rare EAGAIN/EINTR issues; based on work by djm
5832    [packet.c]
5833    - less debug, rm unused
5834    [auth2.c]
5835    - disable kerb,s/key in ssh2
5836    [sshd.8]
5837    - Minor tweaks and typo fixes.
5838    [ssh-keygen.c]
5839    - Put -d into usage and reorder. markus ok.
5840  - Include missing headers for OpenSSL tests. Fix from Phil Karn
5841    <karn@ka9q.ampr.org>
5842  - Fixed __progname symbol collisions reported by Andre Lucas
5843    <andre.lucas@dial.pipex.com>
5844  - Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
5845    <gd@hilb1.medat.de>
5846  - Add some missing ifdefs to auth2.c
5847  - Deprecate perl-tk askpass.
5848  - Irix portability fixes - don't include netinet headers more than once
5849  - Make sure we don't save PRNG seed more than once
5850
5851 20000430
5852  - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
5853  - Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
5854    patch.
5855    - Adds timeout to entropy collection
5856    - Disables slow entropy sources
5857    - Load and save seed file
5858  - Changed entropy seed code to user per-user seeds only (server seed is
5859    saved in root's .ssh directory)
5860  - Use atexit() and fatal cleanups to save seed on exit
5861  - More OpenBSD updates:
5862    [session.c]
5863    - don't call chan_write_failed() if we are not writing
5864    [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
5865    - keysize warnings error() -> log()
5866
5867 20000429
5868  - Merge big update to OpenSSH-2.0 from OpenBSD CVS
5869    [README.openssh2]
5870    - interop w/ F-secure windows client
5871    - sync documentation
5872    - ssh_host_dsa_key not ssh_dsa_key
5873    [auth-rsa.c]
5874    - missing fclose
5875    [auth.c authfile.c compat.c dsa.c dsa.h hostfile.c key.c key.h radix.c]
5876    [readconf.c readconf.h ssh-add.c ssh-keygen.c ssh.c ssh.h sshconnect.c]
5877    [sshd.c uuencode.c uuencode.h authfile.h]
5878    - add DSA pubkey auth and other SSH2 fixes.  use ssh-keygen -[xX]
5879      for trading keys with the real and the original SSH, directly from the
5880      people who invented the SSH protocol.
5881    [auth.c auth.h authfile.c sshconnect.c auth1.c auth2.c sshconnect.h]
5882    [sshconnect1.c sshconnect2.c]
5883    - split auth/sshconnect in one file per protocol version
5884    [sshconnect2.c]
5885    - remove debug
5886    [uuencode.c]
5887    - add trailing =
5888    [version.h]
5889    - OpenSSH-2.0
5890    [ssh-keygen.1 ssh-keygen.c]
5891    - add -R flag: exit code indicates if RSA is alive
5892    [sshd.c]
5893    - remove unused
5894      silent if -Q is specified
5895    [ssh.h]
5896    - host key becomes /etc/ssh_host_dsa_key
5897    [readconf.c servconf.c ]
5898    - ssh/sshd default to proto 1 and 2
5899    [uuencode.c]
5900    - remove debug
5901    [auth2.c ssh-keygen.c sshconnect2.c sshd.c]
5902    - xfree DSA blobs
5903    [auth2.c serverloop.c session.c]
5904    - cleanup logging for sshd/2, respect PasswordAuth no
5905    [sshconnect2.c]
5906    - less debug, respect .ssh/config
5907    [README.openssh2 channels.c channels.h]
5908    - clientloop.c session.c ssh.c
5909    - support for x11-fwding, client+server
5910
5911 20000421
5912  - Merge fix from OpenBSD CVS
5913   [ssh-agent.c]
5914   - Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>
5915     via Debian bug #59926
5916  - Define __progname in session.c if libc doesn't
5917  - Remove indentation on autoconf #include statements to avoid bug in
5918    DEC Tru64 compiler. Report and fix from David Del Piero
5919    <David.DelPiero@qed.qld.gov.au>
5920
5921 20000420
5922  - Make fixpaths work with perl4, patch from Andre Lucas
5923    <andre.lucas@dial.pipex.com>
5924  - Sync with OpenBSD CVS:
5925   [clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
5926   - pid_t
5927   [session.c]
5928   - remove bogus chan_read_failed. this could cause data
5929     corruption (missing data) at end of a SSH2 session.
5930  - Merge fixes from Debian patch from Phil Hands <phil@hands.com>
5931   - Allow setting of PAM service name through CFLAGS (SSHD_PAM_SERVICE)
5932   - Use vhangup to clean up Linux ttys
5933   - Force posix getopt processing on GNU libc systems
5934  - Debian bug #55910 - remove references to ssl(8) manpages
5935  - Debian bug #58031 - ssh_config lies about default cipher
5936
5937 20000419
5938  - OpenBSD CVS updates
5939    [channels.c]
5940    - fix pr 1196, listen_port and port_to_connect interchanged
5941    [scp.c]
5942    - after completion, replace the progress bar ETA counter with a final
5943      elapsed time; my idea, aaron wrote the patch
5944    [ssh_config sshd_config]
5945    - show 'Protocol' as an example, ok markus@
5946    [sshd.c]
5947    - missing xfree()
5948  - Add missing header to bsd-misc.c
5949
5950 20000416
5951  - Reduce diff against OpenBSD source
5952    - All OpenSSL includes are now unconditionally referenced as
5953      openssl/foo.h
5954    - Pick up formatting changes
5955    - Other minor changed (typecasts, etc) that I missed
5956
5957 20000415
5958  - OpenBSD CVS updates.
5959    [ssh.1 ssh.c]
5960    - ssh -2
5961    [auth.c channels.c clientloop.c packet.c packet.h serverloop.c]
5962    [session.c sshconnect.c]
5963    - check payload for (illegal) extra data
5964    [ALL]
5965    whitespace cleanup
5966
5967 20000413
5968  - INSTALL doc updates
5969  - Merged OpenBSD updates to include paths.
5970
5971 20000412
5972  - OpenBSD CVS updates:
5973    - [channels.c]
5974      repair x11-fwd
5975    - [sshconnect.c]
5976      fix passwd prompt for ssh2, less debugging output.
5977    - [clientloop.c compat.c dsa.c kex.c sshd.c]
5978      less debugging output
5979    - [kex.c kex.h sshconnect.c sshd.c]
5980      check for reasonable public DH values
5981    - [README.openssh2 cipher.c cipher.h compat.c compat.h readconf.c]
5982      [readconf.h servconf.c servconf.h ssh.c ssh.h sshconnect.c sshd.c]
5983      add Cipher and Protocol options to ssh/sshd, e.g.:
5984      ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers
5985      arcfour,3des-cbc'
5986    - [sshd.c]
5987      print 1.99 only if server supports both
5988
5989 20000408
5990  - Avoid some compiler warnings in fake-get*.c
5991  - Add IPTOS macros for systems which lack them
5992  - Only set define entropy collection macros if they are found
5993  - More large OpenBSD CVS updates:
5994    - [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
5995      [session.h ssh.h sshd.c README.openssh2]
5996      ssh2 server side, see README.openssh2; enable with 'sshd -2'
5997    - [channels.c]
5998      no adjust after close
5999    - [sshd.c compat.c ]
6000      interop w/ latest ssh.com windows client.
6001
6002 20000406
6003  - OpenBSD CVS update:
6004    - [channels.c]
6005      close efd on eof
6006    - [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
6007      ssh2 client implementation, interops w/ ssh.com and lsh servers.
6008    - [sshconnect.c]
6009      missing free.
6010    - [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
6011      remove unused argument, split cipher_mask()
6012    - [clientloop.c]
6013      re-order: group ssh1 vs. ssh2
6014  - Make Redhat spec require openssl >= 0.9.5a
6015
6016 20000404
6017  - Add tests for RAND_add function when searching for OpenSSL
6018  - OpenBSD CVS update:
6019    - [packet.h packet.c]
6020      ssh2 packet format
6021    - [packet.h packet.c nchan2.ms nchan.h compat.h compat.c]
6022      [channels.h channels.c]
6023      channel layer support for ssh2
6024    - [kex.h kex.c hmac.h hmac.c dsa.c dsa.h]
6025      DSA, keyexchange, algorithm agreement for ssh2
6026  - Generate manpages before make install not at the end of make all
6027  - Don't seed the rng quite so often
6028  - Always reseed rng when requested
6029
6030 20000403
6031  - Wrote entropy collection routines for systems that lack /dev/random
6032    and EGD
6033  - Disable tests and typedefs for 64 bit types. They are currently unused.
6034
6035 20000401
6036  - Big OpenBSD CVS update (mainly beginnings of SSH2 infrastructure)
6037    - [auth.c session.c sshd.c auth.h]
6038      split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
6039    - [bufaux.c bufaux.h]
6040      support ssh2 bignums
6041    - [channels.c channels.h clientloop.c sshd.c nchan.c nchan.h packet.c]
6042      [readconf.c ssh.c ssh.h serverloop.c]
6043      replace big switch() with function tables (prepare for ssh2)
6044    - [ssh2.h]
6045      ssh2 message type codes
6046    - [sshd.8]
6047      reorder Xr to avoid cutting
6048    - [serverloop.c]
6049      close(fdin) if fdin != fdout, shutdown otherwise, ok theo@
6050    - [channels.c]
6051      missing close
6052      allow bigger packets
6053    - [cipher.c cipher.h]
6054      support ssh2 ciphers
6055    - [compress.c]
6056      cleanup, less code
6057    - [dispatch.c dispatch.h]
6058      function tables for different message types
6059    - [log-server.c]
6060      do not log() if debuggin to stderr
6061      rename a cpp symbol, to avoid param.h collision
6062    - [mpaux.c]
6063      KNF
6064    - [nchan.c]
6065      sync w/ channels.c
6066
6067 20000326
6068  - Better tests for OpenSSL w/ RSAref
6069  - Added replacement setenv() function from OpenBSD libc. Suggested by
6070    Ben Lindstrom <mouring@pconline.com>
6071  - OpenBSD CVS update
6072    - [auth-krb4.c]
6073      -Wall
6074    - [auth-rh-rsa.c auth-rsa.c hostfile.c hostfile.h key.c key.h match.c]
6075      [match.h ssh.c ssh.h sshconnect.c sshd.c]
6076      initial support for DSA keys. ok deraadt@, niels@
6077    - [cipher.c cipher.h]
6078      remove unused cipher_attack_detected code
6079    - [scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
6080      Fix some formatting problems I missed before.
6081    - [ssh.1 sshd.8]
6082      fix spelling errors, From: FreeBSD
6083    - [ssh.c]
6084      switch to raw mode only if he _get_ a pty (not if we _want_ a pty).
6085
6086 20000324
6087  - Released 1.2.3
6088
6089 20000317
6090  - Clarified --with-default-path option.
6091  - Added -blibpath handling for AIX to work around stupid runtime linking.
6092    Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
6093    <jmknoble@jmknoble.cx>
6094  - Checks for 64 bit int types. Problem report from Mats Fredholm
6095    <matsf@init.se>
6096  - OpenBSD CVS updates:
6097    - [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c]
6098      [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c]
6099      [sshd.c]
6100      pedantic: signed vs. unsigned, void*-arithm, etc
6101    - [ssh.1 sshd.8]
6102      Various cleanups and standardizations.
6103  - Runtime error fix for HPUX from Otmar Stahl
6104    <O.Stahl@lsw.uni-heidelberg.de>
6105
6106 20000316
6107  - Fixed configure not passing LDFLAGS to Solaris. Report from David G.
6108    Hesprich <dghespri@sprintparanet.com>
6109  - Propogate LD through to Makefile
6110  - Doc cleanups
6111  - Added blurb about "scp: command not found" errors to UPGRADING
6112
6113 20000315
6114  - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list
6115    problems with gcc/Solaris.
6116  - Don't free argument to putenv() after use (in setenv() replacement).
6117    Report from Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp>
6118  - Created contrib/ subdirectory. Included helpers from Phil Hands'
6119    Debian package, README file and chroot patch from Ricardo Cerqueira
6120    <rmcc@clix.pt>
6121  - Moved gnome-ssh-askpass.c to contrib directory and removed config
6122    option.
6123  - Slight cleanup to doc files
6124  - Configure fix from Bratislav ILICH <bilic@zepter.ru>
6125
6126 20000314
6127  - Include macro for IN6_IS_ADDR_V4MAPPED. Report from
6128    peter@frontierflying.com
6129  - Include /usr/local/include and /usr/local/lib for systems that don't
6130    do it themselves
6131  - -R/usr/local/lib for Solaris
6132  - Fix RSAref detection
6133  - Fix IN6_IS_ADDR_V4MAPPED macro
6134
6135 20000311
6136  - Detect RSAref
6137  - OpenBSD CVS change
6138    [sshd.c]
6139     - disallow guessing of root password
6140  - More configure fixes
6141  - IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
6142
6143 20000309
6144  - OpenBSD CVS updates to v1.2.3
6145    [ssh.h atomicio.c]
6146     - int atomicio -> ssize_t (for alpha). ok deraadt@
6147    [auth-rsa.c]
6148     - delay MD5 computation until client sends response, free() early, cleanup.
6149    [cipher.c]
6150     - void* -> unsigned char*, ok niels@
6151    [hostfile.c]
6152     - remove unused variable 'len'. fix comments.
6153     - remove unused variable
6154    [log-client.c log-server.c]
6155     - rename a cpp symbol, to avoid param.h collision
6156    [packet.c]
6157     - missing xfree()
6158     - getsockname() requires initialized tolen; andy@guildsoftware.com
6159     - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
6160    from Holger.Trapp@Informatik.TU-Chemnitz.DE
6161    [pty.c pty.h]
6162     - register cleanup for pty earlier. move code for pty-owner handling to
6163       pty.c ok provos@, dugsong@
6164    [readconf.c]
6165     - turn off x11-fwd for the client, too.
6166    [rsa.c]
6167     - PKCS#1 padding
6168    [scp.c]
6169     - allow '.' in usernames; from jedgar@fxp.org
6170    [servconf.c]
6171     - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
6172     - sync with sshd_config
6173    [ssh-keygen.c]
6174     - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
6175    [ssh.1]
6176     - Change invalid 'CHAT' loglevel to 'VERBOSE'
6177    [ssh.c]
6178     - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
6179     - turn off x11-fwd for the client, too.
6180    [sshconnect.c]
6181     - missing xfree()
6182     - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
6183     - read error vs. "Connection closed by remote host"
6184    [sshd.8]
6185     - ie. -> i.e.,
6186     - do not link to a commercial page..
6187     - sync with sshd_config
6188    [sshd.c]
6189     - no need for poll.h; from bright@wintelcom.net
6190     - log with level log() not fatal() if peer behaves badly.
6191     - don't panic if client behaves strange. ok deraadt@
6192     - make no-port-forwarding for RSA keys deny both -L and -R style fwding
6193     - delay close() of pty until the pty has been chowned back to root
6194     - oops, fix comment, too.
6195     - missing xfree()
6196     - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
6197       (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
6198     - register cleanup for pty earlier. move code for pty-owner handling to
6199       pty.c ok provos@, dugsong@
6200     - create x11 cookie file
6201     - fix pr 1113, fclose() -> pclose(), todo: remote popen()
6202     - version 1.2.3
6203  - Cleaned up
6204  - Removed warning workaround for Linux and devpts filesystems (no longer
6205    required after OpenBSD updates)
6206
6207 20000308
6208  - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
6209
6210 20000307
6211  - Released 1.2.2p1
6212
6213 20000305
6214  - Fix DEC compile fix
6215  - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
6216  - Check for getpagesize in libucb.a if not found in libc. Fix for old
6217    Solaris from Andre Lucas <andre.lucas@dial.pipex.com>
6218  - Check for libwrap if --with-tcp-wrappers option specified. Suggestion
6219    Mate Wierdl <mw@moni.msci.memphis.edu>
6220
6221 20000303
6222  - Added "make host-key" target, Suggestion from Dominik Brettnacher
6223  <domi@saargate.de>
6224  - Don't permanently fail on bind() if getaddrinfo has more choices left for
6225    us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
6226    Miskiewicz <misiek@pld.org.pl>
6227  - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
6228  - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
6229
6230 20000302
6231  - Big cleanup of autoconf code
6232    - Rearranged to be a little more logical
6233    - Added -R option for Solaris
6234    - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program
6235      to detect library and header location _and_ ensure library has proper
6236      RSA support built in (this is a problem with OpenSSL 0.9.5).
6237  - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de
6238  - Avoid warning message with Unix98 ptys
6239  - Warning was valid - possible race condition on PTYs. Avoided using
6240    platform-specific code.
6241  - Document some common problems
6242  - Allow root access to any key. Patch from
6243    markus.friedl@informatik.uni-erlangen.de
6244
6245 20000207
6246  - Removed SOCKS code. Will support through a ProxyCommand.
6247
6248 20000203
6249  - Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
6250  - Add --with-ssl-dir option
6251
6252 20000202
6253  - Fix lastlog code for directory based lastlogs. Fix from Josh Durham
6254    <jmd@aoe.vt.edu>
6255  - Documentation fixes from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
6256  - Added URLs to Japanese translations of documents by HARUYAMA Seigo
6257    <haruyama@nt.phys.s.u-tokyo.ac.jp>
6258
6259 20000201
6260  - Use socket pairs by default (instead of pipes). Prevents race condition
6261    on several (buggy) OSs. Report and fix from tridge@linuxcare.com
6262
6263 20000127
6264  - Seed OpenSSL's random number generator before generating RSA keypairs
6265  - Split random collector into seperate file
6266  - Compile fix from Andre Lucas <andre.lucas@dial.pipex.com>
6267
6268 20000126
6269  - Released 1.2.2 stable
6270
6271  - NeXT keeps it lastlog in /usr/adm. Report from
6272    mouring@newton.pconline.com
6273  - Added note in UPGRADING re interop with commercial SSH using idea.
6274    Report from Jim Knoble <jmknoble@jmknoble.cx>
6275  - Fix linking order for Kerberos/AFS. Fix from Holget Trapp
6276    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6277
6278 20000125
6279  - Fix NULL pointer dereference in login.c. Fix from Andre Lucas
6280    <andre.lucas@dial.pipex.com>
6281  - Reorder PAM initialisation so it does not mess up lastlog. Reported
6282    by Andre Lucas <andre.lucas@dial.pipex.com>
6283  - Use preformatted manpages on SCO, report from Gary E. Miller
6284    <gem@rellim.com>
6285  - New URL for x11-ssh-askpass.
6286  - Fixpaths was missing /etc/ssh_known_hosts. Report from Jim Knoble
6287    <jmknoble@jmknoble.cx>
6288  - Added 'DESTDIR' option to Makefile to ease package building. Patch from
6289    Jim Knoble <jmknoble@jmknoble.cx>
6290  - Updated RPM spec files to use DESTDIR
6291
6292 20000124
6293  - Pick up version 1.2.2 from OpenBSD CVS (no changes, just version number
6294    increment)
6295
6296 20000123
6297  - OpenBSD CVS:
6298    - [packet.c]
6299      getsockname() requires initialized tolen; andy@guildsoftware.com
6300  - AIX patch from Matt Richards <v2matt@btv.ibm.com> and David Rankin
6301    <drankin@bohemians.lexington.ky.us>
6302  - Fix lastlog support, patch from Andre Lucas <andre.lucas@dial.pipex.com>
6303
6304 20000122
6305  - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
6306    <bent@clark.net>
6307  - Merge preformatted manpage patch from Andre Lucas
6308    <andre.lucas@dial.pipex.com>
6309  - Make IPv4 use the default in RPM packages
6310  - Irix uses preformatted manpages
6311  - Missing htons() in bsd-bindresvport.c, fix from Holger Trapp
6312    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6313  - OpenBSD CVS updates:
6314    - [packet.c]
6315      use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
6316      from Holger.Trapp@Informatik.TU-Chemnitz.DE
6317    - [sshd.c]
6318      log with level log() not fatal() if peer behaves badly.
6319    - [readpass.c]
6320      instead of blocking SIGINT, catch it ourselves, so that we can clean
6321      the tty modes up and kill ourselves -- instead of our process group
6322      leader (scp, cvs, ...) going away and leaving us in noecho mode.
6323      people with cbreak shells never even noticed..
6324    - [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
6325      ie. -> i.e.,
6326
6327 20000120
6328  - Don't use getaddrinfo on AIX
6329  - Update to latest OpenBSD CVS:
6330    - [auth-rsa.c]
6331      - fix user/1056, sshd keeps restrictions; dbt@meat.net
6332    - [sshconnect.c]
6333      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
6334      - destroy keys earlier
6335      - split key exchange (kex) and user authentication (user-auth),
6336        ok: provos@
6337    - [sshd.c]
6338      - no need for poll.h; from bright@wintelcom.net
6339      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
6340      - split key exchange (kex) and user authentication (user-auth),
6341        ok: provos@
6342  - Big manpage and config file cleanup from Andre Lucas
6343    <andre.lucas@dial.pipex.com>
6344    - Re-added latest (unmodified) OpenBSD manpages
6345  - Doc updates
6346  - NetBSD patch from David Rankin <drankin@bohemians.lexington.ky.us> and
6347    Christos Zoulas <christos@netbsd.org>
6348
6349 20000119
6350  - SCO compile fixes from Gary E. Miller <gem@rellim.com>
6351  - Compile fix from Darren_Hall@progressive.com
6352  - Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
6353    addresses using getaddrinfo(). Added a configure switch to make the
6354    default lookup mode AF_INET
6355
6356 20000118
6357  - Fixed --with-pid-dir option
6358  - Makefile fix from Gary E. Miller <gem@rellim.com>
6359  - Compile fix for HPUX and Solaris from Andre Lucas
6360    <andre.lucas@dial.pipex.com>
6361
6362 20000117
6363  - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
6364    port, ignore EINVAL errors (Linux) when searching for free port.
6365  - Revert __snprintf -> snprintf aliasing. Apparently Solaris
6366    __snprintf isn't. Report from Theo de Raadt <theo@cvs.openbsd.org>
6367  - Document location of Redhat PAM file in INSTALL.
6368  - Fixed X11 forwarding bug on Linux. libc advertises AF_INET6
6369    INADDR_ANY_INIT addresses via getaddrinfo, but may not be able to
6370    deliver (no IPv6 kernel support)
6371  - Released 1.2.1pre27
6372
6373  - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
6374  - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
6375    <jhuuskon@hytti.uku.fi>
6376  - Fix hang on logout if processes are still using the pty. Needs
6377    further testing.
6378  - Patch from Christos Zoulas <christos@zoulas.com>
6379    - Try $prefix first when looking for OpenSSL.
6380    - Include sys/types.h when including sys/socket.h in test programs
6381  - Substitute PID directory in sshd.8. Suggestion from Andrew
6382    Stribblehill <a.d.stribblehill@durham.ac.uk>
6383
6384 20000116
6385  - Renamed --with-xauth-path to --with-xauth
6386  - Added --with-pid-dir option
6387  - Released 1.2.1pre26
6388
6389  - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
6390  - Fixed broken bugfix for /dev/ptmx on Linux systems which lack
6391    openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
6392
6393 20000115
6394  - Add --with-xauth-path configure directive and explicit test for
6395    /usr/openwin/bin/xauth for Solaris systems. Report from Anders
6396    Nordby <anders@fix.no>
6397  - Fix incorrect detection of /dev/ptmx on Linux systems that lack
6398    openpty. Report from John Seifarth <john@waw.be>
6399  - Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
6400    sys/types.h. Fixes problems on SCO, report from Gary E. Miller
6401    <gem@rellim.com>
6402  - Use __snprintf and __vnsprintf if they are found where snprintf and
6403    vnsprintf are lacking. Suggested by Ben Taylor <bent@shell.clark.net>
6404    and others.
6405
6406 20000114
6407  - Merged OpenBSD IPv6 patch:
6408    - [sshd.c sshd.8 sshconnect.c ssh.h ssh.c servconf.h servconf.c scp.1]
6409      [scp.c packet.h packet.c login.c log.c canohost.c channels.c]
6410      [hostfile.c sshd_config]
6411      ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new
6412      features: sshd allows multiple ListenAddress and Port options. note
6413      that libwrap is not IPv6-ready. (based on patches from
6414      fujiwara@rcac.tdi.co.jp)
6415    - [ssh.c canohost.c]
6416      more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo,
6417      from itojun@
6418    - [channels.c]
6419      listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)
6420    - [packet.h]
6421      allow auth-kerberos for IPv4 only
6422    - [scp.1 sshd.8 servconf.h scp.c]
6423      document -4, -6, and 'ssh -L 2022/::1/22'
6424    - [ssh.c]
6425      'ssh @host' is illegal (null user name), from
6426      karsten@gedankenpolizei.de
6427    - [sshconnect.c]
6428      better error message
6429    - [sshd.c]
6430      allow auth-kerberos for IPv4 only
6431  - Big IPv6 merge:
6432    - Cleanup overrun in sockaddr copying on RHL 6.1
6433    - Replacements for getaddrinfo, getnameinfo, etc based on versions
6434      from patch from KIKUCHI Takahiro <kick@kyoto.wide.ad.jp>
6435    - Replacement for missing structures on systems that lack IPv6
6436    - record_login needed to know about AF_INET6 addresses
6437    - Borrowed more code from OpenBSD: rresvport_af and requisites
6438
6439 20000110
6440  - Fixes to auth-skey to enable it to use the standard OpenSSL libraries
6441
6442 20000107
6443  - New config.sub and config.guess to fix problems on SCO. Supplied
6444    by Gary E. Miller <gem@rellim.com>
6445  - SCO build fix from Gary E. Miller <gem@rellim.com>
6446  - Released 1.2.1pre25
6447
6448 20000106
6449  - Documentation update & cleanup
6450  - Better KrbIV / AFS detection, based on patch from:
6451    Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6452
6453 20000105
6454  - Fixed annoying DES corruption problem. libcrypt has been
6455    overriding symbols in libcrypto. Removed libcrypt and crypt.h
6456    altogether (libcrypto includes its own crypt(1) replacement)
6457  - Added platform-specific rules for Irix 6.x. Included warning that
6458    they are untested.
6459
6460 20000103
6461  - Add explicit make rules for files proccessed by fixpaths.
6462  - Fix "make install" in RPM spec files. Report from Tenkou N. Hattori
6463    <tnh@kondara.org>
6464  - Removed "nullok" directive from default PAM configuration files.
6465    Added information on enabling EmptyPasswords on openssh+PAM in
6466    UPGRADING file.
6467  - OpenBSD CVS updates
6468    - [ssh-agent.c]
6469      cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and
6470      dgaudet@arctic.org
6471    - [sshconnect.c]
6472      compare correct version for 1.3 compat mode
6473
6474 20000102
6475  - Prevent multiple inclusion of config.h and defines.h. Suggested
6476    by Andre Lucas <andre.lucas@dial.pipex.com>
6477  - Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
6478    <dgaudet@arctic.org>
6479
6480 19991231
6481  - Fix password support on systems with a mixture of shadowed and
6482    non-shadowed passwords (e.g. NIS). Report and fix from
6483    HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
6484  - Fix broken autoconf typedef detection. Report from Marc G.
6485    Fournier <marc.fournier@acadiau.ca>
6486  - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
6487    <Franz.Sirl-kernel@lauterbach.com>
6488  - Prevent typedefs from being compiled more than once. Report from
6489    Marc G. Fournier <marc.fournier@acadiau.ca>
6490  - Fill in ut_utaddr utmp field. Report from Benjamin Charron
6491    <iretd@bigfoot.com>
6492  - Really fix broken default path. Fix from Jim Knoble
6493    <jmknoble@jmknoble.cx>
6494  - Remove test for quad_t. No longer needed.
6495  - Released 1.2.1pre24
6496
6497  - Added support for directory-based lastlogs
6498  - Really fix typedefs, patch from Ben Taylor <bent@clark.net>
6499
6500 19991230
6501  - OpenBSD CVS updates:
6502    - [auth-passwd.c]
6503      check for NULL 1st
6504  - Removed most of the pam code into its own file auth-pam.[ch]. This
6505    cleaned up sshd.c up significantly.
6506  - PAM authentication was incorrectly interpreting
6507    "PermitRootLogin without-password". Report from Matthias Andree
6508    <ma@dt.e-technik.uni-dortmund.de
6509  - Several other cleanups
6510  - Merged Dante SOCKS support patch from David Rankin
6511   <drankin@bohemians.lexington.ky.us>
6512  - Updated documentation with ./configure options
6513  - Released 1.2.1pre23
6514
6515 19991229
6516  - Applied another NetBSD portability patch from David Rankin
6517    <drankin@bohemians.lexington.ky.us>
6518  - Fix --with-default-path option.
6519  - Autodetect perl, patch from David Rankin
6520    <drankin@bohemians.lexington.ky.us>
6521  - Print whether OpenSSH was compiled with RSARef, patch from
6522    Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
6523  - Calls to pam_setcred, patch from Nalin Dahyabhai
6524    <nalin@thermo.stat.ncsu.edu>
6525  - Detect missing size_t and typedef it.
6526  - Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
6527  - Minor Makefile cleaning
6528
6529 19991228
6530  - Replacement for getpagesize() for systems which lack it
6531  - NetBSD login.c compile fix from David Rankin
6532   <drankin@bohemians.lexington.ky.us>
6533  - Fully set ut_tv if present in utmp or utmpx
6534  - Portability fixes for Irix 5.3 (now compiles OK!)
6535  - autoconf and other misc cleanups
6536  - Merged AIX patch from Darren Hall <dhall@virage.org>
6537  - Cleaned up defines.h
6538  - Released 1.2.1pre22
6539
6540 19991227
6541  - Automatically correct paths in manpages and configuration files. Patch
6542    and script from Andre Lucas <andre.lucas@dial.pipex.com>
6543  - Removed credits from README to CREDITS file, updated.
6544  - Added --with-default-path to specify custom path for server
6545  - Removed #ifdef trickery from acconfig.h into defines.h
6546  - PAM bugfix. PermitEmptyPassword was being ignored.
6547  - Fixed PAM config files to allow empty passwords if server does.
6548  - Explained spurious PAM auth warning workaround in UPGRADING
6549  - Use last few chars of tty line as ut_id
6550  - New SuSE RPM spec file from Chris Saia <csaia@wtower.com>
6551  - OpenBSD CVS updates:
6552    - [packet.h auth-rhosts.c]
6553      check format string for packet_disconnect and packet_send_debug, too
6554    - [channels.c]
6555      use packet_get_maxsize for channels. consistence.
6556
6557 19991226
6558  - Enabled utmpx support by default for Solaris
6559  - Cleanup sshd.c PAM a little more
6560  - Revised RPM package to include Jim Knoble's <jmknoble@jmknoble.cx>
6561    X11 ssh-askpass program.
6562  - Disable logging of PAM success and failures, PAM is verbose enough.
6563    Unfortunatly there is currently no way to disable auth failure
6564    messages. Mention this in UPGRADING file and sent message to PAM
6565    developers
6566  - OpenBSD CVS update:
6567    - [ssh-keygen.1 ssh.1]
6568      remove ref to .ssh/random_seed, mention .ssh/environment in
6569      .Sh FILES, too
6570  - Released 1.2.1pre21
6571  - Fixed implicit '.' in default path, report from Jim Knoble
6572    <jmknoble@jmknoble.cx>
6573  - Redhat RPM spec fixes from Jim Knoble <jmknoble@jmknoble.cx>
6574
6575 19991225
6576  - More fixes from Andre Lucas <andre.lucas@dial.pipex.com>
6577  - Cleanup of auth-passwd.c for shadow and MD5 passwords
6578  - Cleanup and bugfix of PAM authentication code
6579  - Released 1.2.1pre20
6580
6581  - Merged fixes from Ben Taylor <bent@clark.net>
6582  - Fixed configure support for PAM. Reported by Naz <96na@eng.cam.ac.uk>
6583  - Disabled logging of PAM password authentication failures when password
6584    is empty. (e.g start of authentication loop). Reported by Naz
6585    <96na@eng.cam.ac.uk>)
6586
6587 19991223
6588  - Merged later HPUX patch from Andre Lucas
6589    <andre.lucas@dial.pipex.com>
6590  - Above patch included better utmpx support from Ben Taylor
6591    <bent@clark.net>
6592
6593 19991222
6594  - Fix undefined fd_set type in ssh.h from Povl H. Pedersen
6595    <pope@netguide.dk>
6596  - Fix login.c breakage on systems which lack ut_host in struct
6597    utmp. Reported by Willard Dawson <willard.dawson@sbs.siemens.com>
6598
6599 19991221
6600  - Integration of large HPUX patch from Andre Lucas
6601    <andre.lucas@dial.pipex.com>. Integrating it had a few other
6602    benefits:
6603    - Ability to disable shadow passwords at configure time
6604    - Ability to disable lastlog support at configure time
6605    - Support for IP address in $DISPLAY
6606  - OpenBSD CVS update:
6607    - [sshconnect.c]
6608    say "REMOTE HOST IDENTIFICATION HAS CHANGED"
6609  - Fix DISABLE_SHADOW support
6610  - Allow MD5 passwords even if shadow passwords are disabled
6611  - Release 1.2.1pre19
6612
6613 19991218
6614  - Redhat init script patch from Chun-Chung Chen
6615    <cjj@u.washington.edu>
6616  - Avoid breakage on systems without IPv6 headers
6617
6618 19991216
6619  - Makefile changes for Solaris from Peter Kocks
6620    <peter.kocks@baygate.com>
6621  - Minor updates to docs
6622  - Merged OpenBSD CVS changes:
6623    - [authfd.c ssh-agent.c]
6624      keysize warnings talk about identity files
6625    - [packet.c]
6626      "Connection closed by x.x.x.x": fatal() -> log()
6627  - Correctly handle empty passwords in shadow file. Patch from:
6628    "Chris, the Young One" <cky@pobox.com>
6629  - Released 1.2.1pre18
6630
6631 19991215
6632  - Integrated patchs from Juergen Keil <jk@tools.de>
6633    - Avoid void* pointer arithmatic
6634    - Use LDFLAGS correctly
6635    - Fix SIGIO error in scp
6636    - Simplify status line printing in scp
6637  - Added better test for inline functions compiler support from
6638    Darren_Hall@progressive.com
6639
6640 19991214
6641  - OpenBSD CVS Changes
6642    - [canohost.c]
6643      fix get_remote_port() and friends for sshd -i;
6644      Holger.Trapp@Informatik.TU-Chemnitz.DE
6645    - [mpaux.c]
6646      make code simpler. no need for memcpy. niels@ ok
6647    - [pty.c]
6648      namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
6649      fix proto; markus
6650    - [ssh.1]
6651       typo; mark.baushke@solipsa.com
6652    - [channels.c ssh.c ssh.h sshd.c]
6653      type conflict for 'extern Type *options' in channels.c; dot@dotat.at
6654    - [sshconnect.c]
6655      move checking of hostkey into own function.
6656    - [version.h]
6657      OpenSSH-1.2.1
6658  - Clean up broken includes in pty.c
6659  - Some older systems don't have poll.h, they use sys/poll.h instead
6660  - Doc updates
6661
6662 19991211
6663  - Fix compilation on systems with AFS. Reported by
6664    aloomis@glue.umd.edu
6665  - Fix installation on Solaris. Reported by
6666    Gordon Rowell <gordonr@gormand.com.au>
6667  - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
6668    patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
6669  - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
6670  - Compile fix from David Agraz <dagraz@jahoopa.com>
6671  - Avoid compiler warning in bsd-snprintf.c
6672  - Added pam_limits.so to default PAM config. Suggested by
6673    Jim Knoble <jmknoble@jmknoble.cx>
6674
6675 19991209
6676  - Import of patch from Ben Taylor <bent@clark.net>:
6677    - Improved PAM support
6678    - "uninstall" rule for Makefile
6679    - utmpx support
6680    - Should fix PAM problems on Solaris
6681  - OpenBSD CVS updates:
6682    - [readpass.c]
6683      avoid stdio; based on work by markus, millert, and I
6684    - [sshd.c]
6685      make sure the client selects a supported cipher
6686    - [sshd.c]
6687      fix sighup handling.  accept would just restart and daemon handled
6688      sighup only after the next connection was accepted. use poll on
6689      listen sock now.
6690    - [sshd.c]
6691      make that a fatal
6692  - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
6693    to fix libwrap support on NetBSD
6694  - Released 1.2pre17
6695
6696 19991208
6697  - Compile fix for Solaris with /dev/ptmx from
6698    David Agraz <dagraz@jahoopa.com>
6699
6700 19991207
6701  - sshd Redhat init script patch from Jim Knoble <jmknoble@jmknoble.cx>
6702    fixes compatability with 4.x and 5.x
6703  - Fixed default SSH_ASKPASS
6704  - Fix PAM account and session being called multiple times. Problem
6705    reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
6706  - Merged more OpenBSD changes:
6707    - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
6708      move atomicio into it's own file.  wrap all socket write()s which
6709      were doing write(sock, buf, len) != len, with atomicio() calls.
6710    - [auth-skey.c]
6711      fd leak
6712    - [authfile.c]
6713      properly name fd variable
6714    - [channels.c]
6715      display great hatred towards strcpy
6716    - [pty.c pty.h sshd.c]
6717      use openpty() if it exists (it does on BSD4_4)
6718    - [tildexpand.c]
6719      check for ~ expansion past MAXPATHLEN
6720  - Modified helper.c to use new atomicio function.
6721  - Reformat Makefile a little
6722  - Moved RC4 routines from rc4.[ch] into helper.c
6723  - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
6724  - Updated SuSE spec from Chris Saia <csaia@wtower.com>
6725  - Tweaked Redhat spec
6726  - Clean up bad imports of a few files (forgot -kb)
6727  - Released 1.2pre16
6728
6729 19991204
6730  - Small cleanup of PAM code in sshd.c
6731  - Merged OpenBSD CVS changes:
6732    - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
6733      move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
6734    - [auth-rsa.c]
6735      warn only about mismatch if key is _used_
6736      warn about keysize-mismatch with log() not error()
6737      channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
6738      ports are u_short
6739    - [hostfile.c]
6740      indent, shorter warning
6741    - [nchan.c]
6742      use error() for internal errors
6743    - [packet.c]
6744      set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
6745      serverloop.c
6746      indent
6747    - [ssh-add.1 ssh-add.c ssh.h]
6748      document $SSH_ASKPASS, reasonable default
6749    - [ssh.1]
6750      CheckHostIP is not available for connects via proxy command
6751    - [sshconnect.c]
6752      typo
6753      easier to read client code for passwd and skey auth
6754      turn of checkhostip for proxy connects, since we don't know the remote ip
6755
6756 19991126
6757  - Add definition for __P()
6758  - Added [v]snprintf() replacement for systems that lack it
6759
6760 19991125
6761  - More reformatting merged from OpenBSD CVS
6762  - Merged OpenBSD CVS changes:
6763    - [channels.c]
6764      fix packet_integrity_check() for !have_hostname_in_open.
6765      report from mrwizard@psu.edu via djm@ibs.com.au
6766    - [channels.c]
6767      set SO_REUSEADDR and SO_LINGER for forwarded ports.
6768      chip@valinux.com via damien@ibs.com.au
6769    - [nchan.c]
6770      it's not an error() if shutdown_write failes in nchan.
6771    - [readconf.c]
6772      remove dead #ifdef-0-code
6773    - [readconf.c servconf.c]
6774      strcasecmp instead of tolower
6775    - [scp.c]
6776      progress meter overflow fix from damien@ibs.com.au
6777    - [ssh-add.1 ssh-add.c]
6778      SSH_ASKPASS support
6779    - [ssh.1 ssh.c]
6780      postpone fork_after_authentication until command execution,
6781      request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
6782      plus: use daemon() for backgrounding
6783  - Added BSD compatible install program and autoconf test, thanks to
6784    Niels Kristian Bech Jensen <nkbj@image.dk>
6785  - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
6786  - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
6787  - Release 1.2pre15
6788
6789 19991124
6790  - Merged very large OpenBSD source code reformat
6791  - OpenBSD CVS updates
6792    - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
6793      [ssh.h sshd.8 sshd.c]
6794      syslog changes:
6795      * Unified Logmessage for all auth-types, for success and for failed
6796      * Standard connections get only ONE line in the LOG when level==LOG:
6797        Auth-attempts are logged only, if authentication is:
6798           a) successfull or
6799           b) with passwd or
6800           c) we had more than AUTH_FAIL_LOG failues
6801      * many log() became verbose()
6802      * old behaviour with level=VERBOSE
6803    - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
6804      tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
6805      messages. allows use of s/key in windows (ttssh, securecrt) and
6806      ssh-1.2.27 clients without 'ssh -v', ok: niels@
6807    - [sshd.8]
6808      -V, for fallback to openssh in SSH2 compatibility mode
6809    - [sshd.c]
6810      fix sigchld race; cjc5@po.cwru.edu
6811
6812 19991123
6813  - Added SuSE package files from Chris Saia <csaia@wtower.com>
6814  - Restructured package-related files under packages/*
6815  - Added generic PAM config
6816  - Numerous little Solaris fixes
6817  - Add recommendation to use GNU make to INSTALL document
6818
6819 19991122
6820  - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
6821  - OpenBSD CVS Changes
6822    - [ssh-keygen.c]
6823      don't create ~/.ssh only if the user wants to store the private
6824      key there. show fingerprint instead of public-key after
6825      keygeneration. ok niels@
6826  - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
6827  - Added timersub() macro
6828  - Tidy RCSIDs of bsd-*.c
6829  - Added autoconf test and macro to deal with old PAM libraries
6830    pam_strerror definition (one arg vs two).
6831  - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
6832  - Retry /dev/urandom reads interrupted by signal (report from
6833    Robert Hardy <rhardy@webcon.net>)
6834  - Added a setenv replacement for systems which lack it
6835  - Only display public key comment when presenting ssh-askpass dialog
6836  - Released 1.2pre14
6837
6838  - Configure, Make and changelog corrections from Tudor Bosman
6839    <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
6840
6841 19991121
6842  - OpenBSD CVS Changes:
6843    - [channels.c]
6844      make this compile, bad markus
6845    - [log.c readconf.c servconf.c ssh.h]
6846      bugfix: loglevels are per host in clientconfig,
6847      factor out common log-level parsing code.
6848    - [servconf.c]
6849      remove unused index (-Wall)
6850    - [ssh-agent.c]
6851      only one 'extern char *__progname'
6852    - [sshd.8]
6853      document SIGHUP, -Q to synopsis
6854    - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
6855      [channels.c clientloop.c]
6856      SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
6857      [hope this time my ISP stays alive during commit]
6858    - [OVERVIEW README] typos; green@freebsd
6859    - [ssh-keygen.c]
6860      replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
6861      exit if writing the key fails (no infinit loop)
6862      print usage() everytime we get bad options
6863    - [ssh-keygen.c] overflow, djm@mindrot.org
6864    - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
6865
6866 19991120
6867  - Merged more Solaris support from Marc G. Fournier
6868    <marc.fournier@acadiau.ca>
6869  - Wrote autoconf tests for integer bit-types
6870  - Fixed enabling kerberos support
6871  - Fix segfault in ssh-keygen caused by buffer overrun in filename
6872    handling.
6873
6874 19991119
6875  - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
6876  - Merged OpenBSD CVS changes
6877    - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
6878      more %d vs. %s in fmt-strings
6879    - [authfd.c]
6880      Integers should not be printed with %s
6881  - EGD uses a socket, not a named pipe. Duh.
6882  - Fix includes in fingerprint.c
6883  - Fix scp progress bar bug again.
6884  - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
6885    David Rankin <drankin@bohemians.lexington.ky.us>
6886  - Added autoconf option to enable Kerberos 4 support (untested)
6887  - Added autoconf option to enable AFS support (untested)
6888  - Added autoconf option to enable S/Key support (untested)
6889  - Added autoconf option to enable TCP wrappers support (compiles OK)
6890  - Renamed BSD helper function files to bsd-*
6891  - Added tests for login and daemon and enable OpenBSD replacements for
6892    when they are absent.
6893  - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
6894
6895 19991118
6896  - Merged OpenBSD CVS changes
6897    - [scp.c] foregroundproc() in scp
6898    - [sshconnect.h] include fingerprint.h
6899    - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
6900      changes.
6901    - [ssh.1] Spell my name right.
6902  - Added openssh.com info to README
6903
6904 19991117
6905  - Merged OpenBSD CVS changes
6906    - [ChangeLog.Ylonen] noone needs this anymore
6907    - [authfd.c] close-on-exec for auth-socket, ok deraadt
6908    - [hostfile.c]
6909      in known_hosts key lookup the entry for the bits does not need
6910      to match, all the information is contained in n and e. This
6911      solves the problem with buggy servers announcing the wrong
6912      modulus length.  markus and me.
6913    - [serverloop.c]
6914      bugfix: check for space if child has terminated, from:
6915      iedowse@maths.tcd.ie
6916    - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
6917      [fingerprint.c fingerprint.h]
6918      rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
6919    - [ssh-agent.1] typo
6920    - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
6921    - [sshd.c]
6922      force logging to stderr while loading private key file
6923      (lost while converting to new log-levels)
6924
6925 19991116
6926  - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
6927  - Merged OpenBSD CVS changes:
6928    - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
6929      [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
6930      the keysize of rsa-parameter 'n' is passed implizit,
6931      a few more checks and warnings about 'pretended' keysizes.
6932    - [cipher.c cipher.h packet.c packet.h sshd.c]
6933      remove support for cipher RC4
6934    - [ssh.c]
6935      a note for legay systems about secuity issues with permanently_set_uid(),
6936      the private hostkey and ptrace()
6937    - [sshconnect.c]
6938      more detailed messages about adding and checking hostkeys
6939
6940 19991115
6941  - Merged OpenBSD CVS changes:
6942    - [ssh-add.c] change passphrase loop logic and remove ref to
6943      $DISPLAY, ok niels
6944  - Changed to ssh-add.c broke askpass support. Revised it to be a little more
6945    modular.
6946  - Revised autoconf support for enabling/disabling askpass support.
6947  - Merged more OpenBSD CVS changes:
6948    [auth-krb4.c]
6949      - disconnect if getpeername() fails
6950      - missing xfree(*client)
6951    [canohost.c]
6952      - disconnect if getpeername() fails
6953      - fix comment: we _do_ disconnect if ip-options are set
6954    [sshd.c]
6955      - disconnect if getpeername() fails
6956      - move checking of remote port to central place
6957    [auth-rhosts.c] move checking of remote port to central place
6958    [log-server.c] avoid extra fd per sshd, from millert@
6959    [readconf.c] print _all_ bad config-options in ssh(1), too
6960    [readconf.h] print _all_ bad config-options in ssh(1), too
6961    [ssh.c] print _all_ bad config-options in ssh(1), too
6962    [sshconnect.c] disconnect if getpeername() fails
6963  - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
6964  - Various small cleanups to bring diff (against OpenBSD) size down.
6965  - Merged more Solaris compability from Marc G. Fournier
6966    <marc.fournier@acadiau.ca>
6967  - Wrote autoconf tests for __progname symbol
6968  - RPM spec file fixes from Jim Knoble <jmknoble@jmknoble.cx>
6969  - Released 1.2pre12
6970
6971  - Another OpenBSD CVS update:
6972    - [ssh-keygen.1] fix .Xr
6973
6974 19991114
6975  - Solaris compilation fixes (still imcomplete)
6976
6977 19991113
6978  - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
6979    - Don't install config files if they already exist
6980    - Fix inclusion of additional preprocessor directives from acconfig.h
6981  - Removed redundant inclusions of config.h
6982  - Added 'Obsoletes' lines to RPM spec file
6983  - Merged OpenBSD CVS changes:
6984    - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
6985    - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
6986      totalsize, ok niels,aaron
6987  - Delay fork (-f option) in ssh until after port forwarded connections
6988    have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
6989  - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
6990  - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
6991  - Tidied default config file some more
6992  - Revised Redhat initscript to fix bug: sshd (re)start would fail
6993    if executed from inside a ssh login.
6994
6995 19991112
6996  - Merged changes from OpenBSD CVS
6997    - [sshd.c] session_key_int may be zero
6998    - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
6999      IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
7000      deraadt,millert
7001  - Brought default sshd_config more in line with OpenBSD's
7002  - Grab server in gnome-ssh-askpass (Debian bug #49872)
7003  - Released 1.2pre10
7004
7005  - Added INSTALL documentation
7006  - Merged yet more changes from OpenBSD CVS
7007    - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
7008      [ssh.c ssh.h sshconnect.c sshd.c]
7009      make all access to options via 'extern Options options'
7010      and 'extern ServerOptions options' respectively;
7011      options are no longer passed as arguments:
7012       * make options handling more consistent
7013       * remove #include "readconf.h" from ssh.h
7014       * readconf.h is only included if necessary
7015    - [mpaux.c] clear temp buffer
7016    - [servconf.c] print _all_ bad options found in configfile
7017  - Make ssh-askpass support optional through autoconf
7018  - Fix nasty division-by-zero error in scp.c
7019  - Released 1.2pre11
7020
7021 19991111
7022  - Added (untested) Entropy Gathering Daemon (EGD) support
7023  - Fixed /dev/urandom fd leak (Debian bug #49722)
7024  - Merged OpenBSD CVS changes:
7025    - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7026    - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7027    - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7028  - Fix integer overflow which was messing up scp's progress bar for large
7029    file transfers. Fix submitted to OpenBSD developers. Report and fix
7030    from Kees Cook <cook@cpoint.net>
7031  - Merged more OpenBSD CVS changes:
7032    - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
7033      + krb-cleanup cleanup
7034    - [clientloop.c log-client.c log-server.c ]
7035      [readconf.c readconf.h servconf.c servconf.h ]
7036      [ssh.1 ssh.c ssh.h sshd.8]
7037      add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
7038      obsoletes QuietMode and FascistLogging in sshd.
7039    - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
7040      allow session_key_int != sizeof(session_key)
7041      [this should fix the pre-assert-removal-core-files]
7042  - Updated default config file to use new LogLevel option and to improve
7043    readability
7044
7045 19991110
7046  - Merged several minor fixes:
7047    - ssh-agent commandline parsing
7048    - RPM spec file now installs ssh setuid root
7049    - Makefile creates libdir
7050    - Merged beginnings of Solaris compability from Marc G. Fournier
7051      <marc.fournier@acadiau.ca>
7052
7053 19991109
7054  - Autodetection of SSL/Crypto library location via autoconf
7055  - Fixed location of ssh-askpass to follow autoconf
7056  - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
7057  - Autodetection of RSAref library for US users
7058  - Minor doc updates
7059  - Merged OpenBSD CVS changes:
7060    - [rsa.c] bugfix: use correct size for memset()
7061    - [sshconnect.c] warn if announced size of modulus 'n' != real size
7062  - Added GNOME passphrase requestor (use --with-gnome-askpass)
7063  - RPM build now creates subpackages
7064  - Released 1.2pre9
7065
7066 19991108
7067  - Removed debian/ directory. This is now being maintained separately.
7068  - Added symlinks for slogin in RPM spec file
7069  - Fixed permissions on manpages in RPM spec file
7070  - Added references to required libraries in README file
7071  - Removed config.h.in from CVS
7072  - Removed pwdb support (better pluggable auth is provided by glibc)
7073  - Made PAM and requisite libdl optional
7074  - Removed lots of unnecessary checks from autoconf
7075  - Added support and autoconf test for openpty() function (Unix98 pty support)
7076  - Fix for scp not finding ssh if not installed as /usr/bin/ssh
7077  - Added TODO file
7078  - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
7079    - Added ssh-askpass program
7080    - Added ssh-askpass support to ssh-add.c
7081    - Create symlinks for slogin on install
7082    - Fix "distclean" target in makefile
7083    - Added example for ssh-agent to manpage
7084    - Added support for PAM_TEXT_INFO messages
7085    - Disable internal /etc/nologin support if PAM enabled
7086  - Merged latest OpenBSD CVS changes:
7087    - [all] replace assert() with error, fatal or packet_disconnect
7088    - [sshd.c] don't send fail-msg but disconnect if too many authentication
7089      failures
7090    - [sshd.c] remove unused argument. ok dugsong
7091    - [sshd.c] typo
7092    - [rsa.c] clear buffers used for encryption. ok: niels
7093    - [rsa.c] replace assert() with error, fatal or packet_disconnect
7094    - [auth-krb4.c] remove unused argument. ok dugsong
7095  - Fixed coredump after merge of OpenBSD rsa.c patch
7096  - Released 1.2pre8
7097
7098 19991102
7099  - Merged change from OpenBSD CVS
7100   - One-line cleanup in sshd.c
7101
7102 19991030
7103  - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
7104  - Merged latest updates for OpenBSD CVS:
7105    - channels.[ch] - remove broken x11 fix and document istate/ostate
7106    - ssh-agent.c - call setsid() regardless of argv[]
7107    - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
7108  - Documentation cleanups
7109  - Renamed README -> README.Ylonen
7110  - Renamed README.openssh ->README
7111
7112 19991029
7113  - Renamed openssh* back to ssh* at request of Theo de Raadt
7114  - Incorporated latest changes from OpenBSD's CVS
7115  - Integrated Makefile patch from  Niels Kristian Bech Jensen <nkbj@image.dk>
7116  - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
7117  - Make distclean now removed configure script
7118  - Improved PAM logging
7119  - Added some debug() calls for PAM
7120  - Removed redundant subdirectories
7121  - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
7122    building on Debian.
7123  - Fixed off-by-one error in PAM env patch
7124  - Released 1.2pre6
7125
7126 19991028
7127  - Further PAM enhancements.
7128    - Much cleaner
7129    - Now uses account and session modules for all logins.
7130  - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
7131    - Build fixes
7132    - Autoconf
7133    - Change binary names to open*
7134  - Fixed autoconf script to detect PAM on RH6.1
7135  - Added tests for libpwdb, and OpenBSD functions to autoconf
7136  - Released 1.2pre4
7137
7138  - Imported latest OpenBSD CVS code
7139  - Updated README.openssh
7140  - Released 1.2pre5
7141
7142 19991027
7143  - Adapted PAM patch.
7144  - Released 1.0pre2
7145
7146  - Excised my buggy replacements for strlcpy and mkdtemp
7147  - Imported correct OpenBSD strlcpy and mkdtemp routines.
7148  - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
7149  - Picked up correct version number from OpenBSD
7150  - Added sshd.pam PAM configuration file
7151  - Added sshd.init Redhat init script
7152  - Added openssh.spec RPM spec file
7153  - Released 1.2pre3
7154
7155 19991026
7156  - Fixed include paths of OpenSSL functions
7157  - Use OpenSSL MD5 routines
7158  - Imported RC4 code from nanocrypt
7159  - Wrote replacements for OpenBSD arc4random* functions
7160  - Wrote replacements for strlcpy and mkdtemp
7161  - Released 1.0pre1
7162
7163 $Id$
This page took 1.193646 seconds and 5 git commands to generate.