]> andersk Git - openssh.git/blob - ChangeLog
1a9d760c9372c1ef9bafe87051fab100185bd025
[openssh.git] / ChangeLog
1 20010305
2  - (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
3  - (bal) CVS ID touch up on sftp-int.c 
4  - (bal) CVS ID touch up on uuencode.c
5  - (bal) CVS ID touch up on auth2.c, serverloop.c, session.c & sshd.c
6  - (bal) OpenBSD CVS Sync
7    - deraadt@cvs.openbsd.org 2001/02/17 23:48:48
8      [sshd.8]
9      it's the OpenSSH one
10    - deraadt@cvs.openbsd.org 2001/02/21 07:37:04
11      [ssh-keyscan.c]
12      inline -> __inline__, and some indent
13    - deraadt@cvs.openbsd.org 2001/02/21 09:05:54
14      [authfile.c]
15      improve fd handling
16    - deraadt@cvs.openbsd.org 2001/02/21 09:12:56
17      [sftp-server.c]
18      careful with & and &&; markus ok
19    - stevesk@cvs.openbsd.org 2001/02/21 21:14:04
20      [ssh.c]
21      -i supports DSA identities now; ok markus@
22    - deraadt@cvs.openbsd.org 2001/02/22 04:29:37
23      [servconf.c]
24      grammar; slade@shore.net
25    - deraadt@cvs.openbsd.org 2001/02/22 06:43:55
26      [ssh-keygen.1 ssh-keygen.c]
27      document -d, and -t defaults to rsa1
28    - deraadt@cvs.openbsd.org 2001/02/22 08:03:51
29      [ssh-keygen.1 ssh-keygen.c]
30      bye bye -d
31    - deraadt@cvs.openbsd.org 2001/02/22 18:09:06
32      [sshd_config]
33      activate RSA 2 key
34    - markus@cvs.openbsd.org 2001/02/22 21:57:27
35      [ssh.1 sshd.8]
36      typos/grammar from matt@anzen.com
37    - markus@cvs.openbsd.org 2001/02/22 21:59:44
38      [auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c]
39      use pwcopy in ssh.c, too
40    - markus@cvs.openbsd.org 2001/02/23 15:34:53
41      [serverloop.c]
42      debug2->3
43    - markus@cvs.openbsd.org 2001/02/23 18:15:13
44      [sshd.c]
45      the random session key depends now on the session_key_int
46      sent by the 'attacker'
47              dig1 = md5(cookie|session_key_int);
48              dig2 = md5(dig1|cookie|session_key_int);
49              fake_session_key = dig1|dig2;
50      this change is caused by a mail from anakin@pobox.com
51      patch based on discussions with my german advisor niels@openbsd.org
52    - deraadt@cvs.openbsd.org 2001/02/24 10:37:55
53      [readconf.c]
54      look for id_rsa by default, before id_dsa
55    - deraadt@cvs.openbsd.org 2001/02/24 10:37:26
56      [sshd_config]
57      ssh2 rsa key before dsa key
58    - markus@cvs.openbsd.org 2001/02/27 10:35:27
59      [packet.c]
60      fix random padding
61    - markus@cvs.openbsd.org 2001/02/27 11:00:11
62      [compat.c]
63      support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
64    - deraadt@cvs.openbsd.org 2001/02/28 05:34:28
65      [misc.c]
66      pull in protos
67    - deraadt@cvs.openbsd.org 2001/02/28 05:36:28
68      [sftp.c]
69      do not kill the subprocess on termination (we will see if this helps
70      things or hurts things)
71    - markus@cvs.openbsd.org 2001/02/28 08:45:39
72      [clientloop.c]
73      fix byte counts for ssh protocol v1
74    - markus@cvs.openbsd.org 2001/02/28 08:54:55
75      [channels.c nchan.c nchan.h]
76      make sure remote stderr does not get truncated.
77      remove closed fd's from the select mask.
78    - markus@cvs.openbsd.org 2001/02/28 09:57:07
79      [packet.c packet.h sshconnect2.c]
80      in ssh protocol v2 use ignore messages for padding (instead of
81      trailing \0).
82    - markus@cvs.openbsd.org 2001/02/28 12:55:07
83      [channels.c]
84      unify debug messages
85    - deraadt@cvs.openbsd.org 2001/02/28 17:52:54
86      [misc.c]
87      for completeness, copy pw_gecos too
88    - markus@cvs.openbsd.org 2001/02/28 21:21:41
89      [sshd.c]
90      generate a fake session id, too
91    - markus@cvs.openbsd.org 2001/02/28 21:27:48
92      [channels.c packet.c packet.h serverloop.c]
93      use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message
94      use random content in ignore messages.
95    - markus@cvs.openbsd.org 2001/02/28 21:31:32
96      [channels.c]
97      typo
98    - deraadt@cvs.openbsd.org 2001/03/01 02:11:25
99      [authfd.c]
100      split line so that p will have an easier time next time around
101    - deraadt@cvs.openbsd.org 2001/03/01 02:29:04
102      [ssh.c]
103      shorten usage by a line
104    - deraadt@cvs.openbsd.org 2001/03/01 02:45:10
105      [auth-rsa.c auth2.c deattack.c packet.c]
106      KNF
107    - deraadt@cvs.openbsd.org 2001/03/01 03:38:33
108      [cli.c cli.h rijndael.h ssh-keyscan.1]
109      copyright notices on all source files
110    - markus@cvs.openbsd.org 2001/03/01 22:46:37
111      [ssh.c]
112      don't truncate remote ssh-2 commands; from mkubita@securities.cz
113      use min, not max for logging, fixes overflow.
114    - deraadt@cvs.openbsd.org 2001/03/02 06:21:01
115      [sshd.8]
116      explain SIGHUP better
117    - deraadt@cvs.openbsd.org 2001/03/02 09:42:49
118      [sshd.8]
119      doc the dsa/rsa key pair files
120    - deraadt@cvs.openbsd.org 2001/03/02 18:54:31
121      [atomicio.c atomicio.h auth-chall.c auth.c auth2-chall.c crc32.h
122       scp.c serverloop.c session.c sftp-server.8 sftp.1 ssh-add.1 ssh-add.c
123       ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh.1 sshd.8]
124      make copyright lines the same format
125    - deraadt@cvs.openbsd.org 2001/03/03 06:53:12
126      [ssh-keyscan.c]
127      standard theo sweep
128    - millert@cvs.openbsd.org 2001/03/03 21:19:41
129      [ssh-keyscan.c]
130      Dynamically allocate read_wait and its copies.  Since maxfd is
131      based on resource limits it is often (usually?) larger than FD_SETSIZE.
132    - millert@cvs.openbsd.org 2001/03/03 21:40:30
133      [sftp-server.c]
134      Dynamically allocate fd_set; deraadt@ OK
135    - millert@cvs.openbsd.org 2001/03/03 21:41:07
136      [packet.c]
137      Dynamically allocate fd_set; deraadt@ OK
138    - deraadt@cvs.openbsd.org 2001/03/03 22:07:50
139      [sftp-server.c]
140      KNF
141    - markus@cvs.openbsd.org 2001/03/03 23:52:22
142      [sftp.c]
143      clean up arg processing. based on work by Christophe_Moret@hp.com
144    - markus@cvs.openbsd.org 2001/03/03 23:59:34
145      [log.c ssh.c]
146      log*.c -> log.c
147    - markus@cvs.openbsd.org 2001/03/04 00:03:59
148      [channels.c]
149      debug1->2
150    - stevesk@cvs.openbsd.org 2001/03/04 10:57:53
151      [ssh.c]
152      add -m to usage; ok markus@
153    - stevesk@cvs.openbsd.org 2001/03/04 11:04:41
154      [sshd.8]
155      small cleanup and clarify for PermitRootLogin; ok markus@
156    - stevesk@cvs.openbsd.org 2001/03/04 11:16:06
157      [servconf.c sshd.8]
158      kill obsolete RandomSeed; ok markus@ deraadt@
159    - stevesk@cvs.openbsd.org 2001/03/04 12:54:04
160      [sshd.8]
161      spelling
162    - millert@cvs.openbsd.org 2001/03/04 17:42:28
163      [authfd.c channels.c dh.c log.c readconf.c servconf.c sftp-int.c
164       ssh.c sshconnect.c sshd.c]
165      log functions should not be passed strings that end in newline as they
166      get passed on to syslog() and when logging to stderr, do_log() appends
167      its own newline.
168    - deraadt@cvs.openbsd.org 2001/03/04 18:21:28
169      [sshd.8]
170      list SSH2 ciphers
171  - (bal) Put HAVE_PW_CLASS_IN_PASSWD back into pwcopy()
172  - (bal) Fix up logging since it changed.  removed log-*.c
173
174 20010304
175  - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
176  - (bal) Updated contrib/README to remove 'make-ssh-known-hosts' and
177    give Mark Roth credit for mdoc2man.pl
178
179 20010303
180  - (djm) Remove make-ssh-known-hosts.pl, ssh-keyscan is better.
181  - (djm) Document PAM ChallengeResponseAuthentication in sshd.8
182  - (djm) Disable and comment ChallengeResponseAuthentication in sshd_config
183  - (djm) Allow PRNGd entropy collection from localhost TCP socket. Replace
184    "--with-egd-pool" configure option with "--with-prngd-socket" and 
185    "--with-prngd-port" options. Debugged and improved by Lutz Jaenicke
186    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
187
188 20010301
189  - (djm) Properly add -lcrypt if needed. 
190  - (djm) Force standard PAM conversation function in a few more places.
191    Patch from Redhat 2.5.1p1-2 RPM, probably Nalin Dahyabhai 
192    <nalin@redhat.com>
193  - (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen 
194    <vinschen@redhat.com>
195  - (djm) Released 2.5.1p2
196
197 20010228
198  - (djm) Detect endianness in configure and use it in rijndael.c. Fixes
199    "Bad packet length" bugs.
200  - (djm) Fully revert PAM session patch (again). All PAM session init is 
201    now done before the final fork().
202  - (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
203  - (djm) Remove /tmp from EGD socket search list
204
205 20010227
206  - (bal) Applied shutdown() patch for sftp.c by  Corinna Vinschen 
207    <vinschen@redhat.com>
208  - (bal) OpenBSD Sync
209    - markus@cvs.openbsd.org 2001/02/23 15:37:45
210      [session.c]
211      handle SSH_PROTOFLAG_SCREEN_NUMBER for buggy clients
212  - (bal) sshd.init support for all Redhat release.  Patch by Jim Knoble 
213    <jmknoble@jmknoble.cx>
214  - (djm) Fix up POSIX saved uid support. Report from Mark Miller 
215    <markm@swoon.net>
216  - (djm) Search for -lcrypt on FreeBSD too
217  - (djm) fatal() on OpenSSL version mismatch
218  - (djm) Move PAM init to after fork for non-Solaris derived PAMs
219  - (djm) Warning fix on entropy.c saved uid stuff. Patch from Mark Miller
220    <markm@swoon.net>
221  - (djm) Fix PAM fix
222  - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This
223    change is being made as 2.5.x configfiles are not back-compatible with
224    2.3.x.
225  - (djm) Avoid warnings for missing broken IP_TOS. Patch from Mark Miller
226    <markm@swoon.net>
227  - (djm) Open Server 5 doesn't need BROKEN_SAVED_UIDS. Patch from Tim Rice 
228    <tim@multitalents.net>
229  - (djm) Avoid multiple definition of _PATH_LS. Patch from Tim Rice 
230    <tim@multitalents.net>
231
232 20010226
233  - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
234  - (djm) Some systems (SCO3, NeXT) have weird saved uid semantics. 
235    Based on patch from Tim Rice <tim@multitalents.net>
236
237 20010225
238  - (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
239    Patch from Adrian Ho <lexfiend@usa.net>
240  - (bal) Replace 'unsigned long long' to 'u_int64_t' since not every
241    platform defines u_int64_t as being that.
242
243 20010224
244  - (bal) Missed part of the UNIX sockets patch.  Patch by Corinna 
245    Vinschen <vinschen@redhat.com>
246  - (bal) Reorder where 'strftime' is detected to resolve linking
247    issues on SCO.  Patch by Tim Rice <tim@multitalents.net>
248
249 20010224
250  - (bal) pam_stack fix to correctly detect between RH7 and older RHs.
251    Patch by Pekka Savola <pekkas@netcore.fi>
252  - (bal) Renamed sigaction.[ch] to sigact.[ch].  Causes problems with
253    some platforms.
254  - (bal) Generalize lack of UNIX sockets since this also effects Cray
255    not just Cygwin.  Based on patch by Wendy Palm <wendyp@cray.com>
256
257 20010223
258  - (bal) Fix --define rh7 in openssh.spec file.  Patch by Steve Tell
259    <tell@telltronics.org>
260  - (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
261    that it was compiled against.  Patch by Pekka Savola <pekkas@netcore.fi>
262  - (bal) Double -I for OpenSSL on SCO.  Patch by Tim Rice 
263    <tim@multitalents.net>
264
265 20010222                                                             
266  - (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
267  - (bal) Added mdoc2man.pl from Mark Roth <roth@feep.net>
268  - (bal) Removed reference to liblogin from contrib/README.  It was
269    integrated into OpenSSH a long while ago.
270  - (stevesk) remove erroneous #ifdef sgi code.
271    Michael Stone <mstone@cs.loyola.edu>
272
273 20010221
274  - (bal) Removed -L/usr/ucblib -R/usr/ucblib for Solaris platform.
275  - (bal) Fixed OpenSSL rework to use $saved_*.  Patch by Tim Rice 
276    <tim@multitalents.net>
277  - (bal) Reverted out of 2001/02/15 patch by djm below because it
278    breaks Solaris.
279         - (djm) Move PAM session setup back to before setuid to user.
280           fixes problems on Solaris-drived PAMs.
281  - (stevesk) session.c: back out to where we were before:
282     - (djm) Move PAM session initialisation until after fork in sshd. Patch 
283       from Nalin Dahyabhai <nalin@redhat.com>
284
285 20010220
286  - (bal) Fix mixed up params to memmove() from Jan 5th in setenv.c and
287    getcwd.c.
288  - (bal) OpenBSD CVS Sync:
289    - deraadt@cvs.openbsd.org 2001/02/19 23:09:05
290      [sshd.c]
291      clarify message to make it not mention "ident"
292
293 20010219
294  - (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
295    pty.[ch] -> sshpty.[ch]
296  - (djm) Rework search for OpenSSL location. Skip directories which don't
297    exist, don't add -L$ssldir/lib if it doesn't exist. Should help SCO
298    with its limit of 6 -L options.
299  - OpenBSD CVS Sync:
300    - reinhard@cvs.openbsd.org        2001/02/17 08:24:40
301      [sftp.1]
302      typo
303    - deraadt@cvs.openbsd.org 2001/02/17 16:28:58
304      [ssh.c]
305      cleanup -V output; noted by millert
306    - deraadt@cvs.openbsd.org 2001/02/17 16:48:48
307      [sshd.8]
308      it's the OpenSSH one
309    - markus@cvs.openbsd.org  2001/02/18 11:33:54
310      [dispatch.c]
311      typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi
312    - markus@cvs.openbsd.org  2001/02/19 02:53:32
313      [compat.c compat.h serverloop.c]
314      ssh-1.2.{18-22} has broken handling of ignore messages; report from
315      itojun@
316    - markus@cvs.openbsd.org  2001/02/19 03:35:23
317      [version.h]
318      OpenSSH_2.5.1 adds bug compat with 1.2.{18-22}
319    - deraadt@cvs.openbsd.org 2001/02/19 03:36:25
320      [scp.c]
321      np is changed by recursion; vinschen@redhat.com
322  - Update versions in RPM spec files
323  - Release 2.5.1p1
324
325 20010218
326  - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice 
327    <tim@multitalents.net> 
328  - (Bal) Patch for lack of RA_RESTART in misc.c for mysignal by
329    stevesk
330  - (djm) Fix my breaking of cygwin builds, Patch from Corinna Vinschen 
331    <vinschen@redhat.com> and myself.
332  - (djm) Close listen_sock on bind() failures. Patch from Arkadiusz
333    Miskiewicz <misiek@pld.ORG.PL>
334  - (djm) Robustify EGD/PRNGd code in face of socket closures. Patch from
335    Todd C. Miller <Todd.Miller@courtesan.com>
336  - (djm) Use ttyname() to determine name of tty returned by openpty() 
337    rather then risking overflow. Patch from Marek Michalkiewicz 
338    <marekm@amelek.gda.pl>
339  - (djm) Swapped tests for no_libsocket and no_libnsl in configure.in. 
340    Patch from Marek Michalkiewicz <marekm@amelek.gda.pl>
341  - (djm) Doc fixes from Pekka Savola <pekkas@netcore.fi>
342  - (djm) Use SA_INTERRUPT along SA_RESTART if present (equivalent for 
343    SunOS)
344  - (djm) SCO needs librpc for libwrap. Patch from Tim Rice 
345    <tim@multitalents.net>
346  - (stevesk) misc.c: cpp rework of SA_(INTERRUPT|RESTART) handling.
347  - (stevesk) scp.c: use mysignal() for updateprogressmeter() handler.
348  - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for 
349    SIGALRM.
350  - (djm) Move entropy.c over to mysignal()
351  - (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has 
352    a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C. 
353    Miller <Todd.Miller@courtesan.com>
354  - (djm) Update RPM spec files for 2.5.0p1
355  - (djm) Merge BSD_AUTH support from Markus Friedl and David J. MacKenzie
356    enable with --with-bsd-auth.
357  - (stevesk) entropy.c: typo; should be SIGPIPE
358
359 20010217
360  - (bal) OpenBSD Sync:
361    - markus@cvs.openbsd.org 2001/02/16 13:38:18
362      [channel.c]                               
363      remove debug                              
364    - markus@cvs.openbsd.org 2001/02/16 14:03:43
365      [session.c]
366      proper payload-length check for x11 w/o screen-number
367
368 20010216
369  - (bal) added '--with-prce'  to allow overriding of system regex when
370    required (tested by David Dulek <ddulek@fastenal.com>)
371  - (bal) Added DG/UX case and set that they have a broken IPTOS.
372  - (djm) Mini-configure reorder patch from Tim Rice <tim@multitalents.net>
373    Fixes linking on SCO.
374  - (djm) Make gnome-ssh-askpass handle multi-line prompts. Patch from 
375    Nalin Dahyabhai <nalin@redhat.com>
376  - (djm) BSD license for gnome-ssh-askpass (was X11)
377  - (djm) KNF on gnome-ssh-askpass
378  - (djm) USE_PIPES for a few more sysv platforms
379  - (djm) Cleanup configure.in a little
380  - (djm) Ask users to check config.log when we can't find necessary libs
381  - (djm) Set "login ID" on systems with setluid. Only enabled for SCO
382    OpenServer for now. Based on patch from svaughan <svaughan@asterion.com>
383  - (djm) OpenBSD CVS:
384    - markus@cvs.openbsd.org  2001/02/15 16:19:59
385      [channels.c channels.h serverloop.c sshconnect.c sshconnect.h]
386      [sshconnect1.c sshconnect2.c]
387      genericize password padding function for SSH1 and SSH2.
388      add stylized echo to 2, too.
389  - (djm) Add roundup() macro to defines.h
390  - (stevesk) set SA_RESTART flag in mysignal() for SIGCHLD;
391    needed on Unixware 2.x.
392
393 20010215
394  - (djm) Move PAM session setup back to before setuid to user. Fixes 
395    problems on Solaris-derived PAMs.
396  - (djm) Clean up PAM namespace. Suggested by Darren Moffat
397    <Darren.Moffat@eng.sun.com>
398  - (bal) Sync w/ OpenSSH for new release
399    - markus@cvs.openbsd.org 2001/02/12 12:45:06
400      [sshconnect1.c]
401      fix xmalloc(0), ok dugsong@
402    - markus@cvs.openbsd.org 2001/02/11 12:59:25
403      [Makefile.in sshd.8 sshconnect2.c readconf.h readconf.c packet.c
404       sshd.c ssh.c ssh.1 servconf.h servconf.c myproposal.h kex.h kex.c]
405      1) clean up the MAC support for SSH-2
406      2) allow you to specify the MAC with 'ssh -m'
407      3) or the 'MACs' keyword in ssh(d)_config
408      4) add hmac-{md5,sha1}-96
409              ok stevesk@, provos@
410    - markus@cvs.openbsd.org 2001/02/12 16:16:23
411      [auth-passwd.c auth.c auth.h auth1.c auth2.c servconf.c servconf.h
412       ssh-keygen.c sshd.8]
413      PermitRootLogin={yes,without-password,forced-commands-only,no}
414      (before this change, root could login even if PermitRootLogin==no)
415    - deraadt@cvs.openbsd.org 2001/02/12 22:56:09
416      [clientloop.c packet.c ssh-keyscan.c]
417      deal with EAGAIN/EINTR selects which were skipped
418    - markus@cvs.openssh.org 2001/02/13 22:49:40
419      [auth1.c auth2.c]
420      setproctitle(user) only if getpwnam succeeds
421    - markus@cvs.openbsd.org 2001/02/12 23:26:20
422      [sshd.c]
423      missing memset; from solar@openwall.com
424    - stevesk@cvs.openbsd.org 2001/02/12 20:53:33
425      [sftp-int.c]
426      lumask now works with 1 numeric arg; ok markus@, djm@
427    - djm@cvs.openbsd.org 2001/02/14 9:46:03
428      [sftp-client.c sftp-int.c sftp.1]
429      Fix and document 'preserve modes & times' option ('-p' flag in sftp);
430      ok markus@
431  - (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
432  - (djm) Move to Jim's 1.2.0 X11 askpass program
433  - (stevesk) OpenBSD sync:
434    - deraadt@cvs.openbsd.org 2001/02/15 01:38:04
435      [serverloop.c]
436      indent
437
438 20010214
439  - (djm) Don't try to close PAM session or delete credentials if the
440    session has not been open or credentials not set. Based on patch from 
441    Andrew Bartlett <abartlet@pcug.org.au>
442  - (djm) Move PAM session initialisation until after fork in sshd. Patch 
443    from Nalin Dahyabhai <nalin@redhat.com>
444  - (bal) Missing function prototype in bsd-snprintf.c patch by
445    Mark Miller <markm@swoon.net>
446  - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams
447    <cmadams@hiwaay.net> with a little modification and KNF.
448  - (stevesk) fix for SIA patch, misplaced session_setup_sia()
449
450 20010213
451  - (djm) Only test -S potential EGD sockets if they exist and are readable.
452  - (bal) Cleaned out bsd-snprintf.c.  VARARGS have been banished and
453    I did a base KNF over the whe whole file to make it more acceptable.
454    (backed out of original patch and removed it from ChangeLog)
455  - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by
456    Tim Rice <tim@multitalents.net>
457  - (stevesk) auth1.c: fix PAM passwordless check.
458
459 20010212
460  - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1", 
461    --define "skip_gnome_askpass 1", --define "rh7 1" and make the 
462    implicit rpm-3.0.5 dependancy explicit. Patch and suggestions from 
463    Pekka Savola <pekkas@netcore.fi>
464  - (djm) Clean up PCRE text in INSTALL
465  - (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby 
466    <mib@unimelb.edu.au>
467  - (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
468  - (stevesk) session.c: remove debugging code.
469
470 20010211
471  - (bal) OpenBSD Sync
472    - markus@cvs.openbsd.org 2001/02/07 22:35:46
473      [auth1.c auth2.c sshd.c]
474      move k_setpag() to a central place; ok dugsong@
475    - markus@cvs.openbsd.org 2001/02/10 12:52:02
476      [auth2.c]
477      offer passwd before s/key
478    - markus@cvs.openbsd.org 2001/02/8 22:37:10
479      [canohost.c]
480      remove last call to sprintf; ok deraadt@
481    - markus@cvs.openbsd.org 2001/02/10 1:33:32
482      [canohost.c]
483      add debug message, since sshd blocks here if DNS is not available
484    - markus@cvs.openbsd.org 2001/02/10 12:44:02
485      [cli.c]
486      don't call vis() for \r
487    - danh@cvs.openbsd.org 2001/02/10 0:12:43
488      [scp.c]
489      revert a small change to allow -r option to work again; ok deraadt@
490    - danh@cvs.openbsd.org 2001/02/10 15:14:11
491      [scp.c]
492      fix memory leak; ok markus@
493    - djm@cvs.openbsd.org 2001/02/10 0:45:52
494      [scp.1]
495      Mention that you can quote pathnames with spaces in them
496    - markus@cvs.openbsd.org 2001/02/10 1:46:28
497      [ssh.c]
498      remove mapping of argv[0] -> hostname
499    - markus@cvs.openbsd.org 2001/02/06 22:26:17
500      [sshconnect2.c]
501      do not ask for passphrase in batch mode; report from ejb@ql.org
502    - itojun@cvs.opebsd.org 2001/02/08 10:47:05
503      [sshconnect.c sshconnect1.c sshconnect2.c]
504      %.30s is too short for IPv6 numeric address.  use %.128s for now.  
505      markus ok
506    - markus@cvs.openbsd.org 2001/02/09 12:28:35
507      [sshconnect2.c]
508      do not free twice, thanks to /etc/malloc.conf
509    - markus@cvs.openbsd.org 2001/02/09 17:10:53
510      [sshconnect2.c]
511      partial success: debug->log; "Permission denied" if no more auth methods
512    - markus@cvs.openbsd.org 2001/02/10 12:09:21
513      [sshconnect2.c]
514      remove some lines
515    - markus@cvs.openbsd.org 2001/02/09 13:38:07
516      [auth-options.c]
517      reset options if no option is given; from han.holl@prismant.nl
518    - markus@cvs.openbsd.org 2001/02/08 21:58:28
519      [channels.c]
520      nuke sprintf, ok deraadt@
521    - markus@cvs.openbsd.org 2001/02/08 21:58:28
522      [channels.c]
523      nuke sprintf, ok deraadt@
524    - markus@cvs.openbsd.org 2001/02/06 22:43:02
525      [clientloop.h]
526      remove confusing callback code
527    - deraadt@cvs.openbsd.org 2001/02/08 14:39:36
528      [readconf.c]
529      snprintf
530    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
531      sync with netbsd tree changes.
532      - more strict prototypes, include necessary headers
533      - use paths.h/pathnames.h decls
534      - size_t typecase to int -> u_long
535    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
536      [ssh-keyscan.c]
537      fix size_t -> int cast (use u_long).  markus ok
538    - markus@cvs.openbsd.org 2001/02/07 22:43:16
539      [ssh-keyscan.c]
540      s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
541    - itojun@cvs.openbsd.org 2001/02/09 9:04:59
542      [ssh-keyscan.c]
543      do not assume malloc() returns zero-filled region.  found by 
544      malloc.conf=AJ.
545    - markus@cvs.openbsd.org 2001/02/08 22:35:30
546      [sshconnect.c]
547      don't connect if batch_mode is true and stricthostkeychecking set to 
548     'ask'
549    - djm@cvs.openbsd.org 2001/02/04 21:26:07
550      [sshd_config]
551      type: ok markus@
552    - deraadt@cvs.openbsd.org 2001/02/06 22:07:50
553      [sshd_config]
554      enable sftp-server by default
555    - deraadt 2001/02/07 8:57:26
556      [xmalloc.c]
557      deal with new ANSI malloc stuff
558    - markus@cvs.openbsd.org 2001/02/07 16:46:08
559      [xmalloc.c]
560      typo in fatal()
561    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
562      [xmalloc.c]
563      fix size_t -> int cast (use u_long).  markus ok
564    - 1.47 Thu Feb 8 23:11:42 GMT 2001 by dugsong
565      [serverloop.c sshconnect1.c]
566      mitigate SSH1 traffic analysis - from Solar Designer 
567      <solar@openwall.com>, ok provos@
568  - (bal) fixed sftp-client.c.  Return 'status' instead of '0'  
569    (from the OpenBSD tree)
570  - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
571  - (bal) sftp-sever.c  '%8lld' to '%8llu' (OpenBSD Sync)
572  - (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
573  - (bal) A bit more whitespace cleanup
574  - (djm) Set PAM_RHOST earlier, patch from Andrew Bartlett 
575    <abartlet@pcug.org.au>
576  - (stevesk) misc.c: ssh.h not needed.
577  - (stevesk) compat.c: more friendly cpp error
578  - (stevesk) OpenBSD sync:
579    - stevesk@cvs.openbsd.org 2001/02/11 06:15:57
580      [LICENSE]
581      typos and small cleanup; ok deraadt@
582
583 20010210
584  - (djm) Sync sftp and scp stuff from OpenBSD:
585    - djm@cvs.openbsd.org     2001/02/07 03:55:13
586      [sftp-client.c]
587      Don't free handles before we are done with them. Based on work from
588      Corinna Vinschen <vinschen@redhat.com>. ok markus@
589    - djm@cvs.openbsd.org     2001/02/06 22:32:53
590      [sftp.1]
591      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
592    - deraadt@cvs.openbsd.org 2001/02/07 04:07:29
593      [sftp.1]
594      pretty up significantly
595    - itojun@cvs.openbsd.org  2001/02/07 06:49:42
596      [sftp.1]
597      .Bl-.El mismatch.  markus ok
598    - djm@cvs.openbsd.org     2001/02/07 06:12:30
599      [sftp-int.c]
600      Check that target is a directory before doing ls; ok markus@
601    - itojun@cvs.openbsd.org  2001/02/07 11:01:18
602      [scp.c sftp-client.c sftp-server.c]
603      unsigned long long -> %llu, not %qu.  markus ok
604    - stevesk@cvs.openbsd.org 2001/02/07 11:10:39
605      [sftp.1 sftp-int.c]
606      more man page cleanup and sync of help text with man page; ok markus@
607    - markus@cvs.openbsd.org  2001/02/07 14:58:34
608      [sftp-client.c]
609      older servers reply with SSH2_FXP_NAME + count==0 instead of EOF
610    - djm@cvs.openbsd.org     2001/02/07 15:27:19
611      [sftp.c]
612      Don't forward agent and X11 in sftp. Suggestion from Roumen Petrov
613      <roumen.petrov@skalasoft.com>
614    - stevesk@cvs.openbsd.org 2001/02/07 15:36:04
615      [sftp-int.c]
616      portable; ok markus@
617    - stevesk@cvs.openbsd.org 2001/02/07 15:55:47
618      [sftp-int.c]
619      lowercase cmds[].c also; ok markus@
620    - markus@cvs.openbsd.org  2001/02/07 17:04:52
621      [pathnames.h sftp.c]
622      allow sftp over ssh protocol 1; ok djm@
623    - deraadt@cvs.openbsd.org 2001/02/08 07:38:55
624      [scp.c]
625      memory leak fix, and snprintf throughout
626    - deraadt@cvs.openbsd.org 2001/02/08 08:02:02
627      [sftp-int.c]
628      plug a memory leak
629    - stevesk@cvs.openbsd.org 2001/02/08 10:11:23
630      [session.c sftp-client.c]
631      %i -> %d
632    - stevesk@cvs.openbsd.org 2001/02/08 10:57:59
633      [sftp-int.c]
634      typo
635    - stevesk@cvs.openbsd.org 2001/02/08 15:28:07
636      [sftp-int.c pathnames.h]
637      _PATH_LS; ok markus@
638    - djm@cvs.openbsd.org     2001/02/09 04:46:25
639      [sftp-int.c]
640      Check for NULL attribs for chown, chmod & chgrp operations, only send
641      relevant attribs back to server; ok markus@
642    - djm@cvs.openbsd.org     2001/02/06 15:05:25
643      [sftp.c]
644      Use getopt to process commandline arguments
645    - djm@cvs.openbsd.org     2001/02/06 15:06:21
646      [sftp.c ]
647      Wait for ssh subprocess at exit
648    - djm@cvs.openbsd.org     2001/02/06 15:18:16
649      [sftp-int.c]
650      stat target for remote chdir before doing chdir
651    - djm@cvs.openbsd.org     2001/02/06 15:32:54
652      [sftp.1]
653      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
654    - provos@cvs.openbsd.org  2001/02/05 22:22:02
655      [sftp-int.c]
656      cleanup get_pathname, fix pwd after failed cd. okay djm@
657  - (djm) Update makefile.in for _PATH_SFTP_SERVER
658  - (bal) sftp-client.c replace NULL w/ 0 in do_ls() (pending in OpenBSD tree)
659
660 20010209
661  - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney 
662    <rjmooney@mediaone.net>
663  - (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
664    main tree while porting forward.  Pointed out by Lutz Jaenicke 
665    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
666  - (bal) double entry in configure.in.  Pointed out by Lutz Jaenicke
667    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
668  - (stevesk) OpenBSD sync:
669    - markus@cvs.openbsd.org  2001/02/08 11:20:01
670      [auth2.c]
671      strict checking
672    - markus@cvs.openbsd.org  2001/02/08 11:15:22
673      [version.h]
674      update to 2.3.2
675    - markus@cvs.openbsd.org  2001/02/08 11:12:30
676      [auth2.c]
677      fix typo
678  - (djm) Update spec files
679  - (bal) OpenBSD sync:
680    - deraadt@cvs.openbsd.org 2001/02/08 14:38:54
681      [scp.c]
682      memory leak fix, and snprintf throughout
683    - markus@cvs.openbsd.org 2001/02/06 22:43:02
684      [clientloop.c]
685      remove confusing callback code
686  - (djm) Add CVS Id's to files that we have missed
687  - (bal) OpenBSD Sync (more):
688    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
689      sync with netbsd tree changes.
690      - more strict prototypes, include necessary headers
691      - use paths.h/pathnames.h decls
692      - size_t typecase to int -> u_long
693    - markus@cvs.openbsd.org 2001/02/06 22:07:42
694      [ssh.c]
695      fatal() if subsystem fails
696    - markus@cvs.openbsd.org 2001/02/06 22:43:02
697      [ssh.c]
698      remove confusing callback code
699    - jakob@cvs.openbsd.org 2001/02/06 23:03:24
700      [ssh.c]
701      add -1 option (force protocol version 1). ok markus@
702    - jakob@cvs.openbsd.org 2001/02/06 23:06:21
703      [ssh.c]
704      reorder -{1,2,4,6} options. ok markus@
705  - (bal) Missing 'const' in readpass.h
706  - (bal) OpenBSD Sync (so at least the thing compiles for 2.3.2 =)
707    - djm@cvs.openbsd.org 2001/02/06 23:30:28
708      [sftp-client.c]
709      replace arc4random with counter for request ids; ok markus@
710  - (djm) Define _PATH_TTY for systems that don't. Report from Lutz 
711    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
712
713 20010208
714  - (djm) Don't delete external askpass program in make uninstall target.
715    Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com>
716  - (djm) Fix linking of sftp, don't need arc4random any more.
717  - (djm) Try to use shell that supports "test -S" for EGD socket search.
718    Based on patch from Tim Rice <tim@multitalents.net>
719
720 20010207
721  - (bal) Save the whole path to AR in configure.  Some Solaris 2.7 installs
722    seem lose track of it while in openbsd-compat/  (two confirmed reports)
723  - (djm) Much KNF on PAM code
724  - (djm) Revise auth-pam.c conversation function to be a little more
725    readable.
726  - (djm) Revise kbd-int PAM conversation function to fold all text messages
727    to before first prompt. Fixes hangs if last pam_message did not require
728    a reply.
729  - (djm) Fix password changing when using PAM kbd-int authentication
730
731 20010205
732  - (bal) Disable groupaccess by setting NGROUPS_MAX to 0 for platforms
733    that don't have NGROUPS_MAX.
734  - (bal) AIX patch for auth1.c by William L. Jones <jones@hpc.utexas.edu>
735  - (stevesk) OpenBSD sync:
736    - stevesk@cvs.openbsd.org 2001/02/04 08:32:27
737      [many files; did this manually to our top-level source dir]
738      unexpand and remove end-of-line whitespace; ok markus@
739    - stevesk@cvs.openbsd.org 2001/02/04 15:21:19
740      [sftp-server.c]
741      SSH2_FILEXFER_ATTR_UIDGID support; ok markus@
742    - deraadt@cvs.openbsd.org 2001/02/04 17:02:32
743      [sftp-int.c]
744      ? == help
745    - deraadt@cvs.openbsd.org 2001/02/04 16:47:46
746      [sftp-int.c]
747      sort commands, so that abbreviations work as expected
748    - stevesk@cvs.openbsd.org 2001/02/04 15:17:52
749      [sftp-int.c]
750      debugging sftp: precedence and missing break.  chmod, chown, chgrp
751      seem to be working now.
752    - markus@cvs.openbsd.org 2001/02/04 14:41:21
753      [sftp-int.c]
754      use base 8 for umask/chmod
755    - markus@cvs.openbsd.org 2001/02/04 11:11:54
756      [sftp-int.c]
757      fix LCD
758    - markus@cvs.openbsd.org  2001/02/04 08:10:44
759      [ssh.1]
760      typo; dpo@club-internet.fr
761    - stevesk@cvs.openbsd.org 2001/02/04 06:30:12
762      [auth2.c authfd.c packet.c]
763      remove duplicate #include's; ok markus@
764    - deraadt@cvs.openbsd.org 2001/02/04 16:56:23
765      [scp.c sshd.c]
766      alpha happiness
767    - stevesk@cvs.openbsd.org 2001/02/04 15:12:17
768      [sshd.c]
769      precedence; ok markus@
770    - deraadt@cvs.openbsd.org 2001/02/04 08:14:15
771      [ssh.c sshd.c]
772      make the alpha happy
773    - markus@cvs.openbsd.org  2001/01/31 13:37:24
774      [channels.c channels.h serverloop.c ssh.c]
775      do not disconnect if local port forwarding fails, e.g. if port is 
776      already in use
777    - markus@cvs.openbsd.org  2001/02/01 14:58:09
778      [channels.c]
779      use ipaddr in channel messages, ietf-secsh wants this
780    - markus@cvs.openbsd.org  2001/01/31 12:26:20
781      [channels.c]
782      ssh.com-2.0.1x does not send additional info in CHANNEL_OPEN_FAILURE 
783      messages; bug report from edmundo@rano.org
784    - markus@cvs.openbsd.org  2001/01/31 13:48:09
785      [sshconnect2.c]
786      unused
787    - deraadt@cvs.openbsd.org 2001/02/04 08:23:08
788      [sftp-client.c sftp-server.c]
789      make gcc on the alpha even happier
790
791 20010204
792  - (bal) I think this is the last of the bsd-*.h that don't belong.
793  - (bal) Minor Makefile fix
794  - (bal) openbsd-compat/Makefile minor fix.  Ensure dependancies are done
795    right.
796  - (bal) Changed order of LIB="" in -with-skey due to library resolving.
797  - (bal) next-posix.h changed to bsd-nextstep.h
798  - (djm) OpenBSD CVS sync:
799    - markus@cvs.openbsd.org  2001/02/03 03:08:38
800      [auth-options.c auth-rh-rsa.c auth-rhosts.c auth.c canohost.c]
801      [canohost.h servconf.c servconf.h session.c sshconnect1.c sshd.8]
802      [sshd_config]
803      make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@
804    - markus@cvs.openbsd.org  2001/02/03 03:19:51
805      [ssh.1 sshd.8 sshd_config]
806      Skey is now called ChallengeResponse
807    - markus@cvs.openbsd.org  2001/02/03 03:43:09
808      [sshd.8]
809      use no-pty option in .ssh/authorized_keys* if you need a 8-bit clean
810      channel. note from Erik.Anggard@cygate.se (pr/1659)
811    - stevesk@cvs.openbsd.org 2001/02/03 10:03:06
812      [ssh.1]
813      typos; ok markus@
814    - djm@cvs.openbsd.org     2001/02/04 04:11:56
815      [scp.1 sftp-server.c ssh.1 sshd.8 sftp-client.c sftp-client.h]
816      [sftp-common.c sftp-common.h sftp-int.c sftp-int.h sftp.1 sftp.c]
817      Basic interactive sftp client; ok theo@
818  - (djm) Update RPM specs for new sftp binary
819  - (djm) Update several bits for new optional reverse lookup stuff. I 
820    think I got them all.
821  - (djm) Makefile.in fixes
822  - (stevesk) add mysignal() wrapper and use it for the protocol 2
823    SIGCHLD handler.
824  - (djm) Use setvbuf() instead of setlinebuf(). Suggest from stevesk@
825
826 20010203
827  - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com>
828  - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD
829    based file) to ensure #include space does not get confused.
830  - (bal) Minor Makefile.in tweak.  dirname may not exist on some
831    platforms so builds fail.  (NeXT being a well known one)
832
833 20010202
834  - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
835    <vinschen@redhat.com>
836  - (bal) Makefile fix to use $(MAKE) instead of 'make'  for platforms
837    that use 'gmake'.   Patch by Tim Rice <tim@multitalents.net>
838
839 20010201
840  - (bal) Minor fix to Makefile to stop rebuilding executables if no
841    changes have occured to any of the supporting code.  Patch by
842    Roumen Petrov <roumen.petrov@skalasoft.com>
843
844 20010131
845  - (djm) OpenBSD CVS Sync:
846    - djm@cvs.openbsd.org     2001/01/30 15:48:53
847      [sshconnect.c]
848      Make warning message a little more consistent. ok markus@
849  - (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
850    Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
851    respectively.
852  - (djm) Don't log SSH2 PAM KbdInt responses to debug, they may contain
853    passwords.
854  - (bal) Reorder.  Move all bsd-*, fake-*, next-*, and cygwin* stuff to
855    openbsd-compat/.  And resolve all ./configure and Makefile.in issues
856    assocated.
857
858 20010130
859  - (djm) OpenBSD CVS Sync:
860    - markus@cvs.openbsd.org  2001/01/29 09:55:37
861      [channels.c channels.h clientloop.c serverloop.c]
862      fix select overflow; ok deraadt@ and stevesk@
863    - markus@cvs.openbsd.org  2001/01/29 12:42:35
864      [canohost.c canohost.h channels.c clientloop.c]
865      add get_peer_ipaddr(socket), x11-fwd in ssh2 requires ipaddr, not DNS
866    - markus@cvs.openbsd.org  2001/01/29 12:47:32
867      [rsa.c rsa.h ssh-agent.c sshconnect1.c sshd.c]
868      handle rsa_private_decrypt failures; helps against the Bleichenbacher
869      pkcs#1 attack
870    - djm@cvs.openbsd.org     2001/01/29 05:36:11
871      [ssh.1 ssh.c]
872      Allow invocation of sybsystem by commandline (-s); ok markus@
873  - (stevesk) configure.in: remove duplicate PROG_LS
874
875 20010129
876  - (stevesk) sftp-server.c: use %lld vs. %qd
877
878 20010128
879  - (bal) Put USE_PIPES back into sco3.2v5
880  - (bal) OpenBSD Sync
881    - markus@cvs.openbsd.org 2001/01/28 10:15:34
882      [dispatch.c]
883      re-keying is not supported; ok deraadt@
884    - markus@cvs.openbsd.org 2001/01/28 10:24:04
885      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
886      cleanup AUTHORS sections
887    - markus@cvs.openbsd.org 2001/01/28 10:37:26
888      [sshd.c sshd.8]
889      remove -Q, no longer needed
890    - stevesk@cvs.openbsd.org 2001/01/28 20:36:16
891      [readconf.c ssh.1]
892      ``StrictHostKeyChecking ask'' documentation and small cleanup.
893      ok markus@
894    - stevesk@cvs.openbsd.org 2001/01/28 20:43:25
895      [sshd.8]
896      spelling.  ok markus@
897    - stevesk@cvs.openbsd.org 2001/01/28 20:53:21
898      [xmalloc.c]
899      use size_t for strlen() return.  ok markus@
900    - stevesk@cvs.openbsd.org 2001/01/28 22:27:05
901      [authfile.c]
902      spelling.  use sizeof vs. strlen().  ok markus@
903    - niklas@cvs.openbsd.org 2001/01/29 1:59:14
904      [atomicio.h canohost.h clientloop.h deattack.h dh.h dispatch.h
905       groupaccess.c groupaccess.h hmac.h hostfile.h includes.h kex.h
906       key.h log.h login.h match.h misc.h myproposal.h nchan.ms pathnames.h
907       radix.h readpass.h rijndael.h serverloop.h session.h sftp.h ssh-add.1
908       ssh-dss.h ssh-keygen.1 ssh-keyscan.1 ssh-rsa.h ssh1.h ssh_config
909       sshconnect.h sshd_config tildexpand.h uidswap.h uuencode.h]
910      $OpenBSD$
911   - (bal) Minor auth2.c resync.  Whitespace and moving of an #include.
912
913 20010126
914  - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
915    Petrov <roumen.petrov@skalasoft.com>
916  - (bal) OpenBSD Sync
917    - deraadt@cvs.openbsd.org 2001/01/25 8:06:33
918      [ssh-agent.c]
919      call _exit() in signal handler
920
921 20010125
922  - (djm) Sync bsd-* support files:
923    - deraadt@cvs.openbsd.org 2000/01/26 03:43:20
924      [rresvport.c bindresvport.c]
925      new bindresvport() semantics that itojun, shin, jean-luc and i have
926      agreed on, which will be happy for the future. bindresvport_sa() for
927      sockaddr *, too.  docs later..
928    - deraadt@cvs.openbsd.org 2000/01/24 02:24:21
929      [bindresvport.c]
930      in bindresvport(), if sin is non-NULL, example sin->sin_family for
931      the actual family being processed
932  - (djm) Mention PRNGd in documentation, it is nicer than EGD
933  - (djm) Automatically search for "well-known" EGD/PRNGd sockets in autoconf
934  - (bal) AC_FUNC_STRFTIME added to autoconf
935  - (bal) OpenBSD Resync
936    - stevesk@cvs.openbsd.org 2001/01/24 21:03:50
937      [channels.c]
938      missing freeaddrinfo(); ok markus@
939
940 20010124
941  - (bal) OpenBSD Resync
942    - markus@cvs.openbsd.org 2001/01/23 10:45:10
943      [ssh.h]
944      nuke comment
945  - (bal) no 64bit support patch from Tim Rice <tim@multitalents.net>
946  - (bal) #ifdef around S_IFSOCK if platform does not support it.
947    patch by Tim Rice <tim@multitalents.net>
948  - (bal) fake-regex.h cleanup based on Tim Rice's patch.
949  - (stevesk) sftp-server.c: fix chmod() mode mask
950
951 20010123
952  - (bal) regexp.h typo in configure.in.  Should have been regex.h
953  - (bal) SSH_USER_DIR to _PATH_SSH_USER_DIR patch by stevesk@
954  - (bal) SSH_ASKPASS_DEFAULT to _PATH_SSH_ASKPASS_DEFAULT
955  - (bal) OpenBSD Resync
956    - markus@cvs.openbsd.org 2001/01/22 8:15:00
957      [auth-krb4.c sshconnect1.c]
958      only AFS needs radix.[ch]
959    - markus@cvs.openbsd.org 2001/01/22 8:32:53
960      [auth2.c]
961      no need to include; from mouring@etoh.eviladmin.org
962    - stevesk@cvs.openbsd.org 2001/01/22 16:55:21
963      [key.c]
964      free() -> xfree(); ok markus@
965    - stevesk@cvs.openbsd.org 2001/01/22 17:22:28
966      [sshconnect2.c sshd.c]
967      fix memory leaks in SSH2 key exchange; ok markus@
968    - markus@cvs.openbsd.org 2001/01/22 23:06:39
969      [auth1.c auth2.c readconf.c readconf.h servconf.c servconf.h
970       sshconnect1.c sshconnect2.c sshd.c]
971      rename skey -> challenge response.
972      auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled.
973
974
975 20010122
976  - (bal) OpenBSD Resync
977    - markus@cvs.openbsd.org 2001/01/19 12:45:26 GMT 2001 by markus
978      [servconf.c ssh.h sshd.c]
979      only auth-chall.c needs #ifdef SKEY
980    - markus@cvs.openbsd.org 2001/01/19 15:55:10 GMT 2001 by markus
981      [auth-krb4.c auth-options.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
982       auth1.c auth2.c channels.c clientloop.c dh.c dispatch.c nchan.c
983       packet.c pathname.h readconf.c scp.c servconf.c serverloop.c
984       session.c ssh-add.c ssh-keygen.c ssh-keyscan.c ssh.c ssh.h
985       ssh1.h sshconnect1.c sshd.c ttymodes.c]
986      move ssh1 definitions to ssh1.h, pathnames to pathnames.h
987    - markus@cvs.openbsd.org 2001/01/19 16:48:14
988      [sshd.8]
989      fix typo; from stevesk@
990    - markus@cvs.openbsd.org 2001/01/19 16:50:58
991      [ssh-dss.c]
992      clear and free digest, make consistent with other code (use dlen); from
993      stevesk@
994    - markus@cvs.openbsd.org 2001/01/20 15:55:20 GMT 2001 by markus
995      [auth-options.c auth-options.h auth-rsa.c auth2.c]
996      pass the filename to auth_parse_options()
997    - markus@cvs.openbsd.org 2001/01/20 17:59:40 GMT 2001
998      [readconf.c]
999      fix SIGSEGV from -o ""; problem noted by jehsom@togetherweb.com
1000    - stevesk@cvs.openbsd.org 2001/01/20 18:20:29
1001      [sshconnect2.c]
1002      dh_new_group() does not return NULL.  ok markus@
1003    - markus@cvs.openbsd.org 2001/01/20 21:33:42
1004      [ssh-add.c]
1005      do not loop forever if askpass does not exist; from
1006      andrew@pimlott.ne.mediaone.net
1007    - djm@cvs.openbsd.org 2001/01/20 23:00:56
1008      [servconf.c]
1009      Check for NULL return from strdelim; ok markus
1010    - djm@cvs.openbsd.org 2001/01/20 23:02:07
1011      [readconf.c]
1012      KNF; ok markus
1013    - jakob@cvs.openbsd.org 2001/01/21 9:00:33
1014      [ssh-keygen.1]
1015      remove -R flag; ok markus@
1016    - markus@cvs.openbsd.org 2001/01/21 19:05:40
1017      [atomicio.c automicio.h auth-chall.c auth-krb4.c auth-options.c
1018       auth-options.h auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
1019       auth.c auth.h auth1.c auth2-chall.c auth2.c authfd.c authfile.c
1020       bufaux.c  bufaux.h buffer.c canahost.c canahost.h channels.c
1021       cipher.c cli.c clientloop.c clientloop.h compat.c compress.c
1022       deattack.c dh.c dispatch.c groupaccess.c hmac.c hostfile.c kex.c
1023       key.c key.h log-client.c log-server.c log.c log.h login.c login.h
1024       match.c misc.c misc.h nchan.c packet.c pty.c radix.h readconf.c
1025       readpass.c readpass.h rsa.c scp.c servconf.c serverloop.c serverloop.h
1026       session.c sftp-server.c ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c
1027       ssh-keyscan.c ssh-rsa.c ssh.c ssh.h sshconnect.c sshconnect.h
1028       sshconnect1.c sshconnect2.c sshd.c tildexpand.c tildexpand.h
1029       ttysmodes.c uidswap.c xmalloc.c]
1030      split ssh.h and try to cleanup the #include mess. remove unnecessary
1031      #includes.  rename util.[ch] -> misc.[ch]
1032  - (bal) renamed 'PIDDIR' to '_PATH_SSH_PIDDIR' to match OpenBSD tree
1033  - (bal) Moved #ifdef KRB4 in auth-krb4.c above the #include to resolve
1034    conflict when compiling for non-kerb install
1035  - (bal) removed the #ifdef SKEY in auth1.c to match Markus' changes
1036    on 1/19.
1037
1038 20010120
1039  - (bal) OpenBSD Resync
1040    - markus@cvs.openbsd.org 2001/01/19 12:45:26
1041      [ssh-chall.c servconf.c servconf.h ssh.h sshd.c]
1042      only auth-chall.c needs #ifdef SKEY
1043  - (bal) Slight auth2-pam.c clean up.
1044  - (bal) Includes a fake-regexp.h to be only used if regcomp() is found,
1045    but no 'regexp.h' found (SCO OpenServer 3 lacks the header).
1046
1047 20010119
1048  - (djm) Update versions in RPM specfiles
1049  - (bal) OpenBSD Resync
1050    - markus@cvs.openbsd.org 2001/01/18 16:20:21
1051      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h
1052       sshd.8 sshd.c]
1053      log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many
1054      systems
1055    - markus@cvs.openbsd.org 2001/01/18 16:59:59
1056      [auth-passwd.c auth.c auth.h auth1.c auth2.c serverloop.c session.c
1057       session.h sshconnect1.c]
1058      1) removes fake skey from sshd, since this will be much
1059         harder with /usr/libexec/auth/login_XXX
1060      2) share/unify code used in ssh-1 and ssh-2 authentication (server side)
1061      3) make addition of BSD_AUTH and other challenge reponse methods
1062         easier.
1063    - markus@cvs.openbsd.org 2001/01/18 17:12:43
1064      [auth-chall.c auth2-chall.c]
1065      rename *-skey.c *-chall.c since the files are not skey specific
1066  - (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
1067    to fix NULL pointer deref and fake authloop breakage in PAM code.
1068  - (bal) Updated contrib/cygwin/ by Corinna Vinschen <vinschen@redhat.com>
1069  - (bal) Minor cygwin patch to auth1.c.  Suggested by djm.
1070
1071 20010118
1072  - (bal) Super Sized OpenBSD Resync
1073    - markus@cvs.openbsd.org 2001/01/11 22:14:20 GMT 2001 by markus
1074      [sshd.c]
1075      maxfd+1
1076    - markus@cvs.openbsd.org 2001/01/13 17:59:18
1077      [ssh-keygen.1]
1078      small ssh-keygen manpage cleanup; stevesk@pobox.com
1079    - markus@cvs.openbsd.org 2001/01/13 18:03:07
1080      [scp.c ssh-keygen.c sshd.c]
1081      getopt() returns -1 not EOF; stevesk@pobox.com
1082    - markus@cvs.openbsd.org 2001/01/13 18:06:54
1083      [ssh-keyscan.c]
1084      use SSH_DEFAULT_PORT; from stevesk@pobox.com
1085    - markus@cvs.openbsd.org 2001/01/13 18:12:47
1086      [ssh-keyscan.c]
1087      free() -> xfree(); fix memory leak; from stevesk@pobox.com
1088    - markus@cvs.openbsd.org 2001/01/13 18:14:13
1089      [ssh-add.c]
1090      typo, from stevesk@sweden.hp.com
1091    - markus@cvs.openbsd.org 2001/01/13 18:32:50
1092      [packet.c session.c ssh.c sshconnect.c sshd.c]
1093      split out keepalive from packet_interactive (from dale@accentre.com)
1094      set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too.
1095    - markus@cvs.openbsd.org 2001/01/13 18:36:45
1096      [packet.c packet.h]
1097      reorder, typo
1098    - markus@cvs.openbsd.org 2001/01/13 18:38:00
1099      [auth-options.c]
1100      fix comment
1101    - markus@cvs.openbsd.org 2001/01/13 18:43:31
1102      [session.c]
1103      Wall
1104    - markus@cvs.openbsd.org 2001/01/13 19:14:08
1105      [clientloop.h clientloop.c ssh.c]
1106      move callback to headerfile
1107    - markus@cvs.openbsd.org 2001/01/15 21:40:10
1108      [ssh.c]
1109      use log() instead of stderr
1110    - markus@cvs.openbsd.org 2001/01/15 21:43:51
1111      [dh.c]
1112      use error() not stderr!
1113    - markus@cvs.openbsd.org 2001/01/15 21:45:29
1114      [sftp-server.c]
1115      rename must fail if newpath exists, debug off by default
1116    - markus@cvs.openbsd.org 2001/01/15 21:46:38
1117      [sftp-server.c]
1118      readable long listing for sftp-server, ok deraadt@
1119    - markus@cvs.openbsd.org 2001/01/16 19:20:06
1120      [key.c ssh-rsa.c]
1121      make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from
1122      galb@vandyke.com.  note that you have to delete older ssh2-rsa keys,
1123      since they are in the wrong format, too. they must be removed from
1124      .ssh/authorized_keys2 and .ssh/known_hosts2, etc.
1125      (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP
1126      .ssh/authorized_keys2) additionally, we now check that
1127      BN_num_bits(rsa->n) >= 768.
1128    - markus@cvs.openbsd.org 2001/01/16 20:54:27
1129      [sftp-server.c]
1130      remove some statics. simpler handles; idea from nisse@lysator.liu.se
1131    - deraadt@cvs.openbsd.org 2001/01/16 23:58:08
1132      [bufaux.c radix.c sshconnect.h sshconnect1.c]
1133      indent
1134  - (bal) Added bsd-strmode.[ch] since some non-OpenBSD platforms may
1135    be missing such feature.
1136
1137
1138 20010117
1139  - (djm) Only write random seed file at exit
1140  - (djm) Make PAM support optional, enable with --with-pam
1141  - (djm) Try to use libcrypt on Linux, but link it after OpenSSL (which
1142    provides a crypt() of its own)
1143  - (djm) Avoid a warning in bsd-bindresvport.c
1144  - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This
1145    can cause weird segfaults errors on Solaris
1146  - (djm) Avoid warning in PAM code by making read_passphrase arguments const
1147  - (djm) Add --with-pam to RPM spec files
1148
1149 20010115
1150  - (bal) sftp-server.c change to use chmod() if fchmod() does not exist.
1151  - (bal) utimes() support via utime() interface on machine that lack utimes().
1152
1153 20010114
1154  - (stevesk) initial work for OpenBSD "support supplementary group in
1155    {Allow,Deny}Groups" patch:
1156    - import getgrouplist.c from OpenBSD (bsd-getgrouplist.c)
1157    - add bsd-getgrouplist.h
1158    - new files groupaccess.[ch]
1159    - build but don't use yet (need to merge auth.c changes)
1160  - (stevesk) complete:
1161    - markus@cvs.openbsd.org  2001/01/13 11:56:48
1162      [auth.c sshd.8]
1163      support supplementary group in {Allow,Deny}Groups
1164      from stevesk@pobox.com
1165
1166 20010112
1167  - (bal) OpenBSD Sync
1168    - markus@cvs.openbsd.org 2001/01/10 22:56:22
1169      [bufaux.h bufaux.c sftp-server.c sftp.h getput.h]
1170      cleanup sftp-server implementation:
1171      add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT
1172      parse SSH2_FILEXFER_ATTR_EXTENDED
1173      send SSH2_FX_EOF if readdir returns no more entries
1174      reply to SSH2_FXP_EXTENDED message
1175      use #defines from the draft
1176      move #definations to sftp.h
1177      more info:
1178      http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt
1179    - markus@cvs.openbsd.org 2001/01/10 19:43:20
1180      [sshd.c]
1181      XXX - generate_empheral_server_key() is not safe against races,
1182      because it calls log()
1183    - markus@cvs.openbsd.org 2001/01/09 21:19:50
1184      [packet.c]
1185      allow TCP_NDELAY for ipv6; from netbsd via itojun@
1186
1187 20010110
1188  - (djm) SNI/Reliant Unix needs USE_PIPES and $DISPLAY hack. Report from
1189    Bladt Norbert <Norbert.Bladt@adi.ch>
1190
1191 20010109
1192  - (bal) Resync CVS ID of cli.c
1193  - (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
1194    code.
1195  - (bal) OpenBSD Sync
1196    - markus@cvs.openbsd.org 2001/01/08 22:29:05
1197      [auth2.c compat.c compat.h servconf.c servconf.h sshd.8
1198       sshd_config version.h]
1199      implement option 'Banner /etc/issue.net' for ssh2, move version to
1200      2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner
1201      is enabled).
1202    - markus@cvs.openbsd.org 2001/01/08 22:03:23
1203      [channels.c ssh-keyscan.c]
1204      O_NDELAY -> O_NONBLOCK; thanks stevesk@pobox.com
1205    - markus@cvs.openbsd.org 2001/01/08 21:55:41
1206      [sshconnect1.c]
1207      more cleanups and fixes from stevesk@pobox.com:
1208      1) try_agent_authentication() for loop will overwrite key just
1209         allocated with key_new(); don't alloc
1210      2) call ssh_close_authentication_connection() before exit
1211         try_agent_authentication()
1212      3) free mem on bad passphrase in try_rsa_authentication()
1213    - markus@cvs.openbsd.org 2001/01/08 21:48:17
1214      [kex.c]
1215      missing free; thanks stevesk@pobox.com
1216   - (bal) Detect if clock_t structure exists, if not define it.
1217   - (bal) Detect if O_NONBLOCK exists, if not define it.
1218   - (bal) removed news4-posix.h (now empty)
1219   - (bal) changed bsd-bindresvport.c and bsd-rresvport.c to use 'socklen_t'
1220     instead of 'int'
1221  - (stevesk) sshd_config: sync
1222  - (stevesk) defines.h: remove spurious ``;''
1223
1224 20010108
1225  - (bal) Fixed another typo in cli.c
1226  - (bal) OpenBSD Sync
1227    - markus@cvs.openbsd.org 2001/01/07 21:26:55
1228      [cli.c]
1229      typo
1230    - markus@cvs.openbsd.org 2001/01/07 21:26:55
1231      [cli.c]
1232      missing free, stevesk@pobox.com
1233    - markus@cvs.openbsd.org 2001/01/07 19:06:25
1234      [auth1.c]
1235      missing free, stevesk@pobox.com
1236    - markus@cvs.openbsd.org 2001/01/07 11:28:04
1237      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1
1238       ssh.h sshd.8 sshd.c]
1239      rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
1240      syslog priority changes:
1241              fatal() LOG_ERR  -> LOG_CRIT
1242              log()   LOG_INFO -> LOG_NOTICE
1243  - Updated TODO
1244
1245 20010107
1246  - (bal) OpenBSD Sync
1247    - markus@cvs.openbsd.org 2001/01/06 11:23:27
1248      [ssh-rsa.c]
1249      remove unused
1250    - itojun@cvs.openbsd.org 2001/01/05 08:23:29
1251      [ssh-keyscan.1]
1252      missing .El
1253    - markus@cvs.openbsd.org 2001/01/04 22:41:03
1254      [session.c sshconnect.c]
1255      consistent use of _PATH_BSHELL; from stevesk@pobox.com
1256    - djm@cvs.openbsd.org 2001/01/04 22:35:32
1257      [ssh.1 sshd.8]
1258      Mention AES as available SSH2 Cipher; ok markus
1259    - markus@cvs.openbsd.org 2001/01/04 22:25:58
1260      [sshd.c]
1261      sync usage()/man with defaults; from stevesk@pobox.com
1262    - markus@cvs.openbsd.org 2001/01/04 22:21:26
1263      [sshconnect2.c]
1264      handle SSH2_MSG_USERAUTH_BANNER; fixes bug when connecting to a server
1265      that prints a banner (e.g. /etc/issue.net)
1266
1267 20010105
1268  - (bal) contrib/caldera/ provided by Tim Rice <tim@multitalents.net>
1269  - (bal) bsd-getcwd.c and bsd-setenv.c changed from bcopy() to memmove()
1270
1271 20010104
1272  - (djm) Fix memory leak on systems with BROKEN_GETADDRINFO. Based on
1273    work by Chris Vaughan <vaughan99@yahoo.com>
1274
1275 20010103
1276  - (bal) fixed up sshconnect.c so it was closer inline with the OpenBSD
1277    tree (mainly positioning)
1278  - (bal) OpenSSH CVS Update
1279    - markus@cvs.openbsd.org 2001/01/02 20:41:02
1280      [packet.c]
1281      log remote ip on disconnect; PR 1600 from jcs@rt.fm
1282    - markus@cvs.openbsd.org 2001/01/02 20:50:56
1283      [sshconnect.c]
1284      strict_host_key_checking for host_status != HOST_CHANGED &&
1285      ip_status == HOST_CHANGED
1286  - (bal) authfile.c: Synced CVS ID tag
1287  - (bal) UnixWare 2.0 fixes by Tim Rice <tim@multitalents.net>
1288  - (bal) Disable sftp-server if no 64bit int support exists.  Based on
1289    patch by Tim Rice <tim@multitalents.net>
1290  - (bal) Makefile.in changes to uninstall: target to remove sftp-server
1291    and sftp-server.8 manpage.
1292
1293 20010102
1294  - (bal) OpenBSD CVS Update
1295    - markus@cvs.openbsd.org 2001/01/01 14:52:49
1296      [scp.c]
1297      use shared fatal(); from stevesk@pobox.com
1298
1299 20001231
1300  - (bal) Reverted out of MAXHOSTNAMELEN.  This should be set per OS.
1301    for multiple reasons.
1302  - (bal) Reverted out of a partial NeXT patch.
1303
1304 20001230
1305  - (bal) OpenBSD CVS Update
1306    - markus@cvs.openbsd.org 2000/12/28 18:58:30
1307      [ssh-keygen.c]
1308      enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
1309    - markus@cvs.openbsd.org 2000/12/29 22:19:13
1310      [channels.c]
1311      missing xfree; from vaughan99@yahoo.com
1312  - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
1313  - (bal) if no MAXHOSTNAMELEN is defined.  Default to 64 character defination.
1314    Suggested by Christian Kurz <shorty@debian.org>
1315  - (bal) Add in '.c.o' section to Makefile.in to address make programs that
1316     don't honor CPPFLAGS by default.  Suggested by Lutz Jaenicke
1317     <Lutz.Jaenicke@aet.TU-Cottbus.DE>
1318
1319 20001229
1320  - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
1321    Kurz <shorty@debian.org>
1322  - (bal) OpenBSD CVS Update
1323    - markus@cvs.openbsd.org 2000/12/28 14:25:51
1324      [auth.h auth2.c]
1325      count authentication failures only
1326    - markus@cvs.openbsd.org 2000/12/28 14:25:03
1327      [sshconnect.c]
1328      fingerprint for MITM attacks, too.
1329    - markus@cvs.openbsd.org 2000/12/28 12:03:57
1330      [sshd.8 sshd.c]
1331      document -D
1332    - markus@cvs.openbsd.org 2000/12/27 14:19:21
1333      [serverloop.c]
1334      less chatty
1335    - markus@cvs.openbsd.org 2000/12/27 12:34
1336      [auth1.c sshconnect2.c sshd.c]
1337      typo
1338    - markus@cvs.openbsd.org 2000/12/27 12:30:19
1339      [readconf.c readconf.h ssh.1 sshconnect.c]
1340      new option: HostKeyAlias: allow the user to record the host key
1341      under a different name. This is useful for ssh tunneling over
1342      forwarded connections or if you run multiple sshd's on different
1343      ports on the same machine.
1344    - markus@cvs.openbsd.org 2000/12/27 11:51:53
1345      [ssh.1 ssh.c]
1346      multiple -t force pty allocation, document ORIGINAL_COMMAND
1347    - markus@cvs.openbsd.org 2000/12/27 11:41:31
1348      [sshd.8]
1349      update for ssh-2
1350  - (stevesk) compress.[ch] sync with openbsd; missed in prototype
1351    fix merge.
1352
1353 20001228
1354  - (bal) Patch to add libutil.h to loginrec.c only if the platform has
1355    libutil.h.  Suggested by Pekka Savola <pekka@netcore.fi>
1356  - (djm) Update to new x11-askpass in RPM spec
1357  - (bal) SCO patch to not include <sys/queue.h> since it's unrelated
1358    header.  Patch by Tim Rice <tim@multitalents.net>
1359  - Updated TODO w/ known HP/UX issue
1360  - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the
1361    bad reference to 'NeXT including it else were' on the #ifdef version.
1362
1363 20001227
1364  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
1365    Takumi Yamane <yamtak@b-session.com>
1366  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
1367    by Corinna Vinschen <vinschen@redhat.com>
1368  - (djm) Fix catman-do target for non-bash
1369  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
1370    Takumi Yamane <yamtak@b-session.com>
1371  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
1372    by Corinna Vinschen <vinschen@redhat.com>
1373  - (djm) Fix catman-do target for non-bash
1374  - (bal) Fixed NeXT's lack of CPPFLAGS honoring.
1375  - (bal) ssh-keyscan.c: NeXT (and older BSDs) don't support getrlimit() w/
1376    'RLIMIT_NOFILE'
1377  - (djm) Remove *.Ylonen files. They are no longer in the OpenBSD tree,
1378    the info in COPYING.Ylonen has been moved to the start of each
1379    SSH1-derived file and README.Ylonen is well out of date.
1380
1381 20001223
1382  - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
1383    if a change to config.h has occurred.  Suggested by Gert Doering
1384    <gert@greenie.muc.de>
1385  - (bal) OpenBSD CVS Update:
1386    - markus@cvs.openbsd.org 2000/12/22 16:49:40
1387      [ssh-keygen.c]
1388      fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.com
1389
1390 20001222
1391  - Updated RCSID for pty.c
1392  - (bal) OpenBSD CVS Updates:
1393   - markus@cvs.openbsd.org 2000/12/21 15:10:16
1394     [auth-rh-rsa.c hostfile.c hostfile.h sshconnect.c]
1395     print keyfile:line for changed hostkeys, for deraadt@, ok deraadt@
1396   - markus@cvs.openbsd.org 2000/12/20 19:26:56
1397     [authfile.c]
1398     allow ssh -i userkey for root
1399   - markus@cvs.openbsd.org 2000/12/20 19:37:21
1400     [authfd.c authfd.h kex.c sshconnect2.c sshd.c uidswap.c uidswap.h]
1401     fix prototypes; from stevesk@pobox.com
1402   - markus@cvs.openbsd.org 2000/12/20 19:32:08
1403     [sshd.c]
1404     init pointer to NULL; report from Jan.Ivan@cern.ch
1405   - markus@cvs.openbsd.org 2000/12/19 23:17:54
1406     [auth-krb4.c auth-options.c auth-options.h auth-rhosts.c auth-rsa.c
1407      auth1.c auth2-skey.c auth2.c authfd.c authfd.h authfile.c bufaux.c
1408      bufaux.h buffer.c canohost.c channels.c clientloop.c compress.c
1409      crc32.c deattack.c getput.h hmac.c hmac.h hostfile.c kex.c kex.h
1410      key.c key.h log.c login.c match.c match.h mpaux.c mpaux.h packet.c
1411      packet.h radix.c readconf.c rsa.c scp.c servconf.c servconf.h
1412      serverloop.c session.c sftp-server.c ssh-agent.c ssh-dss.c ssh-dss.h
1413      ssh-keygen.c ssh-keyscan.c ssh-rsa.c ssh-rsa.h ssh.c ssh.h  uuencode.c
1414      uuencode.h sshconnect1.c sshconnect2.c sshd.c tildexpand.c]
1415     replace 'unsigned bla' with 'u_bla' everywhere. also replace 'char
1416     unsigned' with u_char.
1417
1418 20001221
1419  - (stevesk) OpenBSD CVS updates:
1420    - markus@cvs.openbsd.org 2000/12/19 15:43:45
1421      [authfile.c channels.c sftp-server.c ssh-agent.c]
1422      remove() -> unlink() for consistency
1423    - markus@cvs.openbsd.org 2000/12/19 15:48:09
1424      [ssh-keyscan.c]
1425      replace <ssl/x.h> with <openssl/x.h>
1426    - markus@cvs.openbsd.org 2000/12/17 02:33:40
1427      [uidswap.c]
1428      typo; from wsanchez@apple.com
1429
1430 20001220
1431  - (djm) Workaround PAM inconsistencies between Solaris derived PAM code
1432    and Linux-PAM. Based on report and fix from Andrew Morgan
1433    <morgan@transmeta.com>
1434
1435 20001218
1436  - (stevesk) rsa.c: entropy.h not needed.
1437  - (bal) split CFLAGS into CFLAGS and CPPFLAGS in configure.in and Makefile.
1438    Suggested by Wilfredo Sanchez <wsanchez@apple.com>
1439
1440 20001216
1441  - (stevesk) OpenBSD CVS updates:
1442    - markus@cvs.openbsd.org 2000/12/16 02:53:57
1443      [scp.c]
1444      allow + in usernames; request from Florian.Weimer@RUS.Uni-Stuttgart.DE
1445    - markus@cvs.openbsd.org 2000/12/16 02:39:57
1446      [scp.c]
1447      unused; from stevesk@pobox.com
1448
1449 20001215
1450  - (stevesk) Old OpenBSD patch wasn't completely applied:
1451    - markus@cvs.openbsd.org 2000/01/24 22:11:20
1452      [scp.c]
1453      allow '.' in usernames; from jedgar@fxp.org
1454  - (stevesk) OpenBSD CVS updates:
1455    - markus@cvs.openbsd.org 2000/12/13 16:26:53
1456      [ssh-keyscan.c]
1457      fatal already adds \n; from stevesk@pobox.com
1458    - markus@cvs.openbsd.org 2000/12/13 16:25:44
1459      [ssh-agent.c]
1460      remove redundant spaces; from stevesk@pobox.com
1461    - ho@cvs.openbsd.org 2000/12/12 15:50:21
1462      [pty.c]
1463      When failing to set tty owner and mode on a read-only filesystem, don't
1464      abort if the tty already has correct owner and reasonably sane modes.
1465      Example; permit 'root' to login to a firewall with read-only root fs.
1466      (markus@ ok)
1467    - deraadt@cvs.openbsd.org 2000/12/13 06:36:05
1468      [pty.c]
1469      KNF
1470    - markus@cvs.openbsd.org 2000/12/12 14:45:21
1471      [sshd.c]
1472      source port < 1024 is no longer required for rhosts-rsa since it
1473      adds no additional security.
1474    - markus@cvs.openbsd.org 2000/12/12 16:11:49
1475      [ssh.1 ssh.c]
1476      rhosts-rsa is no longer automagically disabled if ssh is not privileged.
1477      UsePrivilegedPort=no disables rhosts-rsa _only_ for old servers.
1478      these changes should not change the visible default behaviour of the ssh client.
1479    - deraadt@cvs.openbsd.org 2000/12/11 10:27:33
1480      [scp.c]
1481      when copying 0-sized files, do not re-print ETA time at completion
1482    - provos@cvs.openbsd.org 2000/12/15 10:30:15
1483      [kex.c kex.h sshconnect2.c sshd.c]
1484      compute diffie-hellman in parallel between server and client. okay markus@
1485
1486 20001213
1487  - (djm) Make sure we reset the SIGPIPE disposition after we fork. Report
1488    from Andreas M. Kirchwitz <amk@krell.zikzak.de>
1489  - (stevesk) OpenBSD CVS update:
1490    - markus@cvs.openbsd.org 2000/12/12 15:30:02
1491      [ssh-keyscan.c ssh.c sshd.c]
1492      consistently use __progname; from stevesk@pobox.com
1493
1494 20001211
1495  - (bal) Applied patch to include ssh-keyscan into Redhat's package, and
1496    patch to install ssh-keyscan manpage.  Patch by Pekka Savola
1497    <pekka@netcore.fi>
1498  - (bal) OpenbSD CVS update
1499    - markus@cvs.openbsd.org 2000/12/10 17:01:53
1500      [sshconnect1.c]
1501      always request new challenge for skey/tis-auth, fixes interop with
1502      other implementations; report from roth@feep.net
1503
1504 20001210
1505  - (bal) OpenBSD CVS updates
1506    - markus@cvs.openbsd.org 2000/12/09 13:41:51
1507      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
1508      undo rijndael changes
1509    - markus@cvs.openbsd.org 2000/12/09 13:48:31
1510      [rijndael.c]
1511      fix byte order bug w/o introducing new implementation
1512    - markus@cvs.openbsd.org 2000/12/09 14:08:27
1513      [sftp-server.c]
1514      "" -> "." for realpath; from vinschen@redhat.com
1515    - markus@cvs.openbsd.org 2000/12/09 14:06:54
1516      [ssh-agent.c]
1517      extern int optind; from stevesk@sweden.hp.com
1518    - provos@cvs.openbsd.org 2000/12/09 23:51:11
1519      [compat.c]
1520      remove unnecessary '\n'
1521
1522 20001209
1523  - (bal) OpenBSD CVS updates:
1524    - djm@cvs.openbsd.org 2000/12/07 4:24:59
1525      [ssh.1]
1526      Typo fix from Wilfredo Sanchez <wsanchez@apple.com>; ok theo
1527
1528 20001207
1529  - (bal) OpenBSD CVS updates:
1530    - markus@cvs.openbsd.org 2000/12/06 22:58:14
1531      [compat.c compat.h packet.c]
1532      disable debug messages for ssh.com/f-secure 2.0.1x, 2.1.0
1533    - markus@cvs.openbsd.org 2000/12/06 23:10:39
1534      [rijndael.c]
1535      unexpand(1)
1536    - markus@cvs.openbsd.org 2000/12/06 23:05:43
1537      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
1538      new rijndael implementation. fixes endian bugs
1539
1540 20001206
1541  - (bal) OpenBSD CVS updates:
1542    - markus@cvs.openbsd.org 2000/12/05 20:34:09
1543      [channels.c channels.h clientloop.c serverloop.c]
1544      async connects for -R/-L; ok deraadt@
1545    - todd@cvs.openssh.org 2000/12/05 16:47:28
1546      [sshd.c]
1547      tweak comment to reflect real location of pid file; ok provos@
1548  - (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
1549    have it (used in ssh-keyscan).
1550  - (stevesk) OpenBSD CVS update:
1551    - markus@cvs.openbsd.org 2000/12/06 19:57:48
1552      [ssh-keyscan.c]
1553      err(3) -> internal error(), from stevesk@sweden.hp.com
1554
1555 20001205
1556  - (bal) OpenBSD CVS updates:
1557    - markus@cvs.openbsd.org 2000/12/04 19:24:02
1558      [ssh-keyscan.c ssh-keyscan.1]
1559      David Maziere's ssh-keyscan, ok niels@
1560  - (bal) Updated Makefile.in to include ssh-keyscan that was just added
1561    to the recent OpenBSD source tree.
1562  - (stevesk) fix typos in contrib/hpux/README
1563
1564 20001204
1565  - (bal) More C functions defined in NeXT that are unaccessable without
1566    defining -POSIX.
1567  - (bal) OpenBSD CVS updates:
1568    - markus@cvs.openbsd.org 2000/12/03 11:29:04
1569      [compat.c]
1570      remove fallback to SSH_BUG_HMAC now that the drafts are updated
1571    - markus@cvs.openbsd.org 2000/12/03 11:27:55
1572      [compat.c]
1573      correctly match "2.1.0.pl2 SSH" etc; from
1574      pekkas@netcore.fi/bugzilla.redhat
1575    - markus@cvs.openbsd.org 2000/12/03 11:15:03
1576      [auth2.c compat.c compat.h sshconnect2.c]
1577      support f-secure/ssh.com 2.0.12; ok niels@
1578
1579 20001203
1580  - (bal) OpenBSD CVS updates:
1581   - markus@cvs.openbsd.org 2000/11/30 22:54:31
1582     [channels.c]
1583     debug->warn if tried to do -R style fwd w/o client requesting this;
1584     ok neils@
1585   - markus@cvs.openbsd.org 2000/11/29 20:39:17
1586     [cipher.c]
1587     des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IV
1588   - markus@cvs.openbsd.org 2000/11/30 18:33:05
1589     [ssh-agent.c]
1590     agents must not dump core, ok niels@
1591   - markus@cvs.openbsd.org 2000/11/30 07:04:02
1592     [ssh.1]
1593     T is for both protocols
1594   - markus@cvs.openbsd.org 2000/12/01 00:00:51
1595     [ssh.1]
1596     typo; from green@FreeBSD.org
1597   - markus@cvs.openbsd.org 2000/11/30 07:02:35
1598     [ssh.c]
1599     check -T before isatty()
1600   - provos@cvs.openbsd.org 2000/11/29 13:51:27
1601     [sshconnect.c]
1602     show IP address and hostname when new key is encountered. okay markus@
1603   - markus@cvs.openbsd.org 2000/11/30 22:53:35
1604     [sshconnect.c]
1605     disable agent/x11/port fwding if hostkey has changed; ok niels@
1606   - marksu@cvs.openbsd.org 2000/11/29 21:11:59
1607     [sshd.c]
1608     sshd -D, startup w/o deamon(), for monitoring scripts or inittab;
1609     from handler@sub-rosa.com and eric@urbanrange.com; ok niels@
1610  - (djm) Added patch from Nalin Dahyabhai <nalin@redhat.com> to enable
1611    PAM authentication using KbdInteractive.
1612  - (djm) Added another TODO
1613
1614 20001202
1615  - (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
1616  - (bal) Irix need some sort of mansubdir, patch by Michael Stone
1617    <mstone@cs.loyola.edu>
1618
1619 20001129
1620  - (djm) Back out all the serverloop.c hacks. sshd will now hang again
1621    if there are background children with open fds.
1622  - (djm) bsd-rresvport.c bzero -> memset
1623  - (djm) Don't fail in defines.h on absence of 64 bit types (we will
1624    still fail during compilation of sftp-server).
1625  - (djm) Fail if ar is not found during configure
1626  - (djm) OpenBSD CVS updates:
1627    - provos@cvs.openbsd.org  2000/11/22 08:38:31
1628      [sshd.8]
1629      talk about /etc/primes, okay markus@
1630    - markus@cvs.openbsd.org  2000/11/23 14:03:48
1631      [ssh.c sshconnect1.c sshconnect2.c]
1632      complain about invalid ciphers for ssh1/ssh2, fall back to reasonable
1633      defaults
1634    - markus@cvs.openbsd.org  2000/11/25 09:42:53
1635      [sshconnect1.c]
1636      reorder check for illegal ciphers, bugreport from espie@
1637    - markus@cvs.openbsd.org  2000/11/25 10:19:34
1638      [ssh-keygen.c ssh.h]
1639      print keytype when generating a key.
1640      reasonable defaults for RSA1/RSA/DSA keys.
1641  - (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
1642    more manpage paths in fixpaths calls
1643  - (djm) Also add xauth path at Pekka's suggestion.
1644  - (djm) Add Redhat RPM patch for AUTHPRIV SyslogFacility
1645
1646 20001125
1647  - (djm) Give up privs when reading seed file
1648
1649 20001123
1650  - (bal) Merge OpenBSD changes:
1651    - markus@cvs.openbsd.org  2000/11/15 22:31:36
1652      [auth-options.c]
1653      case insensitive key options; from stevesk@sweeden.hp.com
1654    - markus@cvs.openbsd.org  2000/11/16 17:55:43
1655      [dh.c]
1656      do not use perror() in sshd, after child is forked()
1657    - markus@cvs.openbsd.org  2000/11/14 23:42:40
1658      [auth-rsa.c]
1659      parse option only if key matches; fix some confusing seen by the client
1660    - markus@cvs.openbsd.org  2000/11/14 23:44:19
1661      [session.c]
1662      check no_agent_forward_flag for ssh-2, too
1663    - markus@cvs.openbsd.org  2000/11/15
1664      [ssh-agent.1]
1665      reorder SYNOPSIS; typo, use .It
1666    - markus@cvs.openbsd.org  2000/11/14 23:48:55
1667      [ssh-agent.c]
1668      do not reorder keys if a key is removed
1669    - markus@cvs.openbsd.org  2000/11/15 19:58:08
1670      [ssh.c]
1671      just ignore non existing user keys
1672    - millert@cvs.openbsd.org  200/11/15 20:24:43
1673      [ssh-keygen.c]
1674      Add missing \n at end of error message.
1675
1676 20001122
1677  - (bal) Minor patch to ensure platforms lacking IRIX job limit supports
1678    are compilable.
1679  - (bal) Updated TODO as of 11/18/2000 with known things to resolve.
1680
1681 20001117
1682  - (bal) Changed from 'primes' to 'primes.out' for consistancy sake.  It
1683    has no affect the output.  Patch by Corinna Vinschen <vinschen@redhat.com>
1684  - (stevesk) Reworked progname support.
1685  - (bal) Misplaced #include "includes.h" in bsd-setproctitle.c.  Patch by
1686    Shinichi Maruyama <marya@st.jip.co.jp>
1687
1688 20001116
1689  - (bal) Added in MAXSYMLINK test in bsd-realpath.c.  Required for some SCO
1690    releases.
1691  - (bal) Make builds work outside of source tree.  Patch by Mark D. Roth
1692    <roth@feep.net>
1693
1694 20001113
1695  - (djm) Add pointer to http://www.imasy.or.jp/~gotoh/connect.c to
1696    contrib/README
1697  - (djm) Merge OpenBSD changes:
1698    - markus@cvs.openbsd.org  2000/11/06 16:04:56
1699      [channels.c channels.h clientloop.c nchan.c serverloop.c]
1700      [session.c ssh.c]
1701      agent forwarding and -R for ssh2, based on work from
1702      jhuuskon@messi.uku.fi
1703    - markus@cvs.openbsd.org  2000/11/06 16:13:27
1704      [ssh.c sshconnect.c sshd.c]
1705      do not disabled rhosts(rsa) if server port > 1024; from
1706      pekkas@netcore.fi
1707    - markus@cvs.openbsd.org  2000/11/06 16:16:35
1708      [sshconnect.c]
1709      downgrade client to 1.3 if server is 1.4; help from mdb@juniper.net
1710    - markus@cvs.openbsd.org  2000/11/09 18:04:40
1711      [auth1.c]
1712      typo; from mouring@pconline.com
1713    - markus@cvs.openbsd.org  2000/11/12 12:03:28
1714      [ssh-agent.c]
1715      off-by-one when removing a key from the agent
1716    - markus@cvs.openbsd.org  2000/11/12 12:50:39
1717      [auth-rh-rsa.c auth2.c authfd.c authfd.h]
1718      [authfile.c hostfile.c kex.c kex.h key.c key.h myproposal.h]
1719      [readconf.c readconf.h rsa.c rsa.h servconf.c servconf.h ssh-add.c]
1720      [ssh-agent.c ssh-keygen.1 ssh-keygen.c ssh.1 ssh.c ssh_config]
1721      [sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config ssh-dss.c]
1722      [ssh-dss.h ssh-rsa.c ssh-rsa.h dsa.c dsa.h]
1723      add support for RSA to SSH2.  please test.
1724      there are now 3 types of keys: RSA1 is used by ssh-1 only,
1725      RSA and DSA are used by SSH2.
1726      you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
1727      keys for SSH2 and use the RSA keys for hostkeys or for user keys.
1728      SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.
1729  - (djm) Fix up Makefile and Redhat init script to create RSA host keys
1730  - (djm) Change to interim version
1731  - (djm) Fix RPM spec file stupidity
1732  - (djm) fixpaths to DSA and RSA keys too
1733
1734 20001112
1735  - (bal) SCO Patch to add needed libraries for configure.in.  Patch by
1736    Phillips Porch <root@theporch.com>
1737  - (bal) IRIX patch to adding Job Limits.  Patch by Denis Parker
1738    <dcp@sgi.com>
1739  - (stevesk) pty.c: HP-UX 10 and 11 don't define TIOCSCTTY.  Add error() to
1740    failed ioctl(TIOCSCTTY) call.
1741
1742 20001111
1743  - (djm) Added /etc/primes for kex DH group neg, fixup Makefile.in and
1744    packaging files
1745  - (djm) Fix new Makefile.in warnings
1746  - (djm) Fix vsprintf("%h") in bsd-snprintf.c, short int va_args are
1747    promoted to type int. Report and fix from Dan Astoorian
1748    <djast@cs.toronto.edu>
1749  - (djm) Hardwire sysconfdir in RPM spec files as some RPM versions get
1750    it wrong. Report from Bennett Todd <bet@rahul.net>
1751
1752 20001110
1753  - (bal) Fixed dropped answer from skey_keyinfo() in auth1.c
1754  - (bal) Changed from --with-skey to --with-skey=PATH in configure.in
1755  - (bal) Added in check to verify S/Key library is being detected in
1756    configure.in
1757  - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif.
1758    Patch by Mark Miller <markm@swoon.net>
1759  - (bal) Added 'util.h' header to loginrec.c only if HAVE_UTIL_H is defined
1760    to remove warnings under MacOS X.  Patch by Mark Miller <markm@swoon.net>
1761  - (bal) Fixed LDFLAG mispelling in configure.in for --with-afs
1762
1763 20001107
1764  - (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
1765    Mark Miller <markm@swoon.net>
1766  - (bal) sshd.init files corrected to assign $? to RETVAL.  Patch by
1767    Jarno Huuskonen <jhuuskon@messi.uku.fi>
1768  - (bal) fixpaths fixed to stop it from quitely failing. Patch by
1769    Mark D. Roth <roth@feep.net>
1770
1771 20001106
1772  - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
1773  - (djm) Manually fix up missed diff hunks (mainly RCS idents)
1774  - (djm) Remove UPGRADING document in favour of a link to the better
1775    maintained FAQ on www.openssh.com
1776  - (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
1777    <pekkas@netcore.fi>
1778  - (djm) Don't need X11-askpass in RPM spec file if building without it
1779    from Pekka Savola <pekkas@netcore.fi>
1780  - (djm) Release 2.3.0p1
1781  - (bal) typo in configure.in in regards to --with-ldflags from Marko
1782    Asplund <aspa@kronodoc.fi>
1783  - (bal) fixed next-posix.h.  Forgot prototype of getppid().
1784
1785 20001105
1786  - (bal) Sync with OpenBSD:
1787    - markus@cvs.openbsd.org 2000/10/31 9:31:58
1788      [compat.c]
1789      handle all old openssh versions
1790    - markus@cvs.openbsd.org 2000/10/31 13:1853
1791      [deattack.c]
1792      so that large packets do not wrap "n"; from netbsd
1793  - (bal) rijndel.c - fix up RCSID to match OpenBSD tree
1794  - (bal) auth2-skey.c - Checked in.  Missing from portable tree.
1795  - (bal) Reworked NEWS-OS and NeXT ports to extract waitpid() and
1796    setsid() into more common files
1797  - (stevesk) pty.c: use __hpux to identify HP-UX.
1798  - (bal) Missed auth-skey.o in Makefile.in and minor correction to
1799    bsd-waitpid.c
1800
1801 20001029
1802  - (stevesk) Fix typo in auth.c: USE_PAM not PAM
1803  - (stevesk) Create contrib/cygwin/ directory; patch from
1804    Corinna Vinschen <vinschen@redhat.com>
1805  - (bal) Resolved more $xno and $xyes issues in configure.in
1806  - (bal) next-posix.h - spelling and forgot a prototype
1807
1808 20001028
1809  - (djm) fix select hack in serverloop.c from Philippe WILLEM
1810    <Philippe.WILLEM@urssaf.fr>
1811  - (djm) Fix mangled AIXAUTHENTICATE code
1812  - (djm) authctxt->pw may be NULL. Fix from Markus Friedl
1813    <markus.friedl@informatik.uni-erlangen.de>
1814  - (djm) Sync with OpenBSD:
1815    - markus@cvs.openbsd.org  2000/10/16 15:46:32
1816      [ssh.1]
1817      fixes from pekkas@netcore.fi
1818    - markus@cvs.openbsd.org  2000/10/17 14:28:11
1819      [atomicio.c]
1820      return number of characters processed; ok deraadt@
1821    - markus@cvs.openbsd.org  2000/10/18 12:04:02
1822      [atomicio.c]
1823      undo
1824    - markus@cvs.openbsd.org  2000/10/18 12:23:02
1825      [scp.c]
1826      replace atomicio(read,...) with read(); ok deraadt@
1827    - markus@cvs.openbsd.org  2000/10/18 12:42:00
1828      [session.c]
1829      restore old record login behaviour
1830    - deraadt@cvs.openbsd.org 2000/10/19 10:41:13
1831      [auth-skey.c]
1832      fmt string problem in unused code
1833    - provos@cvs.openbsd.org  2000/10/19 10:45:16
1834      [sshconnect2.c]
1835      don't reference freed memory. okay deraadt@
1836    - markus@cvs.openbsd.org  2000/10/21 11:04:23
1837      [canohost.c]
1838      typo, eramore@era-t.ericsson.se; ok niels@
1839    - markus@cvs.openbsd.org  2000/10/23 13:31:55
1840      [cipher.c]
1841      non-alignment dependent swap_bytes(); from
1842      simonb@wasabisystems.com/netbsd
1843    - markus@cvs.openbsd.org  2000/10/26 12:38:28
1844      [compat.c]
1845      add older vandyke products
1846    - markus@cvs.openbsd.org  2000/10/27 01:32:19
1847      [channels.c channels.h clientloop.c serverloop.c session.c]
1848      [ssh.c util.c]
1849      enable non-blocking IO on channels, and tty's (except for the
1850      client ttys).
1851
1852 20001027
1853  - (djm) Increase REKEY_BYTES to 2^24 for arc4random
1854
1855 20001025
1856  - (djm) Added WARNING.RNG file and modified configure to ask users of the
1857    builtin entropy code to read it.
1858  - (djm) Prefer builtin regex to PCRE.
1859  - (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
1860  - (bal) Apply fixes to configure.in pointed out by Pavel Roskin
1861    <proski@gnu.org>
1862
1863 20001020
1864  - (djm) Don't define _REENTRANT for SNI/Reliant Unix
1865  - (bal) Imported NEWS-OS waitpid() macros into NeXT.  Since implementation
1866    is more correct then current version.
1867
1868 20001018
1869  - (stevesk) Add initial support for setproctitle().  Current
1870    support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
1871  - (stevesk) Add egd startup scripts to contrib/hpux/
1872
1873 20001017
1874  - (djm) Add -lregex to cywin libs from Corinna Vinschen
1875    <vinschen@cygnus.com>
1876  - (djm) Don't rely on atomicio's retval to determine length of askpass
1877    supplied passphrase. Problem report from Lutz Jaenicke
1878    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
1879  - (bal) Changed from GNU rx to PCRE on suggestion from djm.
1880  - (bal) Integrated Sony NEWS-OS patches from NAKAJI Hirouyuki
1881    <nakaji@tutrp.tut.ac.jp>
1882
1883 20001016
1884  - (djm) Sync with OpenBSD:
1885    - markus@cvs.openbsd.org  2000/10/14 04:01:15
1886      [cipher.c]
1887      debug3
1888    - markus@cvs.openbsd.org  2000/10/14 04:07:23
1889      [scp.c]
1890      remove spaces from arguments; from djm@mindrot.org
1891    - markus@cvs.openbsd.org  2000/10/14 06:09:46
1892      [ssh.1]
1893      Cipher is for SSH-1 only
1894    - markus@cvs.openbsd.org  2000/10/14 06:12:09
1895      [servconf.c servconf.h serverloop.c session.c sshd.8]
1896      AllowTcpForwarding; from naddy@
1897    - markus@cvs.openbsd.org  2000/10/14 06:16:56
1898      [auth2.c compat.c compat.h sshconnect2.c version.h]
1899      OpenSSH_2.3; note that is is not complete, but the version number
1900      needs to be changed for interoperability reasons
1901    - markus@cvs.openbsd.org  2000/10/14 06:19:45
1902      [auth-rsa.c]
1903      do not send RSA challenge if key is not allowed by key-options; from
1904      eivind@ThinkSec.com
1905    - markus@cvs.openbsd.org  2000/10/15 08:14:01
1906      [rijndael.c session.c]
1907      typos; from stevesk@sweden.hp.com
1908    - markus@cvs.openbsd.org  2000/10/15 08:18:31
1909      [rijndael.c]
1910      typo
1911  - (djm) Copy manpages back over from OpenBSD - too tedious to wade
1912    through diffs
1913  - (djm) Added condrestart to Redhat init script. Patch from Pekka Savola
1914    <pekkas@netcore.fi>
1915  - (djm) Update version in Redhat spec file
1916  - (djm) Merge some of Nalin Dahyabhai <nalin@redhat.com> changes from the
1917    Redhat 7.0 spec file
1918  - (djm) Make inability to read/write PRNG seedfile non-fatal
1919
1920
1921 20001015
1922  - (djm) Fix ssh2 hang on background processes at logout.
1923
1924 20001014
1925  - (bal) Add support for realpath and getcwd for platforms with broken
1926    or missing realpath implementations for sftp-server.
1927  - (bal) Corrected mistake in INSTALL in regards to GNU rx library
1928  - (bal) Add support for GNU rx library for those lacking regexp support
1929  - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
1930  - (djm) Revert SSH2 serverloop hack, will find a better way.
1931  - (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
1932    from Martin Johansson <fatbob@acc.umu.se>
1933  - (djm) Big OpenBSD sync:
1934    - markus@cvs.openbsd.org  2000/09/30 10:27:44
1935      [log.c]
1936      allow loglevel debug
1937    - markus@cvs.openbsd.org  2000/10/03 11:59:57
1938      [packet.c]
1939      hmac->mac
1940    - markus@cvs.openbsd.org  2000/10/03 12:03:03
1941      [auth-krb4.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth1.c]
1942      move fake-auth from auth1.c to individual auth methods, disables s/key in
1943      debug-msg
1944    - markus@cvs.openbsd.org  2000/10/03 12:16:48
1945      ssh.c
1946      do not resolve canonname, i have no idea why this was added oin ossh
1947    - markus@cvs.openbsd.org  2000/10/09 15:30:44
1948      ssh-keygen.1 ssh-keygen.c
1949      -X now reads private ssh.com DSA keys, too.
1950    - markus@cvs.openbsd.org  2000/10/09 15:32:34
1951      auth-options.c
1952      clear options on every call.
1953    - markus@cvs.openbsd.org  2000/10/09 15:51:00
1954      authfd.c authfd.h
1955      interop with ssh-agent2, from <res@shore.net>
1956    - markus@cvs.openbsd.org  2000/10/10 14:20:45
1957      compat.c
1958      use rexexp for version string matching
1959    - provos@cvs.openbsd.org  2000/10/10 22:02:18
1960      [kex.c kex.h myproposal.h ssh.h ssh2.h sshconnect2.c sshd.c dh.c dh.h]
1961      First rough implementation of the diffie-hellman group exchange.  The
1962      client can ask the server for bigger groups to perform the diffie-hellman
1963      in, thus increasing the attack complexity when using ciphers with longer
1964      keys.  University of Windsor provided network, T the company.
1965    - markus@cvs.openbsd.org  2000/10/11 13:59:52
1966      [auth-rsa.c auth2.c]
1967      clear auth options unless auth sucessfull
1968    - markus@cvs.openbsd.org  2000/10/11 14:00:27
1969      [auth-options.h]
1970      clear auth options unless auth sucessfull
1971    - markus@cvs.openbsd.org  2000/10/11 14:03:27
1972      [scp.1 scp.c]
1973      support 'scp -o' with help from mouring@pconline.com
1974    - markus@cvs.openbsd.org  2000/10/11 14:11:35
1975      [dh.c]
1976      Wall
1977    - markus@cvs.openbsd.org  2000/10/11 14:14:40
1978      [auth.h auth2.c readconf.c readconf.h readpass.c servconf.c servconf.h]
1979      [ssh.h sshconnect2.c sshd_config auth2-skey.c cli.c cli.h]
1980      add support for s/key (kbd-interactive) to ssh2, based on work by
1981      mkiernan@avantgo.com and me
1982    - markus@cvs.openbsd.org  2000/10/11 14:27:24
1983      [auth.c auth1.c auth2.c authfile.c cipher.c cipher.h kex.c kex.h]
1984      [myproposal.h packet.c readconf.c session.c ssh.c ssh.h sshconnect1.c]
1985      [sshconnect2.c sshd.c]
1986      new cipher framework
1987    - markus@cvs.openbsd.org  2000/10/11 14:45:21
1988      [cipher.c]
1989      remove DES
1990    - markus@cvs.openbsd.org  2000/10/12 03:59:20
1991      [cipher.c cipher.h sshconnect1.c sshconnect2.c sshd.c]
1992      enable DES in SSH-1 clients only
1993    - markus@cvs.openbsd.org  2000/10/12 08:21:13
1994      [kex.h packet.c]
1995      remove unused
1996    - markus@cvs.openbsd.org  2000/10/13 12:34:46
1997      [sshd.c]
1998      Kludge for F-Secure Macintosh < 1.0.2; appro@fy.chalmers.se
1999    - markus@cvs.openbsd.org  2000/10/13 12:59:15
2000      [cipher.c cipher.h myproposal.h  rijndael.c rijndael.h]
2001      rijndael/aes support
2002    - markus@cvs.openbsd.org  2000/10/13 13:10:54
2003      [sshd.8]
2004      more info about -V
2005    - markus@cvs.openbsd.org  2000/10/13 13:12:02
2006      [myproposal.h]
2007      prefer no compression
2008  - (djm) Fix scp user@host handling
2009  - (djm) Don't clobber ssh_prng_cmds on install
2010  - (stevesk) Include config.h in rijndael.c so we define intXX_t and
2011    u_intXX_t types on all platforms.
2012  - (stevesk) rijndael.c: cleanup missing declaration warnings.
2013  - (stevesk) ~/.hushlogin shouldn't cause required password change to
2014    be bypassed.
2015  - (stevesk) Display correct path to ssh-askpass in configure output.
2016    Report from Lutz Jaenicke.
2017
2018 20001007
2019  - (stevesk) Print PAM return value in PAM log messages to aid
2020    with debugging.
2021  - (stevesk) Fix detection of pw_class struct member in configure;
2022    patch from KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp>
2023
2024 20001002
2025  - (djm) Fix USER_PATH, report from Kevin Steves <stevesk@sweden.hp.com>
2026  - (djm) Add host system and CC to end-of-configure report. Suggested by
2027    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2028
2029 20000931
2030  - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com>
2031
2032 20000930
2033  - (djm) Irix ssh_prng_cmds path fix from Pekka Savola <pekkas@netcore.fi>
2034  - (djm) Support in bsd-snprintf.c for long long conversions from
2035    Ben Lindstrom <mouring@pconline.com>
2036  - (djm) Cleanup NeXT support from Ben Lindstrom <mouring@pconline.com>
2037  - (djm) Ignore SIGPIPEs from serverloop to child. Fixes crashes with
2038    very short lived X connections. Bug report from Tobias Oetiker
2039    <oetiker@ee.ethz.ch>. Fix from Markus Friedl <markus@cvs.openbsd.org>
2040  - (djm) Add recent InitScripts as a RPM dependancy for openssh-server
2041    patch from Pekka Savola <pekkas@netcore.fi>
2042  - (djm) Forgot to cvs add LICENSE file
2043  - (djm) Add LICENSE to RPM spec files
2044  - (djm) CVS OpenBSD sync:
2045    - markus@cvs.openbsd.org  2000/09/26 13:59:59
2046      [clientloop.c]
2047      use debug2
2048    - markus@cvs.openbsd.org  2000/09/27 15:41:34
2049      [auth2.c sshconnect2.c]
2050      use key_type()
2051    - markus@cvs.openbsd.org  2000/09/28 12:03:18
2052      [channels.c]
2053      debug -> debug2 cleanup
2054  - (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
2055    strip "/dev/"). Fix loginrec.c based on patch from Alain St-Denis
2056    <Alain.St-Denis@ec.gc.ca>
2057  - (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
2058    Problem was caused by interrupted read in ssh-add. Report from Donald
2059    J. Barry <don@astro.cornell.edu>
2060
2061 20000929
2062  - (djm) Fix SSH2 not terminating until all background tasks done problem.
2063  - (djm) Another off-by-one fix from Pavel Kankovsky
2064    <peak@argo.troja.mff.cuni.cz>
2065  - (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
2066    tidy necessary differences. Use Markus' new debugN() in entropy.c
2067  - (djm) Merged big SCO portability patch from Tim Rice
2068    <tim@multitalents.net>
2069
2070 20000926
2071  - (djm) Update X11-askpass to 1.0.2 in RPM spec file
2072  - (djm) Define _REENTRANT to pickup strtok_r() on HP/UX
2073  - (djm) Security: fix off-by-one buffer overrun in fake-getnameinfo.c.
2074    Report and fix from Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
2075
2076 20000924
2077  - (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
2078  - (djm) A bit more cleanup - created cygwin_util.h
2079  - (djm) Include strtok_r() from OpenBSD libc. Fixes report from Mark Miller
2080    <markm@swoon.net>
2081
2082 20000923
2083  - (djm) Fix address logging in utmp from Kevin Steves
2084    <stevesk@sweden.hp.com>
2085  - (djm) Redhat spec and manpage fixes from Pekka Savola <pekkas@netcore.fi>
2086  - (djm) Seperate tests for int64_t and u_int64_t types
2087  - (djm) Tweak password expiry checking at suggestion of Kevin Steves
2088    <stevesk@sweden.hp.com>
2089  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
2090  - (djm) Use printf %lld instead of %qd in sftp-server.c. Fix from
2091    Michael Stone <mstone@cs.loyola.edu>
2092  - (djm) OpenBSD CVS sync:
2093    - markus@cvs.openbsd.org  2000/09/17 09:38:59
2094      [sshconnect2.c sshd.c]
2095      fix DEBUG_KEXDH
2096    - markus@cvs.openbsd.org  2000/09/17 09:52:51
2097      [sshconnect.c]
2098      yes no; ok niels@
2099    - markus@cvs.openbsd.org  2000/09/21 04:55:11
2100      [sshd.8]
2101      typo
2102    - markus@cvs.openbsd.org  2000/09/21 05:03:54
2103      [serverloop.c]
2104      typo
2105    - markus@cvs.openbsd.org  2000/09/21 05:11:42
2106      scp.c
2107      utime() to utimes(); mouring@pconline.com
2108    - markus@cvs.openbsd.org  2000/09/21 05:25:08
2109      sshconnect2.c
2110      change login logic in ssh2, allows plugin of other auth methods
2111    - markus@cvs.openbsd.org  2000/09/21 05:25:35
2112      [auth2.c channels.c channels.h clientloop.c dispatch.c dispatch.h]
2113      [serverloop.c]
2114      add context to dispatch_run
2115    - markus@cvs.openbsd.org  2000/09/21 05:07:52
2116      authfd.c authfd.h ssh-agent.c
2117      bug compat for old ssh.com software
2118
2119 20000920
2120  - (djm) Fix bad path substitution. Report from Andrew Miner
2121    <asminer@cs.iastate.edu>
2122
2123 20000916
2124  - (djm) Fix SSL search order from Lutz Jaenicke
2125    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2126  - (djm) New SuSE spec from Corinna Vinschen <corinna@vinschen.de>
2127  - (djm) Update CygWin support from Corinna Vinschen <vinschen@cygnus.com>
2128  - (djm) Use a real struct sockaddr inside the fake struct sockaddr_storage.
2129    Patch from Larry Jones <larry.jones@sdrc.com>
2130  - (djm) Add Steve VanDevender's <stevev@darkwing.uoregon.edu> PAM
2131    password change patch.
2132  - (djm) Bring licenses on my stuff in line with OpenBSD's
2133  - (djm) Cleanup auth-passwd.c and unify HP/UX authentication. Patch from
2134    Kevin Steves <stevesk@sweden.hp.com>
2135  - (djm) Shadow expiry check fix from Pavel Troller <patrol@omni.sinus.cz>
2136  - (djm) Re-enable int64_t types - we need them for sftp
2137  - (djm) Use libexecdir from configure , rather than libexecdir/ssh
2138  - (djm) Update Redhat SPEC file accordingly
2139  - (djm) Add Kevin Steves <stevesk@sweden.hp.com> HP/UX contrib files
2140  - (djm) Add Charles Levert <charles@comm.polymtl.ca> getpgrp patch
2141  - (djm) Fix password auth on HP/UX 10.20. Patch from Dirk De Wachter
2142    <Dirk.DeWachter@rug.ac.be>
2143  - (djm) Fixprogs and entropy list fixes from Larry Jones
2144    <larry.jones@sdrc.com>
2145  - (djm) Fix for SuSE spec file from Takashi YOSHIDA
2146    <tyoshida@gemini.rc.kyushu-u.ac.jp>
2147  - (djm) Merge OpenBSD changes:
2148    - markus@cvs.openbsd.org  2000/09/05 02:59:57
2149      [session.c]
2150      print hostname (not hushlogin)
2151    - markus@cvs.openbsd.org  2000/09/05 13:18:48
2152      [authfile.c ssh-add.c]
2153      enable ssh-add -d for DSA keys
2154    - markus@cvs.openbsd.org  2000/09/05 13:20:49
2155      [sftp-server.c]
2156      cleanup
2157    - markus@cvs.openbsd.org  2000/09/06 03:46:41
2158      [authfile.h]
2159      prototype
2160    - deraadt@cvs.openbsd.org 2000/09/07 14:27:56
2161      [ALL]
2162      cleanup copyright notices on all files.  I have attempted to be
2163      accurate with the details.  everything is now under Tatu's licence
2164      (which I copied from his readme), and/or the core-sdi bsd-ish thing
2165      for deattack, or various openbsd developers under a 2-term bsd
2166      licence.  We're not changing any rules, just being accurate.
2167    - markus@cvs.openbsd.org  2000/09/07 14:40:30
2168      [channels.c channels.h clientloop.c serverloop.c ssh.c]
2169      cleanup window and packet sizes for ssh2 flow control; ok niels
2170    - markus@cvs.openbsd.org  2000/09/07 14:53:00
2171      [scp.c]
2172      typo
2173    - markus@cvs.openbsd.org  2000/09/07 15:13:37
2174      [auth-options.c auth-options.h auth-rh-rsa.c auth-rsa.c auth.c]
2175      [authfile.h canohost.c channels.h compat.c hostfile.h log.c match.h]
2176      [pty.c readconf.c]
2177      some more Copyright fixes
2178    - markus@cvs.openbsd.org  2000/09/08 03:02:51
2179      [README.openssh2]
2180      bye bye
2181    - deraadt@cvs.openbsd.org 2000/09/11 18:38:33
2182      [LICENCE cipher.c]
2183      a few more comments about it being ARC4 not RC4
2184    - markus@cvs.openbsd.org  2000/09/12 14:53:11
2185      [log-client.c log-server.c log.c ssh.1 ssh.c ssh.h sshd.8 sshd.c]
2186      multiple debug levels
2187    - markus@cvs.openbsd.org  2000/09/14 14:25:15
2188      [clientloop.c]
2189      typo
2190    - deraadt@cvs.openbsd.org 2000/09/15 01:13:51
2191      [ssh-agent.c]
2192      check return value for setenv(3) for failure, and deal appropriately
2193
2194 20000913
2195  - (djm) Fix server not exiting with jobs in background.
2196
2197 20000905
2198  - (djm) Import OpenBSD CVS changes
2199    - markus@cvs.openbsd.org  2000/08/31 15:52:24
2200      [Makefile sshd.8 sshd_config sftp-server.8 sftp-server.c]
2201      implement a SFTP server. interops with sftp2, scp2 and the windows
2202      client from ssh.com
2203    - markus@cvs.openbsd.org  2000/08/31 15:56:03
2204      [README.openssh2]
2205      sync
2206    - markus@cvs.openbsd.org  2000/08/31 16:05:42
2207      [session.c]
2208      Wall
2209    - markus@cvs.openbsd.org  2000/08/31 16:09:34
2210      [authfd.c ssh-agent.c]
2211      add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensions
2212    - deraadt@cvs.openbsd.org 2000/09/01 09:25:13
2213      [scp.1 scp.c]
2214      cleanup and fix -S support; stevesk@sweden.hp.com
2215    - markus@cvs.openbsd.org  2000/09/01 16:29:32
2216      [sftp-server.c]
2217      portability fixes
2218    - markus@cvs.openbsd.org  2000/09/01 16:32:41
2219      [sftp-server.c]
2220      fix cast; mouring@pconline.com
2221    - itojun@cvs.openbsd.org  2000/09/03 09:23:28
2222      [ssh-add.1 ssh.1]
2223      add missing .El against .Bl.
2224    - markus@cvs.openbsd.org  2000/09/04 13:03:41
2225      [session.c]
2226      missing close; ok theo
2227    - markus@cvs.openbsd.org  2000/09/04 13:07:21
2228      [session.c]
2229      fix get_last_login_time order; from andre@van-veen.de
2230    - markus@cvs.openbsd.org  2000/09/04 13:10:09
2231      [sftp-server.c]
2232      more cast fixes; from mouring@pconline.com
2233    - markus@cvs.openbsd.org  2000/09/04 13:06:04
2234      [session.c]
2235      set SSH_ORIGINAL_COMMAND; from Leakin@dfw.nostrum.com, bet@rahul.net
2236  - (djm) Cleanup after import. Fix sftp-server compilation, Makefile
2237  - (djm) Merge cygwin support from Corinna Vinschen <vinschen@cygnus.com>
2238
2239 20000903
2240  - (djm) Fix Redhat init script
2241
2242 20000901
2243  - (djm) Pick up Jim's new X11-askpass
2244  - (djm) Release 2.2.0p1
2245
2246 20000831
2247  - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
2248    <acox@cv.telegroup.com>
2249  - (djm) Pick up new version (2.2.0) from OpenBSD CVS
2250
2251 20000830
2252  - (djm) Compile warning fixes from Mark Miller <markm@swoon.net>
2253  - (djm) Periodically rekey arc4random
2254  - (djm) Clean up diff against OpenBSD.
2255  - (djm) HPUX 11 needs USE_PIPES as well: Kevin Steves
2256    <stevesk@sweden.hp.com>
2257  - (djm) Quieten the pam delete credentials error message
2258  - (djm) Fix printing of $DISPLAY hack if set by system type. Report from
2259    Kevin Steves <stevesk@sweden.hp.com>
2260  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
2261  - (djm) Fix doh in bsd-arc4random.c
2262
2263 20000829
2264  - (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
2265    Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
2266    Garrick James <garrick@james.net>
2267  - (djm) Check for SCO pty naming style (ptyp%d/ttyp%d). Based on fix from
2268    Bastian Trompetter <btrompetter@firemail.de>
2269  - (djm) NeXT tweaks from Ben Lindstrom <mouring@pconline.com>
2270  - More OpenBSD updates:
2271    - deraadt@cvs.openbsd.org 2000/08/24 15:46:59
2272      [scp.c]
2273      off_t in sink, to fix files > 2GB, i think, test is still running ;-)
2274    - deraadt@cvs.openbsd.org 2000/08/25 10:10:06
2275      [session.c]
2276      Wall
2277    - markus@cvs.openbsd.org  2000/08/26 04:33:43
2278      [compat.c]
2279      ssh.com-2.3.0
2280    - markus@cvs.openbsd.org  2000/08/27 12:18:05
2281      [compat.c]
2282      compatibility with future ssh.com versions
2283    - deraadt@cvs.openbsd.org 2000/08/27 21:50:55
2284      [auth-krb4.c session.c ssh-add.c sshconnect.c uidswap.c]
2285      print uid/gid as unsigned
2286    - markus@cvs.openbsd.org  2000/08/28 13:51:00
2287      [ssh.c]
2288      enable -n and -f for ssh2
2289    - markus@cvs.openbsd.org  2000/08/28 14:19:53
2290      [ssh.c]
2291      allow combination of -N and -f
2292    - markus@cvs.openbsd.org  2000/08/28 14:20:56
2293      [util.c]
2294      util.c
2295    - markus@cvs.openbsd.org  2000/08/28 14:22:02
2296      [util.c]
2297      undo
2298    - markus@cvs.openbsd.org  2000/08/28 14:23:38
2299      [util.c]
2300      don't complain if setting NONBLOCK fails with ENODEV
2301
2302 20000823
2303  - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
2304    Avoids "scp never exits" problem. Reports from Lutz Jaenicke
2305    <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA
2306    <kajiyama@grad.sccs.chukyo-u.ac.jp>
2307  - (djm) Pick up LOGIN_PROGRAM from environment or PATH if not set by headers
2308  - (djm) Add local version to version.h
2309  - (djm) Don't reseed arc4random everytime it is used
2310  - (djm) OpenBSD CVS updates:
2311    - deraadt@cvs.openbsd.org 2000/08/18 20:07:23
2312      [ssh.c]
2313      accept remsh as a valid name as well; roman@buildpoint.com
2314    - deraadt@cvs.openbsd.org 2000/08/18 20:17:13
2315      [deattack.c crc32.c packet.c]
2316      rename crc32() to ssh_crc32() to avoid zlib name clash.  do not move to
2317      libz crc32 function yet, because it has ugly "long"'s in it;
2318      oneill@cs.sfu.ca
2319    - deraadt@cvs.openbsd.org 2000/08/18 20:26:08
2320      [scp.1 scp.c]
2321      -S prog support; tv@debian.org
2322    - deraadt@cvs.openbsd.org 2000/08/18 20:50:07
2323      [scp.c]
2324      knf
2325    - deraadt@cvs.openbsd.org 2000/08/18 20:57:33
2326      [log-client.c]
2327      shorten
2328    - markus@cvs.openbsd.org  2000/08/19 12:48:11
2329      [channels.c channels.h clientloop.c ssh.c ssh.h]
2330      support for ~. in ssh2
2331    - deraadt@cvs.openbsd.org 2000/08/19 15:29:40
2332      [crc32.h]
2333      proper prototype
2334    - markus@cvs.openbsd.org  2000/08/19 15:34:44
2335      [authfd.c authfd.h key.c key.h ssh-add.1 ssh-add.c ssh-agent.1]
2336      [ssh-agent.c ssh-keygen.c sshconnect1.c sshconnect2.c Makefile]
2337      [fingerprint.c fingerprint.h]
2338      add SSH2/DSA support to the agent and some other DSA related cleanups.
2339      (note that we cannot talk to ssh.com's ssh2 agents)
2340    - markus@cvs.openbsd.org  2000/08/19 15:55:52
2341      [channels.c channels.h clientloop.c]
2342      more ~ support for ssh2
2343    - markus@cvs.openbsd.org  2000/08/19 16:21:19
2344      [clientloop.c]
2345      oops
2346    - millert@cvs.openbsd.org 2000/08/20 12:25:53
2347      [session.c]
2348      We have to stash the result of get_remote_name_or_ip() before we
2349      close our socket or getpeername() will get EBADF and the process
2350      will exit.  Only a problem for "UseLogin yes".
2351    - millert@cvs.openbsd.org 2000/08/20 12:30:59
2352      [session.c]
2353      Only check /etc/nologin if "UseLogin no" since login(1) may have its
2354      own policy on determining who is allowed to login when /etc/nologin
2355      is present.  Also use the _PATH_NOLOGIN define.
2356    - millert@cvs.openbsd.org 2000/08/20 12:42:43
2357      [auth1.c auth2.c session.c ssh.c]
2358      Add calls to setusercontext() and login_get*().  We basically call
2359      setusercontext() in most places where previously we did a setlogin().
2360      Add default login.conf file and put root in the "daemon" login class.
2361    - millert@cvs.openbsd.org 2000/08/21 10:23:31
2362      [session.c]
2363      Fix incorrect PATH setting; noted by Markus.
2364
2365 20000818
2366  - (djm) OpenBSD CVS changes:
2367    - markus@cvs.openbsd.org  2000/07/22 03:14:37
2368      [servconf.c servconf.h sshd.8 sshd.c sshd_config]
2369      random early drop; ok theo, niels
2370    - deraadt@cvs.openbsd.org 2000/07/26 11:46:51
2371      [ssh.1]
2372      typo
2373    - deraadt@cvs.openbsd.org 2000/08/01 11:46:11
2374      [sshd.8]
2375      many fixes from pepper@mail.reppep.com
2376    - provos@cvs.openbsd.org  2000/08/01 13:01:42
2377      [Makefile.in util.c aux.c]
2378      rename aux.c to util.c to help with cygwin port
2379    - deraadt@cvs.openbsd.org 2000/08/02 00:23:31
2380      [authfd.c]
2381      correct sun_len; Alexander@Leidinger.net
2382    - provos@cvs.openbsd.org  2000/08/02 10:27:17
2383      [readconf.c sshd.8]
2384      disable kerberos authentication by default
2385    - provos@cvs.openbsd.org  2000/08/02 11:27:05
2386      [sshd.8 readconf.c auth-krb4.c]
2387      disallow kerberos authentication if we can't verify the TGT; from
2388      dugsong@
2389      kerberos authentication is on by default only if you have a srvtab.
2390    - markus@cvs.openbsd.org  2000/08/04 14:30:07
2391      [auth.c]
2392      unused
2393    - markus@cvs.openbsd.org  2000/08/04 14:30:35
2394      [sshd_config]
2395      MaxStartups
2396    - markus@cvs.openbsd.org  2000/08/15 13:20:46
2397      [authfd.c]
2398      cleanup; ok niels@
2399    - markus@cvs.openbsd.org  2000/08/17 14:05:10
2400      [session.c]
2401      cleanup login(1)-like jobs, no duplicate utmp entries
2402    - markus@cvs.openbsd.org  2000/08/17 14:06:34
2403      [session.c sshd.8 sshd.c]
2404       sshd -u len, similar to telnetd
2405  - (djm) Lastlog was not getting closed after writing login entry
2406  - (djm) Add Solaris package support from Rip Loomis <loomisg@cist.saic.com>
2407
2408 20000816
2409  - (djm) Replacement for inet_ntoa for Irix (which breaks on gcc)
2410  - (djm) Fix strerror replacement for old SunOS. Based on patch from
2411    Charles Levert <charles@comm.polymtl.ca>
2412  - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4
2413    implementation.
2414  - (djm) SUN_LEN macro for systems which lack it
2415
2416 20000815
2417  - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com>
2418  - (djm) Avoid failures on Irix when ssh is not setuid. Fix from
2419    Michael Stone <mstone@cs.loyola.edu>
2420  - (djm) Don't seek in directory based lastlogs
2421  - (djm) Fix --with-ipaddr-display configure option test. Patch from
2422    Jarno Huuskonen <jhuuskon@messi.uku.fi>
2423  - (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
2424
2425 20000813
2426  - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
2427    Fabrice bacchella <fabrice.bacchella@marchfirst.fr>
2428
2429 20000809
2430  - (djm) Define AIX hard limits if headers don't. Report from
2431    Bill Painter <william.t.painter@lmco.com>
2432  - (djm) utmp direct write & SunOS 4 patch from Charles Levert
2433    <charles@comm.polymtl.ca>
2434
2435 20000808
2436  - (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
2437    time, spec file cleanup.
2438
2439 20000807
2440  - (djm) Set 0755 on binaries during install. Report from Lutz Jaenicke
2441  - (djm) Suppress error messages on channel close shutdown() failurs
2442    works around Linux bug. Patch from Zack Weinberg <zack@wolery.cumb.org>
2443  - (djm) Add some more entropy collection commands from Lutz Jaenicke
2444
2445 20000725
2446  - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
2447
2448 20000721
2449  - (djm) OpenBSD CVS updates:
2450    - markus@cvs.openbsd.org  2000/07/16 02:27:22
2451      [authfd.c authfd.h channels.c clientloop.c ssh-add.c ssh-agent.c ssh.c]
2452      [sshconnect1.c sshconnect2.c]
2453      make ssh-add accept dsa keys (the agent does not)
2454    - djm@cvs.openbsd.org     2000/07/17 19:25:02
2455      [sshd.c]
2456      Another closing of stdin; ok deraadt
2457    - markus@cvs.openbsd.org  2000/07/19 18:33:12
2458      [dsa.c]
2459      missing free, reorder
2460    - markus@cvs.openbsd.org  2000/07/20 16:23:14
2461      [ssh-keygen.1]
2462      document input and output files
2463
2464 20000720
2465  - (djm) Spec file fix from Petr Novotny <Petr.Novotny@antek.cz>
2466
2467 20000716
2468  - (djm) Release 2.1.1p4
2469
2470 20000715
2471  - (djm) OpenBSD CVS updates
2472    - provos@cvs.openbsd.org  2000/07/13 16:53:22
2473      [aux.c readconf.c servconf.c ssh.h]
2474      allow multiple whitespace but only one '=' between tokens, bug report from
2475      Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@
2476    - provos@cvs.openbsd.org  2000/07/13 17:14:09
2477      [clientloop.c]
2478      typo; todd@fries.net
2479    - provos@cvs.openbsd.org  2000/07/13 17:19:31
2480      [scp.c]
2481      close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu>
2482    - markus@cvs.openbsd.org  2000/07/14 16:59:46
2483      [readconf.c servconf.c]
2484      allow leading whitespace. ok niels
2485    - djm@cvs.openbsd.org     2000/07/14 22:01:38
2486      [ssh-keygen.c ssh.c]
2487      Always create ~/.ssh with mode 700; ok Markus
2488  - Fixes for SunOS 4.1.4 from Gordon Atwood <gordon@cs.ualberta.ca>
2489    - Include floatingpoint.h for entropy.c
2490    - strerror replacement
2491
2492 20000712
2493  - (djm) Remove -lresolve for Reliant Unix
2494  - (djm) OpenBSD CVS Updates:
2495    - deraadt@cvs.openbsd.org 2000/07/11 02:11:34
2496      [session.c sshd.c ]
2497      make MaxStartups code still work with -d; djm
2498    - deraadt@cvs.openbsd.org 2000/07/11 13:17:45
2499      [readconf.c ssh_config]
2500      disable FallBackToRsh by default
2501  - (djm) Replace in_addr_t with u_int32_t in bsd-inet_aton.c. Report from
2502    Ben Lindstrom <mouring@pconline.com>
2503  - (djm) Make building of X11-Askpass and GNOME-Askpass optional in RPM
2504    spec file.
2505  - (djm) Released 2.1.1p3
2506
2507 20000711
2508  - (djm) Fixup for AIX getuserattr() support from Tom Bertelson
2509    <tbert@abac.com>
2510  - (djm) ReliantUNIX support from Udo Schweigert <ust@cert.siemens.de>
2511  - (djm) NeXT: dirent structures to get scp working from Ben Lindstrom
2512    <mouring@pconline.com>
2513  - (djm) Fix broken inet_ntoa check and ut_user/ut_name confusion, report
2514    from Jim Watt <jimw@peisj.pebio.com>
2515  - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
2516    to compile on more platforms (incl NeXT).
2517  - (djm) Added bsd-inet_aton and configure support for NeXT
2518  - (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
2519  - (djm) OpenBSD CVS updates:
2520    - markus@cvs.openbsd.org  2000/06/26 03:22:29
2521      [authfd.c]
2522      cleanup, less cut&paste
2523    - markus@cvs.openbsd.org  2000/06/26 15:59:19
2524      [servconf.c servconf.h session.c sshd.8 sshd.c]
2525      MaxStartups: limit number of unauthenticated connections, work by
2526      theo and me
2527    - deraadt@cvs.openbsd.org 2000/07/05 14:18:07
2528      [session.c]
2529      use no_x11_forwarding_flag correctly; provos ok
2530    - provos@cvs.openbsd.org  2000/07/05 15:35:57
2531      [sshd.c]
2532      typo
2533    - aaron@cvs.openbsd.org   2000/07/05 22:06:58
2534      [scp.1 ssh-agent.1 ssh-keygen.1 sshd.8]
2535      Insert more missing .El directives. Our troff really should identify
2536      these and spit out a warning.
2537    - todd@cvs.openbsd.org    2000/07/06 21:55:04
2538      [auth-rsa.c auth2.c ssh-keygen.c]
2539      clean code is good code
2540    - deraadt@cvs.openbsd.org 2000/07/07 02:14:29
2541      [serverloop.c]
2542      sense of port forwarding flag test was backwards
2543    - provos@cvs.openbsd.org  2000/07/08 17:17:31
2544      [compat.c readconf.c]
2545      replace strtok with strsep; from David Young <dyoung@onthejob.net>
2546    - deraadt@cvs.openbsd.org 2000/07/08 19:21:15
2547      [auth.h]
2548      KNF
2549    - ho@cvs.openbsd.org      2000/07/08 19:27:33
2550      [compat.c readconf.c]
2551      Better conditions for strsep() ending.
2552    - ho@cvs.openbsd.org      2000/07/10 10:27:05
2553      [readconf.c]
2554      Get the correct message on errors. (niels@ ok)
2555    - ho@cvs.openbsd.org      2000/07/10 10:30:25
2556      [cipher.c kex.c servconf.c]
2557      strtok() --> strsep(). (niels@ ok)
2558  - (djm) Fix problem with debug mode and MaxStartups
2559  - (djm) Don't generate host keys when $(DESTDIR) is set (e.g. during RPM
2560    builds)
2561  - (djm) Add strsep function from OpenBSD libc for systems that lack it
2562
2563 20000709
2564  - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
2565    Kevin Steves <stevesk@sweden.hp.com>
2566  - (djm) Match prototype and function declaration for rresvport_af.
2567    Problem report from Niklas Edmundsson <nikke@ing.umu.se>
2568  - (djm) Missing $(DESTDIR) on host-key target causing problems with RPM
2569    builds. Problem report from Gregory Leblanc <GLeblanc@cu-portland.edu>
2570  - (djm) Replace ut_name with ut_user. Patch from Jim Watt
2571    <jimw@peisj.pebio.com>
2572  - (djm) Fix pam sprintf fix
2573  - (djm) Cleanup entropy collection code a little more. Split initialisation
2574    from seeding, perform intialisation immediatly at start, be careful with
2575    uids. Based on problem report from Jim Watt <jimw@peisj.pebio.com>
2576  - (djm) More NeXT compatibility from Ben Lindstrom <mouring@pconline.com>
2577    Including sigaction() et al. replacements
2578  - (djm) AIX getuserattr() session initialisation from Tom Bertelson
2579    <tbert@abac.com>
2580
2581 20000708
2582  - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
2583    Aaron Hopkins <aaron@die.net>
2584  - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
2585    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2586  - (djm) Fixed undefined variables for OSF SIA. Report from
2587    Baars, Henk <Hendrik.Baars@nl.origin-it.com>
2588  - (djm) Handle EWOULDBLOCK returns from read() and write() in atomicio.c
2589    Fix from Marquess, Steve Mr JMLFDC <Steve.Marquess@DET.AMEDD.ARMY.MIL>
2590  - (djm) Don't use inet_addr.
2591
2592 20000702
2593  - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
2594  - (djm) Stop shadow expiry checking from preventing logins with NIS. Based
2595    on fix from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
2596  - (djm) Use standard OpenSSL functions in auth-skey.c. Patch from
2597    Chris, the Young One <cky@pobox.com>
2598  - (djm) Fix scp progress meter on really wide terminals. Based on patch
2599    from James H. Cloos Jr. <cloos@jhcloos.com>
2600
2601 20000701
2602  - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
2603  - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
2604  - (djm) Replace "/bin/sh" with _PATH_BSHELL. Report from Corinna Vinschen
2605    <vinschen@cygnus.com>
2606  - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
2607  - (djm) Added check for broken snprintf() functions which do not correctly
2608    terminate output string and attempt to use replacement.
2609  - (djm) Released 2.1.1p2
2610
2611 20000628
2612  - (djm) Fixes to lastlog code for Irix
2613  - (djm) Use atomicio in loginrec
2614  - (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
2615    Irix 6.x array sessions, project id's, and system audit trail id.
2616  - (djm) Added 'distprep' make target to simplify packaging
2617  - (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
2618    support. Enable using "USE_SIA=1 ./configure [options]"
2619
2620 20000627
2621  - (djm) Fixes to login code - not setting li->uid, cleanups
2622  - (djm) Formatting
2623
2624 20000626
2625  - (djm) Better fix to aclocal tests from Garrick James <garrick@james.net>
2626  - (djm) Account expiry support from Andreas Steinmetz <ast@domdv.de>
2627  - (djm) Added password expiry checking (no password change support)
2628  - (djm) Make EGD failures non-fatal if OpenSSL's entropy pool is still OK
2629    based on patch from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2630  - (djm) Fix fixed EGD code.
2631  - OpenBSD CVS update
2632    - provos@cvs.openbsd.org  2000/06/25 14:17:58
2633      [channels.c]
2634      correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>
2635
2636 20000623
2637  - (djm) Use sa_family_t in prototype for rresvport_af. Patch from
2638    Svante Signell <svante.signell@telia.com>
2639  - (djm) Autoconf logic to define sa_family_t if it is missing
2640  - OpenBSD CVS Updates:
2641    - markus@cvs.openbsd.org  2000/06/22 10:32:27
2642      [sshd.c]
2643      missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
2644    - djm@cvs.openbsd.org     2000/06/22 17:55:00
2645      [auth-krb4.c key.c radix.c uuencode.c]
2646      Missing CVS idents; ok markus
2647
2648 20000622
2649  - (djm) Automatically generate host key during "make install". Suggested
2650    by Gary E. Miller <gem@rellim.com>
2651  - (djm) Paranoia before kill() system call
2652  - OpenBSD CVS Updates:
2653    - markus@cvs.openbsd.org  2000/06/18 18:50:11
2654      [auth2.c compat.c compat.h sshconnect2.c]
2655      make userauth+pubkey interop with ssh.com-2.2.0
2656    - markus@cvs.openbsd.org  2000/06/18 20:56:17
2657      [dsa.c]
2658      mem leak + be more paranoid in dsa_verify.
2659    - markus@cvs.openbsd.org  2000/06/18 21:29:50
2660      [key.c]
2661      cleanup fingerprinting, less hardcoded sizes
2662    - markus@cvs.openbsd.org  2000/06/19 19:39:45
2663      [atomicio.c auth-options.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
2664      [auth-rsa.c auth-skey.c authfd.c authfd.h authfile.c bufaux.c bufaux.h]
2665      [buffer.c buffer.h canohost.c channels.c channels.h cipher.c cipher.h]
2666      [clientloop.c compat.c compat.h compress.c compress.h crc32.c crc32.h]
2667      [deattack.c dispatch.c dsa.c fingerprint.c fingerprint.h getput.h hmac.c]
2668      [kex.c log-client.c log-server.c login.c match.c mpaux.c mpaux.h nchan.c]
2669      [nchan.h packet.c packet.h pty.c pty.h readconf.c readconf.h readpass.c]
2670      [rsa.c rsa.h scp.c servconf.c servconf.h ssh-add.c ssh-keygen.c ssh.c]
2671      [ssh.h tildexpand.c ttymodes.c ttymodes.h uidswap.c xmalloc.c xmalloc.h]
2672      OpenBSD tag
2673    - markus@cvs.openbsd.org  2000/06/21 10:46:10
2674      sshconnect2.c missing free; nuke old comment
2675
2676 20000620
2677  - (djm) Replace use of '-o' and '-a' logical operators in configure tests
2678    with '||' and '&&'. As suggested by Jim Knoble <jmknoble@jmknoble.cx>
2679    to fix SCO Unixware problem reported by Gary E. Miller <gem@rellim.com>
2680  - (djm) Typo in loginrec.c
2681
2682 20000618
2683  - (djm) Add summary of configure options to end of ./configure run
2684  - (djm) Not all systems define RUSAGE_SELF & RUSAGE_CHILDREN. Report from
2685    Michael Stone <mstone@cs.loyola.edu>
2686  - (djm) rusage is a privileged operation on some Unices (incl.
2687    Solaris 2.5.1). Report from Paul D. Smith <pausmith@nortelnetworks.com>
2688  - (djm) Avoid PAM failures when running without a TTY. Report from
2689    Martin Petrak <petrak@spsknm.schools.sk>
2690  - (djm) Include sys/types.h when including netinet/in.h in configure tests.
2691    Patch from Jun-ichiro itojun Hagino <itojun@iijlab.net>
2692  - (djm) Started merge of Ben Lindstrom's <mouring@pconline.com> NeXT support
2693  - OpenBSD CVS updates:
2694    - deraadt@cvs.openbsd.org 2000/06/17 09:58:46
2695      [channels.c]
2696      everyone says "nix it" (remove protocol 2 debugging message)
2697    - markus@cvs.openbsd.org  2000/06/17 13:24:34
2698      [sshconnect.c]
2699      allow extended server banners
2700    - markus@cvs.openbsd.org  2000/06/17 14:30:10
2701      [sshconnect.c]
2702      missing atomicio, typo
2703    - jakob@cvs.openbsd.org   2000/06/17 16:52:34
2704      [servconf.c servconf.h session.c sshd.8 sshd_config]
2705      add support for ssh v2 subsystems. ok markus@.
2706    - deraadt@cvs.openbsd.org 2000/06/17 18:57:48
2707      [readconf.c servconf.c]
2708      include = in WHITESPACE; markus ok
2709    - markus@cvs.openbsd.org  2000/06/17 19:09:10
2710      [auth2.c]
2711      implement bug compatibility with ssh-2.0.13 pubkey, server side
2712    - markus@cvs.openbsd.org  2000/06/17 21:00:28
2713      [compat.c]
2714      initial support for ssh.com's 2.2.0
2715    - markus@cvs.openbsd.org  2000/06/17 21:16:09
2716      [scp.c]
2717      typo
2718    - markus@cvs.openbsd.org  2000/06/17 22:05:02
2719      [auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
2720      split auth-rsa option parsing into auth-options
2721      add options support to authorized_keys2
2722    - markus@cvs.openbsd.org  2000/06/17 22:42:54
2723      [session.c]
2724      typo
2725
2726 20000613
2727  - (djm) Fixes from Andrew McGill <andrewm@datrix.co.za>:
2728   - Platform define for SCO 3.x which breaks on /dev/ptmx
2729   - Detect and try to fix missing MAXPATHLEN
2730  - (djm) Fix short copy in loginrec.c (based on patch from Phill Camp
2731    <P.S.S.Camp@ukc.ac.uk>
2732
2733 20000612
2734  - (djm) Glob manpages in RPM spec files to catch compressed files
2735  - (djm) Full license in auth-pam.c
2736  - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
2737  - (andre) AIX, lastlog, configure fixes from Tom Bertelson <tbert@abac.com>:
2738   - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is
2739      def'd
2740   - Set AIX to use preformatted manpages
2741
2742 20000610
2743  - (djm) Minor doc tweaks
2744  - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>
2745
2746 20000609
2747  - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
2748    (in favour of utmpx) on Solaris 8
2749
2750 20000606
2751  - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
2752    list of commands (by default). Removed verbose debugging (by default).
2753  - (djm) Increased command entropy estimates and default entropy collection
2754    timeout
2755  - (djm) Remove duplicate headers from loginrec.c
2756  - (djm) Don't add /usr/local/lib to library search path on Irix
2757  - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
2758    <tibbs@math.uh.edu>
2759  - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
2760    <zack@wolery.cumb.org>
2761  - (djm) OpenBSD CVS updates:
2762   - todd@cvs.openbsd.org
2763     [sshconnect2.c]
2764     teach protocol v2 to count login failures properly and also enable an
2765     explanation of why the password prompt comes up again like v1; this is NOT
2766     crypto
2767   - markus@cvs.openbsd.org
2768     [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
2769     xauth_location support; pr 1234
2770     [readconf.c sshconnect2.c]
2771     typo, unused
2772     [session.c]
2773     allow use_login only for login sessions, otherwise remote commands are
2774     execed with uid==0
2775     [sshd.8]
2776     document UseLogin better
2777     [version.h]
2778     OpenSSH 2.1.1
2779     [auth-rsa.c]
2780     fix match_hostname() logic for auth-rsa: deny access if we have a
2781     negative match or no match at all
2782     [channels.c hostfile.c match.c]
2783     don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via
2784     kris@FreeBSD.org
2785
2786 20000606
2787  - (djm) Added --with-cflags, --with-ldflags and --with-libs options to
2788    configure.
2789
2790 20000604
2791  - Configure tweaking for new login code on Irix 5.3
2792  - (andre) login code changes based on djm feedback
2793
2794 20000603
2795  - (andre) New login code
2796     - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c
2797     - Add loginrec.[ch], logintest.c and autoconf code
2798
2799 20000531
2800  - Cleanup of auth.c, login.c and fake-*
2801  - Cleanup of auth-pam.c, save and print "account expired" error messages
2802  - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
2803  - Rewrote bsd-login to use proper utmp API if available. Major cleanup
2804    of fallback DIY code.
2805
2806 20000530
2807  - Define atexit for old Solaris
2808  - Fix buffer overrun in login.c for systems which use syslen in utmpx.
2809    patch from YOSHIFUJI Hideaki <yoshfuji@cerberus.nemoto.ecei.tohoku.ac.jp>
2810  - OpenBSD CVS updates:
2811   - markus@cvs.openbsd.org
2812     [session.c]
2813     make x11-fwd work w/ localhost (xauth add host/unix:11)
2814     [cipher.c compat.c readconf.c servconf.c]
2815     check strtok() != NULL; ok niels@
2816     [key.c]
2817     fix key_read() for uuencoded keys w/o '='
2818     [serverloop.c]
2819     group ssh1 vs. ssh2 in serverloop
2820     [kex.c kex.h myproposal.h sshconnect2.c sshd.c]
2821     split kexinit/kexdh, factor out common code
2822     [readconf.c ssh.1 ssh.c]
2823     forwardagent defaults to no, add ssh -A
2824   - theo@cvs.openbsd.org
2825     [session.c]
2826     just some line shortening
2827  - Released 2.1.0p3
2828
2829 20000520
2830  - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
2831  - Don't touch utmp if USE_UTMPX defined
2832  - SunOS 4.x support from Todd C. Miller <Todd.Miller@courtesan.com>
2833  - SIGCHLD fix for AIX and HPUX from Tom Bertelson <tbert@abac.com>
2834  - HPUX and Configure fixes from Lutz Jaenicke
2835    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2836  - Use mkinstalldirs script to make directories instead of non-portable
2837    "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2838  - Doc cleanup
2839
2840 20000518
2841  - Include Andre Lucas' fixprogs script. Forgot to "cvs add" it yesterday
2842  - OpenBSD CVS updates:
2843   - markus@cvs.openbsd.org
2844     [sshconnect.c]
2845     copy only ai_addrlen bytes; misiek@pld.org.pl
2846     [auth.c]
2847     accept an empty shell in authentication; bug reported by
2848     chris@tinker.ucr.edu
2849     [serverloop.c]
2850     we don't have stderr for interactive terminal sessions (fcntl errors)
2851
2852 20000517
2853  - Fix from Andre Lucas <andre.lucas@dial.pipex.com>
2854   - Fixes command line printing segfaults (spotter: Bladt Norbert)
2855   - Fixes erroneous printing of debug messages to syslog
2856   - Fixes utmp for MacOS X (spotter: Aristedes Maniatis)
2857   - Gives useful error message if PRNG initialisation fails
2858   - Reduced ssh startup delay
2859   - Measures cumulative command time rather than the time between reads
2860     after select()
2861   - 'fixprogs' perl script to eliminate non-working entropy commands, and
2862     optionally run 'ent' to measure command entropy
2863  - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
2864  - Avoid WCOREDUMP complation errors for systems that lack it
2865  - Avoid SIGCHLD warnings from entropy commands
2866  - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
2867  - OpenBSD CVS update:
2868   - markus@cvs.openbsd.org
2869     [ssh.c]
2870     fix usage()
2871     [ssh2.h]
2872     draft-ietf-secsh-architecture-05.txt
2873     [ssh.1]
2874     document ssh -T -N (ssh2 only)
2875     [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c]
2876     enable nonblocking IO for sshd w/ proto 1, too; split out common code
2877     [aux.c]
2878     missing include
2879  - Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
2880   - INSTALL typo and URL fix
2881   - Makefile fix
2882   - Solaris fixes
2883  - Checking for ssize_t and memmove. Based on patch from SAKAI Kiyotaka
2884    <ksakai@kso.netwk.ntt-at.co.jp>
2885  - RSAless operation patch from kevin_oconnor@standardandpoors.com
2886  - Detect OpenSSL seperatly from RSA
2887  - Better test for RSA (more compatible with RSAref). Based on work by
2888    Ed Eden <ede370@stl.rural.usda.gov>
2889
2890 20000513
2891  - Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
2892    <misiek@pld.org.pl>
2893
2894 20000511
2895  - Fix for prng_seed permissions checking from Lutz Jaenicke
2896    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2897  - "make host-key" fix for Irix
2898
2899 20000509
2900  - OpenBSD CVS update
2901   - markus@cvs.openbsd.org
2902     [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c]
2903     [ssh.h sshconnect1.c sshconnect2.c sshd.8]
2904     - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
2905   - hugh@cvs.openbsd.org
2906     [ssh.1]
2907     - zap typo
2908     [ssh-keygen.1]
2909     - One last nit fix. (markus approved)
2910     [sshd.8]
2911     - some markus certified spelling adjustments
2912   - markus@cvs.openbsd.org
2913     [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c]
2914     [sshconnect2.c ]
2915     - bug compat w/ ssh-2.0.13 x11, split out bugs
2916     [nchan.c]
2917     - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@
2918     [ssh-keygen.c]
2919     - handle escapes in real and original key format, ok millert@
2920     [version.h]
2921     - OpenSSH-2.1
2922  - Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
2923  - Doc updates
2924  - Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported
2925    by Andre Lucas <andre.lucas@dial.pipex.com>
2926
2927 20000508
2928  - Makefile and RPM spec fixes
2929  - Generate DSA host keys during "make key" or RPM installs
2930  - OpenBSD CVS update
2931   - markus@cvs.openbsd.org
2932     [clientloop.c sshconnect2.c]
2933     - make x11-fwd interop w/ ssh-2.0.13
2934     [README.openssh2]
2935     - interop w/ SecureFX
2936  - Release 2.0.0beta2
2937
2938  - Configure caching and cleanup patch from Andre Lucas'
2939    <andre.lucas@dial.pipex.com>
2940
2941 20000507
2942  - Remove references to SSLeay.
2943  - Big OpenBSD CVS update
2944   - markus@cvs.openbsd.org
2945     [clientloop.c]
2946     - typo
2947     [session.c]
2948     - update proctitle on pty alloc/dealloc, e.g. w/ windows client
2949     [session.c]
2950     - update proctitle for proto 1, too
2951     [channels.h nchan.c serverloop.c session.c sshd.c]
2952     - use c-style comments
2953   - deraadt@cvs.openbsd.org
2954     [scp.c]
2955     - more atomicio
2956   - markus@cvs.openbsd.org
2957     [channels.c]
2958     - set O_NONBLOCK
2959     [ssh.1]
2960     - update AUTHOR
2961     [readconf.c ssh-keygen.c ssh.h]
2962     - default DSA key file ~/.ssh/id_dsa
2963     [clientloop.c]
2964     - typo, rm verbose debug
2965   - deraadt@cvs.openbsd.org
2966     [ssh-keygen.1]
2967     - document DSA use of ssh-keygen
2968     [sshd.8]
2969     - a start at describing what i understand of the DSA side
2970     [ssh-keygen.1]
2971     - document -X and -x
2972     [ssh-keygen.c]
2973     - simplify usage
2974   - markus@cvs.openbsd.org
2975     [sshd.8]
2976     - there is no rhosts_dsa
2977     [ssh-keygen.1]
2978     - document -y, update -X,-x
2979     [nchan.c]
2980     - fix close for non-open ssh1 channels
2981     [servconf.c servconf.h ssh.h sshd.8 sshd.c ]
2982     - s/DsaKey/HostDSAKey/, document option
2983     [sshconnect2.c]
2984     - respect number_of_password_prompts
2985     [channels.c channels.h servconf.c servconf.h session.c sshd.8]
2986     - GatewayPorts for sshd, ok deraadt@
2987     [ssh-add.1 ssh-agent.1 ssh.1]
2988     - more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
2989     [ssh.1]
2990     - more info on proto 2
2991     [sshd.8]
2992     - sync AUTHOR w/ ssh.1
2993     [key.c key.h sshconnect.c]
2994     - print key type when talking about host keys
2995     [packet.c]
2996     - clear padding in ssh2
2997     [dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
2998     - replace broken uuencode w/ libc b64_ntop
2999     [auth2.c]
3000     - log failure before sending the reply
3001     [key.c radix.c uuencode.c]
3002     - remote trailing comments before calling __b64_pton
3003     [auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
3004     [sshconnect2.c sshd.8]
3005     - add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
3006  - Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
3007
3008 20000502
3009  - OpenBSD CVS update
3010    [channels.c]
3011    - init all fds, close all fds.
3012    [sshconnect2.c]
3013    - check whether file exists before asking for passphrase
3014    [servconf.c servconf.h sshd.8 sshd.c]
3015    - PidFile, pr 1210
3016    [channels.c]
3017    - EINTR
3018    [channels.c]
3019    - unbreak, ok niels@
3020    [sshd.c]
3021    - unlink pid file, ok niels@
3022    [auth2.c]
3023    - Add missing #ifdefs; ok - markus
3024  - Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy
3025    gathering commands from a text file
3026  - Release 2.0.0beta1
3027
3028 20000501
3029  - OpenBSD CVS update
3030    [packet.c]
3031    - send debug messages in SSH2 format
3032    [scp.c]
3033    - fix very rare EAGAIN/EINTR issues; based on work by djm
3034    [packet.c]
3035    - less debug, rm unused
3036    [auth2.c]
3037    - disable kerb,s/key in ssh2
3038    [sshd.8]
3039    - Minor tweaks and typo fixes.
3040    [ssh-keygen.c]
3041    - Put -d into usage and reorder. markus ok.
3042  - Include missing headers for OpenSSL tests. Fix from Phil Karn
3043    <karn@ka9q.ampr.org>
3044  - Fixed __progname symbol collisions reported by Andre Lucas
3045    <andre.lucas@dial.pipex.com>
3046  - Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
3047    <gd@hilb1.medat.de>
3048  - Add some missing ifdefs to auth2.c
3049  - Deprecate perl-tk askpass.
3050  - Irix portability fixes - don't include netinet headers more than once
3051  - Make sure we don't save PRNG seed more than once
3052
3053 20000430
3054  - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
3055  - Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
3056    patch.
3057    - Adds timeout to entropy collection
3058    - Disables slow entropy sources
3059    - Load and save seed file
3060  - Changed entropy seed code to user per-user seeds only (server seed is
3061    saved in root's .ssh directory)
3062  - Use atexit() and fatal cleanups to save seed on exit
3063  - More OpenBSD updates:
3064    [session.c]
3065    - don't call chan_write_failed() if we are not writing
3066    [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
3067    - keysize warnings error() -> log()
3068
3069 20000429
3070  - Merge big update to OpenSSH-2.0 from OpenBSD CVS
3071    [README.openssh2]
3072    - interop w/ F-secure windows client
3073    - sync documentation
3074    - ssh_host_dsa_key not ssh_dsa_key
3075    [auth-rsa.c]
3076    - missing fclose
3077    [auth.c authfile.c compat.c dsa.c dsa.h hostfile.c key.c key.h radix.c]
3078    [readconf.c readconf.h ssh-add.c ssh-keygen.c ssh.c ssh.h sshconnect.c]
3079    [sshd.c uuencode.c uuencode.h authfile.h]
3080    - add DSA pubkey auth and other SSH2 fixes.  use ssh-keygen -[xX]
3081      for trading keys with the real and the original SSH, directly from the
3082      people who invented the SSH protocol.
3083    [auth.c auth.h authfile.c sshconnect.c auth1.c auth2.c sshconnect.h]
3084    [sshconnect1.c sshconnect2.c]
3085    - split auth/sshconnect in one file per protocol version
3086    [sshconnect2.c]
3087    - remove debug
3088    [uuencode.c]
3089    - add trailing =
3090    [version.h]
3091    - OpenSSH-2.0
3092    [ssh-keygen.1 ssh-keygen.c]
3093    - add -R flag: exit code indicates if RSA is alive
3094    [sshd.c]
3095    - remove unused
3096      silent if -Q is specified
3097    [ssh.h]
3098    - host key becomes /etc/ssh_host_dsa_key
3099    [readconf.c servconf.c ]
3100    - ssh/sshd default to proto 1 and 2
3101    [uuencode.c]
3102    - remove debug
3103    [auth2.c ssh-keygen.c sshconnect2.c sshd.c]
3104    - xfree DSA blobs
3105    [auth2.c serverloop.c session.c]
3106    - cleanup logging for sshd/2, respect PasswordAuth no
3107    [sshconnect2.c]
3108    - less debug, respect .ssh/config
3109    [README.openssh2 channels.c channels.h]
3110    - clientloop.c session.c ssh.c
3111    - support for x11-fwding, client+server
3112
3113 20000421
3114  - Merge fix from OpenBSD CVS
3115   [ssh-agent.c]
3116   - Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>
3117     via Debian bug #59926
3118  - Define __progname in session.c if libc doesn't
3119  - Remove indentation on autoconf #include statements to avoid bug in
3120    DEC Tru64 compiler. Report and fix from David Del Piero
3121    <David.DelPiero@qed.qld.gov.au>
3122
3123 20000420
3124  - Make fixpaths work with perl4, patch from Andre Lucas
3125    <andre.lucas@dial.pipex.com>
3126  - Sync with OpenBSD CVS:
3127   [clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
3128   - pid_t
3129   [session.c]
3130   - remove bogus chan_read_failed. this could cause data
3131     corruption (missing data) at end of a SSH2 session.
3132  - Merge fixes from Debian patch from Phil Hands <phil@hands.com>
3133   - Allow setting of PAM service name through CFLAGS (SSHD_PAM_SERVICE)
3134   - Use vhangup to clean up Linux ttys
3135   - Force posix getopt processing on GNU libc systems
3136  - Debian bug #55910 - remove references to ssl(8) manpages
3137  - Debian bug #58031 - ssh_config lies about default cipher
3138
3139 20000419
3140  - OpenBSD CVS updates
3141    [channels.c]
3142    - fix pr 1196, listen_port and port_to_connect interchanged
3143    [scp.c]
3144    - after completion, replace the progress bar ETA counter with a final
3145      elapsed time; my idea, aaron wrote the patch
3146    [ssh_config sshd_config]
3147    - show 'Protocol' as an example, ok markus@
3148    [sshd.c]
3149    - missing xfree()
3150  - Add missing header to bsd-misc.c
3151
3152 20000416
3153  - Reduce diff against OpenBSD source
3154    - All OpenSSL includes are now unconditionally referenced as
3155      openssl/foo.h
3156    - Pick up formatting changes
3157    - Other minor changed (typecasts, etc) that I missed
3158
3159 20000415
3160  - OpenBSD CVS updates.
3161    [ssh.1 ssh.c]
3162    - ssh -2
3163    [auth.c channels.c clientloop.c packet.c packet.h serverloop.c]
3164    [session.c sshconnect.c]
3165    - check payload for (illegal) extra data
3166    [ALL]
3167    whitespace cleanup
3168
3169 20000413
3170  - INSTALL doc updates
3171  - Merged OpenBSD updates to include paths.
3172
3173 20000412
3174  - OpenBSD CVS updates:
3175    - [channels.c]
3176      repair x11-fwd
3177    - [sshconnect.c]
3178      fix passwd prompt for ssh2, less debugging output.
3179    - [clientloop.c compat.c dsa.c kex.c sshd.c]
3180      less debugging output
3181    - [kex.c kex.h sshconnect.c sshd.c]
3182      check for reasonable public DH values
3183    - [README.openssh2 cipher.c cipher.h compat.c compat.h readconf.c]
3184      [readconf.h servconf.c servconf.h ssh.c ssh.h sshconnect.c sshd.c]
3185      add Cipher and Protocol options to ssh/sshd, e.g.:
3186      ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers
3187      arcfour,3des-cbc'
3188    - [sshd.c]
3189      print 1.99 only if server supports both
3190
3191 20000408
3192  - Avoid some compiler warnings in fake-get*.c
3193  - Add IPTOS macros for systems which lack them
3194  - Only set define entropy collection macros if they are found
3195  - More large OpenBSD CVS updates:
3196    - [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
3197      [session.h ssh.h sshd.c README.openssh2]
3198      ssh2 server side, see README.openssh2; enable with 'sshd -2'
3199    - [channels.c]
3200      no adjust after close
3201    - [sshd.c compat.c ]
3202      interop w/ latest ssh.com windows client.
3203
3204 20000406
3205  - OpenBSD CVS update:
3206    - [channels.c]
3207      close efd on eof
3208    - [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
3209      ssh2 client implementation, interops w/ ssh.com and lsh servers.
3210    - [sshconnect.c]
3211      missing free.
3212    - [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
3213      remove unused argument, split cipher_mask()
3214    - [clientloop.c]
3215      re-order: group ssh1 vs. ssh2
3216  - Make Redhat spec require openssl >= 0.9.5a
3217
3218 20000404
3219  - Add tests for RAND_add function when searching for OpenSSL
3220  - OpenBSD CVS update:
3221    - [packet.h packet.c]
3222      ssh2 packet format
3223    - [packet.h packet.c nchan2.ms nchan.h compat.h compat.c]
3224      [channels.h channels.c]
3225      channel layer support for ssh2
3226    - [kex.h kex.c hmac.h hmac.c dsa.c dsa.h]
3227      DSA, keyexchange, algorithm agreement for ssh2
3228  - Generate manpages before make install not at the end of make all
3229  - Don't seed the rng quite so often
3230  - Always reseed rng when requested
3231
3232 20000403
3233  - Wrote entropy collection routines for systems that lack /dev/random
3234    and EGD
3235  - Disable tests and typedefs for 64 bit types. They are currently unused.
3236
3237 20000401
3238  - Big OpenBSD CVS update (mainly beginnings of SSH2 infrastructure)
3239    - [auth.c session.c sshd.c auth.h]
3240      split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
3241    - [bufaux.c bufaux.h]
3242      support ssh2 bignums
3243    - [channels.c channels.h clientloop.c sshd.c nchan.c nchan.h packet.c]
3244      [readconf.c ssh.c ssh.h serverloop.c]
3245      replace big switch() with function tables (prepare for ssh2)
3246    - [ssh2.h]
3247      ssh2 message type codes
3248    - [sshd.8]
3249      reorder Xr to avoid cutting
3250    - [serverloop.c]
3251      close(fdin) if fdin != fdout, shutdown otherwise, ok theo@
3252    - [channels.c]
3253      missing close
3254      allow bigger packets
3255    - [cipher.c cipher.h]
3256      support ssh2 ciphers
3257    - [compress.c]
3258      cleanup, less code
3259    - [dispatch.c dispatch.h]
3260      function tables for different message types
3261    - [log-server.c]
3262      do not log() if debuggin to stderr
3263      rename a cpp symbol, to avoid param.h collision
3264    - [mpaux.c]
3265      KNF
3266    - [nchan.c]
3267      sync w/ channels.c
3268
3269 20000326
3270  - Better tests for OpenSSL w/ RSAref
3271  - Added replacement setenv() function from OpenBSD libc. Suggested by
3272    Ben Lindstrom <mouring@pconline.com>
3273  - OpenBSD CVS update
3274    - [auth-krb4.c]
3275      -Wall
3276    - [auth-rh-rsa.c auth-rsa.c hostfile.c hostfile.h key.c key.h match.c]
3277      [match.h ssh.c ssh.h sshconnect.c sshd.c]
3278      initial support for DSA keys. ok deraadt@, niels@
3279    - [cipher.c cipher.h]
3280      remove unused cipher_attack_detected code
3281    - [scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
3282      Fix some formatting problems I missed before.
3283    - [ssh.1 sshd.8]
3284      fix spelling errors, From: FreeBSD
3285    - [ssh.c]
3286      switch to raw mode only if he _get_ a pty (not if we _want_ a pty).
3287
3288 20000324
3289  - Released 1.2.3
3290
3291 20000317
3292  - Clarified --with-default-path option.
3293  - Added -blibpath handling for AIX to work around stupid runtime linking.
3294    Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
3295    <jmknoble@jmknoble.cx>
3296  - Checks for 64 bit int types. Problem report from Mats Fredholm
3297    <matsf@init.se>
3298  - OpenBSD CVS updates:
3299    - [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c]
3300      [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c]
3301      [sshd.c]
3302      pedantic: signed vs. unsigned, void*-arithm, etc
3303    - [ssh.1 sshd.8]
3304      Various cleanups and standardizations.
3305  - Runtime error fix for HPUX from Otmar Stahl
3306    <O.Stahl@lsw.uni-heidelberg.de>
3307
3308 20000316
3309  - Fixed configure not passing LDFLAGS to Solaris. Report from David G.
3310    Hesprich <dghespri@sprintparanet.com>
3311  - Propogate LD through to Makefile
3312  - Doc cleanups
3313  - Added blurb about "scp: command not found" errors to UPGRADING
3314
3315 20000315
3316  - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list
3317    problems with gcc/Solaris.
3318  - Don't free argument to putenv() after use (in setenv() replacement).
3319    Report from Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp>
3320  - Created contrib/ subdirectory. Included helpers from Phil Hands'
3321    Debian package, README file and chroot patch from Ricardo Cerqueira
3322    <rmcc@clix.pt>
3323  - Moved gnome-ssh-askpass.c to contrib directory and removed config
3324    option.
3325  - Slight cleanup to doc files
3326  - Configure fix from Bratislav ILICH <bilic@zepter.ru>
3327
3328 20000314
3329  - Include macro for IN6_IS_ADDR_V4MAPPED. Report from
3330    peter@frontierflying.com
3331  - Include /usr/local/include and /usr/local/lib for systems that don't
3332    do it themselves
3333  - -R/usr/local/lib for Solaris
3334  - Fix RSAref detection
3335  - Fix IN6_IS_ADDR_V4MAPPED macro
3336
3337 20000311
3338  - Detect RSAref
3339  - OpenBSD CVS change
3340    [sshd.c]
3341     - disallow guessing of root password
3342  - More configure fixes
3343  - IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
3344
3345 20000309
3346  - OpenBSD CVS updates to v1.2.3
3347    [ssh.h atomicio.c]
3348     - int atomicio -> ssize_t (for alpha). ok deraadt@
3349    [auth-rsa.c]
3350     - delay MD5 computation until client sends response, free() early, cleanup.
3351    [cipher.c]
3352     - void* -> unsigned char*, ok niels@
3353    [hostfile.c]
3354     - remove unused variable 'len'. fix comments.
3355     - remove unused variable
3356    [log-client.c log-server.c]
3357     - rename a cpp symbol, to avoid param.h collision
3358    [packet.c]
3359     - missing xfree()
3360     - getsockname() requires initialized tolen; andy@guildsoftware.com
3361     - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
3362    from Holger.Trapp@Informatik.TU-Chemnitz.DE
3363    [pty.c pty.h]
3364     - register cleanup for pty earlier. move code for pty-owner handling to
3365       pty.c ok provos@, dugsong@
3366    [readconf.c]
3367     - turn off x11-fwd for the client, too.
3368    [rsa.c]
3369     - PKCS#1 padding
3370    [scp.c]
3371     - allow '.' in usernames; from jedgar@fxp.org
3372    [servconf.c]
3373     - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
3374     - sync with sshd_config
3375    [ssh-keygen.c]
3376     - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
3377    [ssh.1]
3378     - Change invalid 'CHAT' loglevel to 'VERBOSE'
3379    [ssh.c]
3380     - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
3381     - turn off x11-fwd for the client, too.
3382    [sshconnect.c]
3383     - missing xfree()
3384     - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
3385     - read error vs. "Connection closed by remote host"
3386    [sshd.8]
3387     - ie. -> i.e.,
3388     - do not link to a commercial page..
3389     - sync with sshd_config
3390    [sshd.c]
3391     - no need for poll.h; from bright@wintelcom.net
3392     - log with level log() not fatal() if peer behaves badly.
3393     - don't panic if client behaves strange. ok deraadt@
3394     - make no-port-forwarding for RSA keys deny both -L and -R style fwding
3395     - delay close() of pty until the pty has been chowned back to root
3396     - oops, fix comment, too.
3397     - missing xfree()
3398     - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
3399       (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
3400     - register cleanup for pty earlier. move code for pty-owner handling to
3401       pty.c ok provos@, dugsong@
3402     - create x11 cookie file
3403     - fix pr 1113, fclose() -> pclose(), todo: remote popen()
3404     - version 1.2.3
3405  - Cleaned up
3406  - Removed warning workaround for Linux and devpts filesystems (no longer
3407    required after OpenBSD updates)
3408
3409 20000308
3410  - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
3411
3412 20000307
3413  - Released 1.2.2p1
3414
3415 20000305
3416  - Fix DEC compile fix
3417  - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
3418  - Check for getpagesize in libucb.a if not found in libc. Fix for old
3419    Solaris from Andre Lucas <andre.lucas@dial.pipex.com>
3420  - Check for libwrap if --with-tcp-wrappers option specified. Suggestion
3421    Mate Wierdl <mw@moni.msci.memphis.edu>
3422
3423 20000303
3424  - Added "make host-key" target, Suggestion from Dominik Brettnacher
3425  <domi@saargate.de>
3426  - Don't permanently fail on bind() if getaddrinfo has more choices left for
3427    us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
3428    Miskiewicz <misiek@pld.org.pl>
3429  - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
3430  - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
3431
3432 20000302
3433  - Big cleanup of autoconf code
3434    - Rearranged to be a little more logical
3435    - Added -R option for Solaris
3436    - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program
3437      to detect library and header location _and_ ensure library has proper
3438      RSA support built in (this is a problem with OpenSSL 0.9.5).
3439  - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de
3440  - Avoid warning message with Unix98 ptys
3441  - Warning was valid - possible race condition on PTYs. Avoided using
3442    platform-specific code.
3443  - Document some common problems
3444  - Allow root access to any key. Patch from
3445    markus.friedl@informatik.uni-erlangen.de
3446
3447 20000207
3448  - Removed SOCKS code. Will support through a ProxyCommand.
3449
3450 20000203
3451  - Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
3452  - Add --with-ssl-dir option
3453
3454 20000202
3455  - Fix lastlog code for directory based lastlogs. Fix from Josh Durham
3456    <jmd@aoe.vt.edu>
3457  - Documentation fixes from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
3458  - Added URLs to Japanese translations of documents by HARUYAMA Seigo
3459    <haruyama@nt.phys.s.u-tokyo.ac.jp>
3460
3461 20000201
3462  - Use socket pairs by default (instead of pipes). Prevents race condition
3463    on several (buggy) OSs. Report and fix from tridge@linuxcare.com
3464
3465 20000127
3466  - Seed OpenSSL's random number generator before generating RSA keypairs
3467  - Split random collector into seperate file
3468  - Compile fix from Andre Lucas <andre.lucas@dial.pipex.com>
3469
3470 20000126
3471  - Released 1.2.2 stable
3472
3473  - NeXT keeps it lastlog in /usr/adm. Report from
3474    mouring@newton.pconline.com
3475  - Added note in UPGRADING re interop with commercial SSH using idea.
3476    Report from Jim Knoble <jmknoble@jmknoble.cx>
3477  - Fix linking order for Kerberos/AFS. Fix from Holget Trapp
3478    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
3479
3480 20000125
3481  - Fix NULL pointer dereference in login.c. Fix from Andre Lucas
3482    <andre.lucas@dial.pipex.com>
3483  - Reorder PAM initialisation so it does not mess up lastlog. Reported
3484    by Andre Lucas <andre.lucas@dial.pipex.com>
3485  - Use preformatted manpages on SCO, report from Gary E. Miller
3486    <gem@rellim.com>
3487  - New URL for x11-ssh-askpass.
3488  - Fixpaths was missing /etc/ssh_known_hosts. Report from Jim Knoble
3489    <jmknoble@jmknoble.cx>
3490  - Added 'DESTDIR' option to Makefile to ease package building. Patch from
3491    Jim Knoble <jmknoble@jmknoble.cx>
3492  - Updated RPM spec files to use DESTDIR
3493
3494 20000124
3495  - Pick up version 1.2.2 from OpenBSD CVS (no changes, just version number
3496    increment)
3497
3498 20000123
3499  - OpenBSD CVS:
3500    - [packet.c]
3501      getsockname() requires initialized tolen; andy@guildsoftware.com
3502  - AIX patch from Matt Richards <v2matt@btv.ibm.com> and David Rankin
3503    <drankin@bohemians.lexington.ky.us>
3504  - Fix lastlog support, patch from Andre Lucas <andre.lucas@dial.pipex.com>
3505
3506 20000122
3507  - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
3508    <bent@clark.net>
3509  - Merge preformatted manpage patch from Andre Lucas
3510    <andre.lucas@dial.pipex.com>
3511  - Make IPv4 use the default in RPM packages
3512  - Irix uses preformatted manpages
3513  - Missing htons() in bsd-bindresvport.c, fix from Holger Trapp
3514    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
3515  - OpenBSD CVS updates:
3516    - [packet.c]
3517      use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
3518      from Holger.Trapp@Informatik.TU-Chemnitz.DE
3519    - [sshd.c]
3520      log with level log() not fatal() if peer behaves badly.
3521    - [readpass.c]
3522      instead of blocking SIGINT, catch it ourselves, so that we can clean
3523      the tty modes up and kill ourselves -- instead of our process group
3524      leader (scp, cvs, ...) going away and leaving us in noecho mode.
3525      people with cbreak shells never even noticed..
3526    - [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
3527      ie. -> i.e.,
3528
3529 20000120
3530  - Don't use getaddrinfo on AIX
3531  - Update to latest OpenBSD CVS:
3532    - [auth-rsa.c]
3533      - fix user/1056, sshd keeps restrictions; dbt@meat.net
3534    - [sshconnect.c]
3535      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
3536      - destroy keys earlier
3537      - split key exchange (kex) and user authentication (user-auth),
3538        ok: provos@
3539    - [sshd.c]
3540      - no need for poll.h; from bright@wintelcom.net
3541      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
3542      - split key exchange (kex) and user authentication (user-auth),
3543        ok: provos@
3544  - Big manpage and config file cleanup from Andre Lucas
3545    <andre.lucas@dial.pipex.com>
3546    - Re-added latest (unmodified) OpenBSD manpages
3547  - Doc updates
3548  - NetBSD patch from David Rankin <drankin@bohemians.lexington.ky.us> and
3549    Christos Zoulas <christos@netbsd.org>
3550
3551 20000119
3552  - SCO compile fixes from Gary E. Miller <gem@rellim.com>
3553  - Compile fix from Darren_Hall@progressive.com
3554  - Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
3555    addresses using getaddrinfo(). Added a configure switch to make the
3556    default lookup mode AF_INET
3557
3558 20000118
3559  - Fixed --with-pid-dir option
3560  - Makefile fix from Gary E. Miller <gem@rellim.com>
3561  - Compile fix for HPUX and Solaris from Andre Lucas
3562    <andre.lucas@dial.pipex.com>
3563
3564 20000117
3565  - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
3566    port, ignore EINVAL errors (Linux) when searching for free port.
3567  - Revert __snprintf -> snprintf aliasing. Apparently Solaris
3568    __snprintf isn't. Report from Theo de Raadt <theo@cvs.openbsd.org>
3569  - Document location of Redhat PAM file in INSTALL.
3570  - Fixed X11 forwarding bug on Linux. libc advertises AF_INET6
3571    INADDR_ANY_INIT addresses via getaddrinfo, but may not be able to
3572    deliver (no IPv6 kernel support)
3573  - Released 1.2.1pre27
3574
3575  - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
3576  - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
3577    <jhuuskon@hytti.uku.fi>
3578  - Fix hang on logout if processes are still using the pty. Needs
3579    further testing.
3580  - Patch from Christos Zoulas <christos@zoulas.com>
3581    - Try $prefix first when looking for OpenSSL.
3582    - Include sys/types.h when including sys/socket.h in test programs
3583  - Substitute PID directory in sshd.8. Suggestion from Andrew
3584    Stribblehill <a.d.stribblehill@durham.ac.uk>
3585
3586 20000116
3587  - Renamed --with-xauth-path to --with-xauth
3588  - Added --with-pid-dir option
3589  - Released 1.2.1pre26
3590
3591  - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
3592  - Fixed broken bugfix for /dev/ptmx on Linux systems which lack
3593    openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
3594
3595 20000115
3596  - Add --with-xauth-path configure directive and explicit test for
3597    /usr/openwin/bin/xauth for Solaris systems. Report from Anders
3598    Nordby <anders@fix.no>
3599  - Fix incorrect detection of /dev/ptmx on Linux systems that lack
3600    openpty. Report from John Seifarth <john@waw.be>
3601  - Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
3602    sys/types.h. Fixes problems on SCO, report from Gary E. Miller
3603    <gem@rellim.com>
3604  - Use __snprintf and __vnsprintf if they are found where snprintf and
3605    vnsprintf are lacking. Suggested by Ben Taylor <bent@shell.clark.net>
3606    and others.
3607
3608 20000114
3609  - Merged OpenBSD IPv6 patch:
3610    - [sshd.c sshd.8 sshconnect.c ssh.h ssh.c servconf.h servconf.c scp.1]
3611      [scp.c packet.h packet.c login.c log.c canohost.c channels.c]
3612      [hostfile.c sshd_config]
3613      ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new
3614      features: sshd allows multiple ListenAddress and Port options. note
3615      that libwrap is not IPv6-ready. (based on patches from
3616      fujiwara@rcac.tdi.co.jp)
3617    - [ssh.c canohost.c]
3618      more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo,
3619      from itojun@
3620    - [channels.c]
3621      listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)
3622    - [packet.h]
3623      allow auth-kerberos for IPv4 only
3624    - [scp.1 sshd.8 servconf.h scp.c]
3625      document -4, -6, and 'ssh -L 2022/::1/22'
3626    - [ssh.c]
3627      'ssh @host' is illegal (null user name), from
3628      karsten@gedankenpolizei.de
3629    - [sshconnect.c]
3630      better error message
3631    - [sshd.c]
3632      allow auth-kerberos for IPv4 only
3633  - Big IPv6 merge:
3634    - Cleanup overrun in sockaddr copying on RHL 6.1
3635    - Replacements for getaddrinfo, getnameinfo, etc based on versions
3636      from patch from KIKUCHI Takahiro <kick@kyoto.wide.ad.jp>
3637    - Replacement for missing structures on systems that lack IPv6
3638    - record_login needed to know about AF_INET6 addresses
3639    - Borrowed more code from OpenBSD: rresvport_af and requisites
3640
3641 20000110
3642  - Fixes to auth-skey to enable it to use the standard OpenSSL libraries
3643
3644 20000107
3645  - New config.sub and config.guess to fix problems on SCO. Supplied
3646    by Gary E. Miller <gem@rellim.com>
3647  - SCO build fix from Gary E. Miller <gem@rellim.com>
3648  - Released 1.2.1pre25
3649
3650 20000106
3651  - Documentation update & cleanup
3652  - Better KrbIV / AFS detection, based on patch from:
3653    Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
3654
3655 20000105
3656  - Fixed annoying DES corruption problem. libcrypt has been
3657    overriding symbols in libcrypto. Removed libcrypt and crypt.h
3658    altogether (libcrypto includes its own crypt(1) replacement)
3659  - Added platform-specific rules for Irix 6.x. Included warning that
3660    they are untested.
3661
3662 20000103
3663  - Add explicit make rules for files proccessed by fixpaths.
3664  - Fix "make install" in RPM spec files. Report from Tenkou N. Hattori
3665    <tnh@kondara.org>
3666  - Removed "nullok" directive from default PAM configuration files.
3667    Added information on enabling EmptyPasswords on openssh+PAM in
3668    UPGRADING file.
3669  - OpenBSD CVS updates
3670    - [ssh-agent.c]
3671      cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and
3672      dgaudet@arctic.org
3673    - [sshconnect.c]
3674      compare correct version for 1.3 compat mode
3675
3676 20000102
3677  - Prevent multiple inclusion of config.h and defines.h. Suggested
3678    by Andre Lucas <andre.lucas@dial.pipex.com>
3679  - Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
3680    <dgaudet@arctic.org>
3681
3682 19991231
3683  - Fix password support on systems with a mixture of shadowed and
3684    non-shadowed passwords (e.g. NIS). Report and fix from
3685    HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
3686  - Fix broken autoconf typedef detection. Report from Marc G.
3687    Fournier <marc.fournier@acadiau.ca>
3688  - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
3689    <Franz.Sirl-kernel@lauterbach.com>
3690  - Prevent typedefs from being compiled more than once. Report from
3691    Marc G. Fournier <marc.fournier@acadiau.ca>
3692  - Fill in ut_utaddr utmp field. Report from Benjamin Charron
3693    <iretd@bigfoot.com>
3694  - Really fix broken default path. Fix from Jim Knoble
3695    <jmknoble@jmknoble.cx>
3696  - Remove test for quad_t. No longer needed.
3697  - Released 1.2.1pre24
3698
3699  - Added support for directory-based lastlogs
3700  - Really fix typedefs, patch from Ben Taylor <bent@clark.net>
3701
3702 19991230
3703  - OpenBSD CVS updates:
3704    - [auth-passwd.c]
3705      check for NULL 1st
3706  - Removed most of the pam code into its own file auth-pam.[ch]. This
3707    cleaned up sshd.c up significantly.
3708  - PAM authentication was incorrectly interpreting
3709    "PermitRootLogin without-password". Report from Matthias Andree
3710    <ma@dt.e-technik.uni-dortmund.de
3711  - Several other cleanups
3712  - Merged Dante SOCKS support patch from David Rankin
3713   <drankin@bohemians.lexington.ky.us>
3714  - Updated documentation with ./configure options
3715  - Released 1.2.1pre23
3716
3717 19991229
3718  - Applied another NetBSD portability patch from David Rankin
3719    <drankin@bohemians.lexington.ky.us>
3720  - Fix --with-default-path option.
3721  - Autodetect perl, patch from David Rankin
3722    <drankin@bohemians.lexington.ky.us>
3723  - Print whether OpenSSH was compiled with RSARef, patch from
3724    Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
3725  - Calls to pam_setcred, patch from Nalin Dahyabhai
3726    <nalin@thermo.stat.ncsu.edu>
3727  - Detect missing size_t and typedef it.
3728  - Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
3729  - Minor Makefile cleaning
3730
3731 19991228
3732  - Replacement for getpagesize() for systems which lack it
3733  - NetBSD login.c compile fix from David Rankin
3734   <drankin@bohemians.lexington.ky.us>
3735  - Fully set ut_tv if present in utmp or utmpx
3736  - Portability fixes for Irix 5.3 (now compiles OK!)
3737  - autoconf and other misc cleanups
3738  - Merged AIX patch from Darren Hall <dhall@virage.org>
3739  - Cleaned up defines.h
3740  - Released 1.2.1pre22
3741
3742 19991227
3743  - Automatically correct paths in manpages and configuration files. Patch
3744    and script from Andre Lucas <andre.lucas@dial.pipex.com>
3745  - Removed credits from README to CREDITS file, updated.
3746  - Added --with-default-path to specify custom path for server
3747  - Removed #ifdef trickery from acconfig.h into defines.h
3748  - PAM bugfix. PermitEmptyPassword was being ignored.
3749  - Fixed PAM config files to allow empty passwords if server does.
3750  - Explained spurious PAM auth warning workaround in UPGRADING
3751  - Use last few chars of tty line as ut_id
3752  - New SuSE RPM spec file from Chris Saia <csaia@wtower.com>
3753  - OpenBSD CVS updates:
3754    - [packet.h auth-rhosts.c]
3755      check format string for packet_disconnect and packet_send_debug, too
3756    - [channels.c]
3757      use packet_get_maxsize for channels. consistence.
3758
3759 19991226
3760  - Enabled utmpx support by default for Solaris
3761  - Cleanup sshd.c PAM a little more
3762  - Revised RPM package to include Jim Knoble's <jmknoble@jmknoble.cx>
3763    X11 ssh-askpass program.
3764  - Disable logging of PAM success and failures, PAM is verbose enough.
3765    Unfortunatly there is currently no way to disable auth failure
3766    messages. Mention this in UPGRADING file and sent message to PAM
3767    developers
3768  - OpenBSD CVS update:
3769    - [ssh-keygen.1 ssh.1]
3770      remove ref to .ssh/random_seed, mention .ssh/environment in
3771      .Sh FILES, too
3772  - Released 1.2.1pre21
3773  - Fixed implicit '.' in default path, report from Jim Knoble
3774    <jmknoble@jmknoble.cx>
3775  - Redhat RPM spec fixes from Jim Knoble <jmknoble@jmknoble.cx>
3776
3777 19991225
3778  - More fixes from Andre Lucas <andre.lucas@dial.pipex.com>
3779  - Cleanup of auth-passwd.c for shadow and MD5 passwords
3780  - Cleanup and bugfix of PAM authentication code
3781  - Released 1.2.1pre20
3782
3783  - Merged fixes from Ben Taylor <bent@clark.net>
3784  - Fixed configure support for PAM. Reported by Naz <96na@eng.cam.ac.uk>
3785  - Disabled logging of PAM password authentication failures when password
3786    is empty. (e.g start of authentication loop). Reported by Naz
3787    <96na@eng.cam.ac.uk>)
3788
3789 19991223
3790  - Merged later HPUX patch from Andre Lucas
3791    <andre.lucas@dial.pipex.com>
3792  - Above patch included better utmpx support from Ben Taylor
3793    <bent@clark.net>
3794
3795 19991222
3796  - Fix undefined fd_set type in ssh.h from Povl H. Pedersen
3797    <pope@netguide.dk>
3798  - Fix login.c breakage on systems which lack ut_host in struct
3799    utmp. Reported by Willard Dawson <willard.dawson@sbs.siemens.com>
3800
3801 19991221
3802  - Integration of large HPUX patch from Andre Lucas
3803    <andre.lucas@dial.pipex.com>. Integrating it had a few other
3804    benefits:
3805    - Ability to disable shadow passwords at configure time
3806    - Ability to disable lastlog support at configure time
3807    - Support for IP address in $DISPLAY
3808  - OpenBSD CVS update:
3809    - [sshconnect.c]
3810    say "REMOTE HOST IDENTIFICATION HAS CHANGED"
3811  - Fix DISABLE_SHADOW support
3812  - Allow MD5 passwords even if shadow passwords are disabled
3813  - Release 1.2.1pre19
3814
3815 19991218
3816  - Redhat init script patch from Chun-Chung Chen
3817    <cjj@u.washington.edu>
3818  - Avoid breakage on systems without IPv6 headers
3819
3820 19991216
3821  - Makefile changes for Solaris from Peter Kocks
3822    <peter.kocks@baygate.com>
3823  - Minor updates to docs
3824  - Merged OpenBSD CVS changes:
3825    - [authfd.c ssh-agent.c]
3826      keysize warnings talk about identity files
3827    - [packet.c]
3828      "Connection closed by x.x.x.x": fatal() -> log()
3829  - Correctly handle empty passwords in shadow file. Patch from:
3830    "Chris, the Young One" <cky@pobox.com>
3831  - Released 1.2.1pre18
3832
3833 19991215
3834  - Integrated patchs from Juergen Keil <jk@tools.de>
3835    - Avoid void* pointer arithmatic
3836    - Use LDFLAGS correctly
3837    - Fix SIGIO error in scp
3838    - Simplify status line printing in scp
3839  - Added better test for inline functions compiler support from
3840    Darren_Hall@progressive.com
3841
3842 19991214
3843  - OpenBSD CVS Changes
3844    - [canohost.c]
3845      fix get_remote_port() and friends for sshd -i;
3846      Holger.Trapp@Informatik.TU-Chemnitz.DE
3847    - [mpaux.c]
3848      make code simpler. no need for memcpy. niels@ ok
3849    - [pty.c]
3850      namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
3851      fix proto; markus
3852    - [ssh.1]
3853       typo; mark.baushke@solipsa.com
3854    - [channels.c ssh.c ssh.h sshd.c]
3855      type conflict for 'extern Type *options' in channels.c; dot@dotat.at
3856    - [sshconnect.c]
3857      move checking of hostkey into own function.
3858    - [version.h]
3859      OpenSSH-1.2.1
3860  - Clean up broken includes in pty.c
3861  - Some older systems don't have poll.h, they use sys/poll.h instead
3862  - Doc updates
3863
3864 19991211
3865  - Fix compilation on systems with AFS. Reported by
3866    aloomis@glue.umd.edu
3867  - Fix installation on Solaris. Reported by
3868    Gordon Rowell <gordonr@gormand.com.au>
3869  - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
3870    patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
3871  - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
3872  - Compile fix from David Agraz <dagraz@jahoopa.com>
3873  - Avoid compiler warning in bsd-snprintf.c
3874  - Added pam_limits.so to default PAM config. Suggested by
3875    Jim Knoble <jmknoble@jmknoble.cx>
3876
3877 19991209
3878  - Import of patch from Ben Taylor <bent@clark.net>:
3879    - Improved PAM support
3880    - "uninstall" rule for Makefile
3881    - utmpx support
3882    - Should fix PAM problems on Solaris
3883  - OpenBSD CVS updates:
3884    - [readpass.c]
3885      avoid stdio; based on work by markus, millert, and I
3886    - [sshd.c]
3887      make sure the client selects a supported cipher
3888    - [sshd.c]
3889      fix sighup handling.  accept would just restart and daemon handled
3890      sighup only after the next connection was accepted. use poll on
3891      listen sock now.
3892    - [sshd.c]
3893      make that a fatal
3894  - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
3895    to fix libwrap support on NetBSD
3896  - Released 1.2pre17
3897
3898 19991208
3899  - Compile fix for Solaris with /dev/ptmx from
3900    David Agraz <dagraz@jahoopa.com>
3901
3902 19991207
3903  - sshd Redhat init script patch from Jim Knoble <jmknoble@jmknoble.cx>
3904    fixes compatability with 4.x and 5.x
3905  - Fixed default SSH_ASKPASS
3906  - Fix PAM account and session being called multiple times. Problem
3907    reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
3908  - Merged more OpenBSD changes:
3909    - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
3910      move atomicio into it's own file.  wrap all socket write()s which
3911      were doing write(sock, buf, len) != len, with atomicio() calls.
3912    - [auth-skey.c]
3913      fd leak
3914    - [authfile.c]
3915      properly name fd variable
3916    - [channels.c]
3917      display great hatred towards strcpy
3918    - [pty.c pty.h sshd.c]
3919      use openpty() if it exists (it does on BSD4_4)
3920    - [tildexpand.c]
3921      check for ~ expansion past MAXPATHLEN
3922  - Modified helper.c to use new atomicio function.
3923  - Reformat Makefile a little
3924  - Moved RC4 routines from rc4.[ch] into helper.c
3925  - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
3926  - Updated SuSE spec from Chris Saia <csaia@wtower.com>
3927  - Tweaked Redhat spec
3928  - Clean up bad imports of a few files (forgot -kb)
3929  - Released 1.2pre16
3930
3931 19991204
3932  - Small cleanup of PAM code in sshd.c
3933  - Merged OpenBSD CVS changes:
3934    - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
3935      move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
3936    - [auth-rsa.c]
3937      warn only about mismatch if key is _used_
3938      warn about keysize-mismatch with log() not error()
3939      channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
3940      ports are u_short
3941    - [hostfile.c]
3942      indent, shorter warning
3943    - [nchan.c]
3944      use error() for internal errors
3945    - [packet.c]
3946      set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
3947      serverloop.c
3948      indent
3949    - [ssh-add.1 ssh-add.c ssh.h]
3950      document $SSH_ASKPASS, reasonable default
3951    - [ssh.1]
3952      CheckHostIP is not available for connects via proxy command
3953    - [sshconnect.c]
3954      typo
3955      easier to read client code for passwd and skey auth
3956      turn of checkhostip for proxy connects, since we don't know the remote ip
3957
3958 19991126
3959  - Add definition for __P()
3960  - Added [v]snprintf() replacement for systems that lack it
3961
3962 19991125
3963  - More reformatting merged from OpenBSD CVS
3964  - Merged OpenBSD CVS changes:
3965    - [channels.c]
3966      fix packet_integrity_check() for !have_hostname_in_open.
3967      report from mrwizard@psu.edu via djm@ibs.com.au
3968    - [channels.c]
3969      set SO_REUSEADDR and SO_LINGER for forwarded ports.
3970      chip@valinux.com via damien@ibs.com.au
3971    - [nchan.c]
3972      it's not an error() if shutdown_write failes in nchan.
3973    - [readconf.c]
3974      remove dead #ifdef-0-code
3975    - [readconf.c servconf.c]
3976      strcasecmp instead of tolower
3977    - [scp.c]
3978      progress meter overflow fix from damien@ibs.com.au
3979    - [ssh-add.1 ssh-add.c]
3980      SSH_ASKPASS support
3981    - [ssh.1 ssh.c]
3982      postpone fork_after_authentication until command execution,
3983      request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
3984      plus: use daemon() for backgrounding
3985  - Added BSD compatible install program and autoconf test, thanks to
3986    Niels Kristian Bech Jensen <nkbj@image.dk>
3987  - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
3988  - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
3989  - Release 1.2pre15
3990
3991 19991124
3992  - Merged very large OpenBSD source code reformat
3993  - OpenBSD CVS updates
3994    - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
3995      [ssh.h sshd.8 sshd.c]
3996      syslog changes:
3997      * Unified Logmessage for all auth-types, for success and for failed
3998      * Standard connections get only ONE line in the LOG when level==LOG:
3999        Auth-attempts are logged only, if authentication is:
4000           a) successfull or
4001           b) with passwd or
4002           c) we had more than AUTH_FAIL_LOG failues
4003      * many log() became verbose()
4004      * old behaviour with level=VERBOSE
4005    - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
4006      tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
4007      messages. allows use of s/key in windows (ttssh, securecrt) and
4008      ssh-1.2.27 clients without 'ssh -v', ok: niels@
4009    - [sshd.8]
4010      -V, for fallback to openssh in SSH2 compatibility mode
4011    - [sshd.c]
4012      fix sigchld race; cjc5@po.cwru.edu
4013
4014 19991123
4015  - Added SuSE package files from Chris Saia <csaia@wtower.com>
4016  - Restructured package-related files under packages/*
4017  - Added generic PAM config
4018  - Numerous little Solaris fixes
4019  - Add recommendation to use GNU make to INSTALL document
4020
4021 19991122
4022  - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
4023  - OpenBSD CVS Changes
4024    - [ssh-keygen.c]
4025      don't create ~/.ssh only if the user wants to store the private
4026      key there. show fingerprint instead of public-key after
4027      keygeneration. ok niels@
4028  - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
4029  - Added timersub() macro
4030  - Tidy RCSIDs of bsd-*.c
4031  - Added autoconf test and macro to deal with old PAM libraries
4032    pam_strerror definition (one arg vs two).
4033  - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
4034  - Retry /dev/urandom reads interrupted by signal (report from
4035    Robert Hardy <rhardy@webcon.net>)
4036  - Added a setenv replacement for systems which lack it
4037  - Only display public key comment when presenting ssh-askpass dialog
4038  - Released 1.2pre14
4039
4040  - Configure, Make and changelog corrections from Tudor Bosman
4041    <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
4042
4043 19991121
4044  - OpenBSD CVS Changes:
4045    - [channels.c]
4046      make this compile, bad markus
4047    - [log.c readconf.c servconf.c ssh.h]
4048      bugfix: loglevels are per host in clientconfig,
4049      factor out common log-level parsing code.
4050    - [servconf.c]
4051      remove unused index (-Wall)
4052    - [ssh-agent.c]
4053      only one 'extern char *__progname'
4054    - [sshd.8]
4055      document SIGHUP, -Q to synopsis
4056    - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
4057      [channels.c clientloop.c]
4058      SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
4059      [hope this time my ISP stays alive during commit]
4060    - [OVERVIEW README] typos; green@freebsd
4061    - [ssh-keygen.c]
4062      replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
4063      exit if writing the key fails (no infinit loop)
4064      print usage() everytime we get bad options
4065    - [ssh-keygen.c] overflow, djm@mindrot.org
4066    - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
4067
4068 19991120
4069  - Merged more Solaris support from Marc G. Fournier
4070    <marc.fournier@acadiau.ca>
4071  - Wrote autoconf tests for integer bit-types
4072  - Fixed enabling kerberos support
4073  - Fix segfault in ssh-keygen caused by buffer overrun in filename
4074    handling.
4075
4076 19991119
4077  - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
4078  - Merged OpenBSD CVS changes
4079    - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
4080      more %d vs. %s in fmt-strings
4081    - [authfd.c]
4082      Integers should not be printed with %s
4083  - EGD uses a socket, not a named pipe. Duh.
4084  - Fix includes in fingerprint.c
4085  - Fix scp progress bar bug again.
4086  - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
4087    David Rankin <drankin@bohemians.lexington.ky.us>
4088  - Added autoconf option to enable Kerberos 4 support (untested)
4089  - Added autoconf option to enable AFS support (untested)
4090  - Added autoconf option to enable S/Key support (untested)
4091  - Added autoconf option to enable TCP wrappers support (compiles OK)
4092  - Renamed BSD helper function files to bsd-*
4093  - Added tests for login and daemon and enable OpenBSD replacements for
4094    when they are absent.
4095  - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
4096
4097 19991118
4098  - Merged OpenBSD CVS changes
4099    - [scp.c] foregroundproc() in scp
4100    - [sshconnect.h] include fingerprint.h
4101    - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
4102      changes.
4103    - [ssh.1] Spell my name right.
4104  - Added openssh.com info to README
4105
4106 19991117
4107  - Merged OpenBSD CVS changes
4108    - [ChangeLog.Ylonen] noone needs this anymore
4109    - [authfd.c] close-on-exec for auth-socket, ok deraadt
4110    - [hostfile.c]
4111      in known_hosts key lookup the entry for the bits does not need
4112      to match, all the information is contained in n and e. This
4113      solves the problem with buggy servers announcing the wrong
4114      modulus length.  markus and me.
4115    - [serverloop.c]
4116      bugfix: check for space if child has terminated, from:
4117      iedowse@maths.tcd.ie
4118    - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
4119      [fingerprint.c fingerprint.h]
4120      rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
4121    - [ssh-agent.1] typo
4122    - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
4123    - [sshd.c]
4124      force logging to stderr while loading private key file
4125      (lost while converting to new log-levels)
4126
4127 19991116
4128  - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
4129  - Merged OpenBSD CVS changes:
4130    - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
4131      [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
4132      the keysize of rsa-parameter 'n' is passed implizit,
4133      a few more checks and warnings about 'pretended' keysizes.
4134    - [cipher.c cipher.h packet.c packet.h sshd.c]
4135      remove support for cipher RC4
4136    - [ssh.c]
4137      a note for legay systems about secuity issues with permanently_set_uid(),
4138      the private hostkey and ptrace()
4139    - [sshconnect.c]
4140      more detailed messages about adding and checking hostkeys
4141
4142 19991115
4143  - Merged OpenBSD CVS changes:
4144    - [ssh-add.c] change passphrase loop logic and remove ref to
4145      $DISPLAY, ok niels
4146  - Changed to ssh-add.c broke askpass support. Revised it to be a little more
4147    modular.
4148  - Revised autoconf support for enabling/disabling askpass support.
4149  - Merged more OpenBSD CVS changes:
4150    [auth-krb4.c]
4151      - disconnect if getpeername() fails
4152      - missing xfree(*client)
4153    [canohost.c]
4154      - disconnect if getpeername() fails
4155      - fix comment: we _do_ disconnect if ip-options are set
4156    [sshd.c]
4157      - disconnect if getpeername() fails
4158      - move checking of remote port to central place
4159    [auth-rhosts.c] move checking of remote port to central place
4160    [log-server.c] avoid extra fd per sshd, from millert@
4161    [readconf.c] print _all_ bad config-options in ssh(1), too
4162    [readconf.h] print _all_ bad config-options in ssh(1), too
4163    [ssh.c] print _all_ bad config-options in ssh(1), too
4164    [sshconnect.c] disconnect if getpeername() fails
4165  - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
4166  - Various small cleanups to bring diff (against OpenBSD) size down.
4167  - Merged more Solaris compability from Marc G. Fournier
4168    <marc.fournier@acadiau.ca>
4169  - Wrote autoconf tests for __progname symbol
4170  - RPM spec file fixes from Jim Knoble <jmknoble@jmknoble.cx>
4171  - Released 1.2pre12
4172
4173  - Another OpenBSD CVS update:
4174    - [ssh-keygen.1] fix .Xr
4175
4176 19991114
4177  - Solaris compilation fixes (still imcomplete)
4178
4179 19991113
4180  - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
4181    - Don't install config files if they already exist
4182    - Fix inclusion of additional preprocessor directives from acconfig.h
4183  - Removed redundant inclusions of config.h
4184  - Added 'Obsoletes' lines to RPM spec file
4185  - Merged OpenBSD CVS changes:
4186    - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
4187    - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
4188      totalsize, ok niels,aaron
4189  - Delay fork (-f option) in ssh until after port forwarded connections
4190    have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
4191  - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
4192  - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
4193  - Tidied default config file some more
4194  - Revised Redhat initscript to fix bug: sshd (re)start would fail
4195    if executed from inside a ssh login.
4196
4197 19991112
4198  - Merged changes from OpenBSD CVS
4199    - [sshd.c] session_key_int may be zero
4200    - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
4201      IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
4202      deraadt,millert
4203  - Brought default sshd_config more in line with OpenBSD's
4204  - Grab server in gnome-ssh-askpass (Debian bug #49872)
4205  - Released 1.2pre10
4206
4207  - Added INSTALL documentation
4208  - Merged yet more changes from OpenBSD CVS
4209    - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
4210      [ssh.c ssh.h sshconnect.c sshd.c]
4211      make all access to options via 'extern Options options'
4212      and 'extern ServerOptions options' respectively;
4213      options are no longer passed as arguments:
4214       * make options handling more consistent
4215       * remove #include "readconf.h" from ssh.h
4216       * readconf.h is only included if necessary
4217    - [mpaux.c] clear temp buffer
4218    - [servconf.c] print _all_ bad options found in configfile
4219  - Make ssh-askpass support optional through autoconf
4220  - Fix nasty division-by-zero error in scp.c
4221  - Released 1.2pre11
4222
4223 19991111
4224  - Added (untested) Entropy Gathering Daemon (EGD) support
4225  - Fixed /dev/urandom fd leak (Debian bug #49722)
4226  - Merged OpenBSD CVS changes:
4227    - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
4228    - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
4229    - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
4230  - Fix integer overflow which was messing up scp's progress bar for large
4231    file transfers. Fix submitted to OpenBSD developers. Report and fix
4232    from Kees Cook <cook@cpoint.net>
4233  - Merged more OpenBSD CVS changes:
4234    - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
4235      + krb-cleanup cleanup
4236    - [clientloop.c log-client.c log-server.c ]
4237      [readconf.c readconf.h servconf.c servconf.h ]
4238      [ssh.1 ssh.c ssh.h sshd.8]
4239      add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
4240      obsoletes QuietMode and FascistLogging in sshd.
4241    - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
4242      allow session_key_int != sizeof(session_key)
4243      [this should fix the pre-assert-removal-core-files]
4244  - Updated default config file to use new LogLevel option and to improve
4245    readability
4246
4247 19991110
4248  - Merged several minor fixes:
4249    - ssh-agent commandline parsing
4250    - RPM spec file now installs ssh setuid root
4251    - Makefile creates libdir
4252    - Merged beginnings of Solaris compability from Marc G. Fournier
4253      <marc.fournier@acadiau.ca>
4254
4255 19991109
4256  - Autodetection of SSL/Crypto library location via autoconf
4257  - Fixed location of ssh-askpass to follow autoconf
4258  - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
4259  - Autodetection of RSAref library for US users
4260  - Minor doc updates
4261  - Merged OpenBSD CVS changes:
4262    - [rsa.c] bugfix: use correct size for memset()
4263    - [sshconnect.c] warn if announced size of modulus 'n' != real size
4264  - Added GNOME passphrase requestor (use --with-gnome-askpass)
4265  - RPM build now creates subpackages
4266  - Released 1.2pre9
4267
4268 19991108
4269  - Removed debian/ directory. This is now being maintained separately.
4270  - Added symlinks for slogin in RPM spec file
4271  - Fixed permissions on manpages in RPM spec file
4272  - Added references to required libraries in README file
4273  - Removed config.h.in from CVS
4274  - Removed pwdb support (better pluggable auth is provided by glibc)
4275  - Made PAM and requisite libdl optional
4276  - Removed lots of unnecessary checks from autoconf
4277  - Added support and autoconf test for openpty() function (Unix98 pty support)
4278  - Fix for scp not finding ssh if not installed as /usr/bin/ssh
4279  - Added TODO file
4280  - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
4281    - Added ssh-askpass program
4282    - Added ssh-askpass support to ssh-add.c
4283    - Create symlinks for slogin on install
4284    - Fix "distclean" target in makefile
4285    - Added example for ssh-agent to manpage
4286    - Added support for PAM_TEXT_INFO messages
4287    - Disable internal /etc/nologin support if PAM enabled
4288  - Merged latest OpenBSD CVS changes:
4289    - [all] replace assert() with error, fatal or packet_disconnect
4290    - [sshd.c] don't send fail-msg but disconnect if too many authentication
4291      failures
4292    - [sshd.c] remove unused argument. ok dugsong
4293    - [sshd.c] typo
4294    - [rsa.c] clear buffers used for encryption. ok: niels
4295    - [rsa.c] replace assert() with error, fatal or packet_disconnect
4296    - [auth-krb4.c] remove unused argument. ok dugsong
4297  - Fixed coredump after merge of OpenBSD rsa.c patch
4298  - Released 1.2pre8
4299
4300 19991102
4301  - Merged change from OpenBSD CVS
4302   - One-line cleanup in sshd.c
4303
4304 19991030
4305  - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
4306  - Merged latest updates for OpenBSD CVS:
4307    - channels.[ch] - remove broken x11 fix and document istate/ostate
4308    - ssh-agent.c - call setsid() regardless of argv[]
4309    - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
4310  - Documentation cleanups
4311  - Renamed README -> README.Ylonen
4312  - Renamed README.openssh ->README
4313
4314 19991029
4315  - Renamed openssh* back to ssh* at request of Theo de Raadt
4316  - Incorporated latest changes from OpenBSD's CVS
4317  - Integrated Makefile patch from  Niels Kristian Bech Jensen <nkbj@image.dk>
4318  - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
4319  - Make distclean now removed configure script
4320  - Improved PAM logging
4321  - Added some debug() calls for PAM
4322  - Removed redundant subdirectories
4323  - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
4324    building on Debian.
4325  - Fixed off-by-one error in PAM env patch
4326  - Released 1.2pre6
4327
4328 19991028
4329  - Further PAM enhancements.
4330    - Much cleaner
4331    - Now uses account and session modules for all logins.
4332  - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
4333    - Build fixes
4334    - Autoconf
4335    - Change binary names to open*
4336  - Fixed autoconf script to detect PAM on RH6.1
4337  - Added tests for libpwdb, and OpenBSD functions to autoconf
4338  - Released 1.2pre4
4339
4340  - Imported latest OpenBSD CVS code
4341  - Updated README.openssh
4342  - Released 1.2pre5
4343
4344 19991027
4345  - Adapted PAM patch.
4346  - Released 1.0pre2
4347
4348  - Excised my buggy replacements for strlcpy and mkdtemp
4349  - Imported correct OpenBSD strlcpy and mkdtemp routines.
4350  - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
4351  - Picked up correct version number from OpenBSD
4352  - Added sshd.pam PAM configuration file
4353  - Added sshd.init Redhat init script
4354  - Added openssh.spec RPM spec file
4355  - Released 1.2pre3
4356
4357 19991026
4358  - Fixed include paths of OpenSSL functions
4359  - Use OpenSSL MD5 routines
4360  - Imported RC4 code from nanocrypt
4361  - Wrote replacements for OpenBSD arc4random* functions
4362  - Wrote replacements for strlcpy and mkdtemp
4363  - Released 1.0pre1
4364
4365 $Id$
This page took 0.354188 seconds and 3 git commands to generate.