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