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