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