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