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