]> andersk Git - openssh.git/blob - ChangeLog
- (djm) Minor doc tweaks
[openssh.git] / ChangeLog
1 20000610
2  - (djm) Minor doc tweaks
3
4 20000609
5  - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
6    (in favour of utmpx) on Solaris 8
7
8 20000606
9  - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
10    list of commands (by default). Removed verbose debugging (by default).
11  - (djm) Increased command entropy estimates and default entropy collection 
12    timeout
13  - (djm) Remove duplicate headers from loginrec.c
14  - (djm) Don't add /usr/local/lib to library search path on Irix
15  - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III 
16    <tibbs@math.uh.edu>
17  - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
18    <zack@wolery.cumb.org>
19  - (djm) OpenBSD CVS updates:
20   - todd@cvs.openbsd.org
21     [sshconnect2.c]
22     teach protocol v2 to count login failures properly and also enable an
23     explanation of why the password prompt comes up again like v1; this is NOT
24     crypto
25   - markus@cvs.openbsd.org  
26     [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
27     xauth_location support; pr 1234
28     [readconf.c sshconnect2.c]
29     typo, unused
30     [session.c]
31     allow use_login only for login sessions, otherwise remote commands are
32     execed with uid==0
33     [sshd.8]
34     document UseLogin better
35     [version.h]
36     OpenSSH 2.1.1
37     [auth-rsa.c]
38     fix match_hostname() logic for auth-rsa: deny access if we have a 
39     negative match or no match at all
40     [channels.c hostfile.c match.c]
41     don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via 
42     kris@FreeBSD.org
43
44 20000606
45  - (djm) Added --with-cflags, --with-ldflags and --with-libs options to 
46    configure.
47
48 20000604
49  - Configure tweaking for new login code on Irix 5.3
50  - (andre) login code changes based on djm feedback
51
52 20000603
53  - (andre) New login code
54     - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c
55     - Add loginrec.[ch], logintest.c and autoconf code
56         
57 20000531
58  - Cleanup of auth.c, login.c and fake-*
59  - Cleanup of auth-pam.c, save and print "account expired" error messages
60  - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
61  - Rewrote bsd-login to use proper utmp API if available. Major cleanup
62    of fallback DIY code.
63
64 20000530
65  - Define atexit for old Solaris
66  - Fix buffer overrun in login.c for systems which use syslen in utmpx.
67    patch from YOSHIFUJI Hideaki <yoshfuji@cerberus.nemoto.ecei.tohoku.ac.jp>
68  - OpenBSD CVS updates:
69   - markus@cvs.openbsd.org
70     [session.c]
71     make x11-fwd work w/ localhost (xauth add host/unix:11)
72     [cipher.c compat.c readconf.c servconf.c]
73     check strtok() != NULL; ok niels@
74     [key.c]
75     fix key_read() for uuencoded keys w/o '='
76     [serverloop.c]
77     group ssh1 vs. ssh2 in serverloop
78     [kex.c kex.h myproposal.h sshconnect2.c sshd.c]
79     split kexinit/kexdh, factor out common code
80     [readconf.c ssh.1 ssh.c]
81     forwardagent defaults to no, add ssh -A
82   - theo@cvs.openbsd.org
83     [session.c]
84     just some line shortening
85  - Released 2.1.0p3
86
87 20000520
88  - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
89  - Don't touch utmp if USE_UTMPX defined
90  - SunOS 4.x support from Todd C. Miller <Todd.Miller@courtesan.com>
91  - SIGCHLD fix for AIX and HPUX from Tom Bertelson <tbert@abac.com>
92  - HPUX and Configure fixes from Lutz Jaenicke 
93    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
94  - Use mkinstalldirs script to make directories instead of non-portable 
95    "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
96  - Doc cleanup
97
98 20000518
99  - Include Andre Lucas' fixprogs script. Forgot to "cvs add" it yesterday
100  - OpenBSD CVS updates:
101   - markus@cvs.openbsd.org
102     [sshconnect.c]
103     copy only ai_addrlen bytes; misiek@pld.org.pl
104     [auth.c]
105     accept an empty shell in authentication; bug reported by 
106     chris@tinker.ucr.edu
107     [serverloop.c]
108     we don't have stderr for interactive terminal sessions (fcntl errors)
109
110 20000517
111  - Fix from Andre Lucas <andre.lucas@dial.pipex.com>
112   - Fixes command line printing segfaults (spotter: Bladt Norbert)
113   - Fixes erroneous printing of debug messages to syslog
114   - Fixes utmp for MacOS X (spotter: Aristedes Maniatis)
115   - Gives useful error message if PRNG initialisation fails
116   - Reduced ssh startup delay
117   - Measures cumulative command time rather than the time between reads
118          after select()
119   - 'fixprogs' perl script to eliminate non-working entropy commands, and
120          optionally run 'ent' to measure command entropy
121  - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
122  - Avoid WCOREDUMP complation errors for systems that lack it
123  - Avoid SIGCHLD warnings from entropy commands 
124  - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
125  - OpenBSD CVS update:
126   - markus@cvs.openbsd.org 
127     [ssh.c]
128     fix usage()
129     [ssh2.h]
130     draft-ietf-secsh-architecture-05.txt
131     [ssh.1]
132     document ssh -T -N (ssh2 only)
133     [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c]
134     enable nonblocking IO for sshd w/ proto 1, too; split out common code
135     [aux.c]
136     missing include
137  - Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
138   - INSTALL typo and URL fix
139   - Makefile fix
140   - Solaris fixes
141  - Checking for ssize_t and memmove. Based on patch from SAKAI Kiyotaka 
142    <ksakai@kso.netwk.ntt-at.co.jp>
143  - RSAless operation patch from kevin_oconnor@standardandpoors.com
144  - Detect OpenSSL seperatly from RSA
145  - Better test for RSA (more compatible with RSAref). Based on work by 
146    Ed Eden <ede370@stl.rural.usda.gov>
147
148 20000513
149  - Fix for non-recognised DSA keys from Arkadiusz Miskiewicz 
150    <misiek@pld.org.pl>
151
152 20000511
153  - Fix for prng_seed permissions checking from Lutz Jaenicke 
154    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
155  - "make host-key" fix for Irix
156
157 20000509
158  - OpenBSD CVS update
159   - markus@cvs.openbsd.org
160     [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c]
161     [ssh.h sshconnect1.c sshconnect2.c sshd.8]
162     - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
163   - hugh@cvs.openbsd.org
164     [ssh.1]
165     - zap typo
166     [ssh-keygen.1]
167     - One last nit fix. (markus approved)
168     [sshd.8]
169     - some markus certified spelling adjustments
170   - markus@cvs.openbsd.org
171     [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c]
172     [sshconnect2.c ]
173     - bug compat w/ ssh-2.0.13 x11, split out bugs
174     [nchan.c]
175     - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@
176     [ssh-keygen.c]
177     - handle escapes in real and original key format, ok millert@
178     [version.h]
179     - OpenSSH-2.1
180  - Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
181  - Doc updates
182  - Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported 
183    by Andre Lucas <andre.lucas@dial.pipex.com>
184
185 20000508
186  - Makefile and RPM spec fixes
187  - Generate DSA host keys during "make key" or RPM installs
188  - OpenBSD CVS update
189   - markus@cvs.openbsd.org
190     [clientloop.c sshconnect2.c]
191     - make x11-fwd interop w/ ssh-2.0.13
192     [README.openssh2]
193     - interop w/ SecureFX
194  - Release 2.0.0beta2
195
196  - Configure caching and cleanup patch from Andre Lucas' 
197    <andre.lucas@dial.pipex.com>
198
199 20000507
200  - Remove references to SSLeay.
201  - Big OpenBSD CVS update
202   - markus@cvs.openbsd.org
203     [clientloop.c]
204     - typo
205     [session.c]
206     - update proctitle on pty alloc/dealloc, e.g. w/ windows client
207     [session.c]
208     - update proctitle for proto 1, too
209     [channels.h nchan.c serverloop.c session.c sshd.c]
210     - use c-style comments
211   - deraadt@cvs.openbsd.org
212     [scp.c]
213     - more atomicio
214   - markus@cvs.openbsd.org 
215     [channels.c]
216     - set O_NONBLOCK
217     [ssh.1]
218     - update AUTHOR
219     [readconf.c ssh-keygen.c ssh.h]
220     - default DSA key file ~/.ssh/id_dsa
221     [clientloop.c]
222     - typo, rm verbose debug
223   - deraadt@cvs.openbsd.org
224     [ssh-keygen.1]
225     - document DSA use of ssh-keygen
226     [sshd.8]
227     - a start at describing what i understand of the DSA side
228     [ssh-keygen.1]
229     - document -X and -x
230     [ssh-keygen.c]
231     - simplify usage
232   - markus@cvs.openbsd.org 
233     [sshd.8]
234     - there is no rhosts_dsa
235     [ssh-keygen.1]
236     - document -y, update -X,-x
237     [nchan.c]
238     - fix close for non-open ssh1 channels
239     [servconf.c servconf.h ssh.h sshd.8 sshd.c ]
240     - s/DsaKey/HostDSAKey/, document option
241     [sshconnect2.c]
242     - respect number_of_password_prompts
243     [channels.c channels.h servconf.c servconf.h session.c sshd.8]
244     - GatewayPorts for sshd, ok deraadt@
245     [ssh-add.1 ssh-agent.1 ssh.1]
246     - more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
247     [ssh.1]
248     - more info on proto 2
249     [sshd.8]
250     - sync AUTHOR w/ ssh.1
251     [key.c key.h sshconnect.c]
252     - print key type when talking about host keys
253     [packet.c]
254     - clear padding in ssh2
255     [dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
256     - replace broken uuencode w/ libc b64_ntop
257     [auth2.c]
258     - log failure before sending the reply
259     [key.c radix.c uuencode.c]
260     - remote trailing comments before calling __b64_pton
261     [auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
262     [sshconnect2.c sshd.8]
263     - add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
264  - Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
265
266 20000502
267  - OpenBSD CVS update
268    [channels.c]
269    - init all fds, close all fds.
270    [sshconnect2.c]
271    - check whether file exists before asking for passphrase
272    [servconf.c servconf.h sshd.8 sshd.c]
273    - PidFile, pr 1210
274    [channels.c]
275    - EINTR
276    [channels.c]
277    - unbreak, ok niels@
278    [sshd.c]
279    - unlink pid file, ok niels@
280    [auth2.c]
281    - Add missing #ifdefs; ok - markus
282  - Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy 
283    gathering commands from a text file
284  - Release 2.0.0beta1
285
286 20000501
287  - OpenBSD CVS update
288    [packet.c]
289    - send debug messages in SSH2 format
290    [scp.c]
291    - fix very rare EAGAIN/EINTR issues; based on work by djm
292    [packet.c]
293    - less debug, rm unused
294    [auth2.c]
295    - disable kerb,s/key in ssh2
296    [sshd.8]
297    - Minor tweaks and typo fixes.
298    [ssh-keygen.c]
299    - Put -d into usage and reorder. markus ok.
300  - Include missing headers for OpenSSL tests. Fix from Phil Karn 
301    <karn@ka9q.ampr.org>
302  - Fixed __progname symbol collisions reported by Andre Lucas 
303    <andre.lucas@dial.pipex.com>
304  - Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
305    <gd@hilb1.medat.de>
306  - Add some missing ifdefs to auth2.c
307  - Deprecate perl-tk askpass.
308  - Irix portability fixes - don't include netinet headers more than once
309  - Make sure we don't save PRNG seed more than once
310
311 20000430
312  - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
313  - Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
314    patch.
315    - Adds timeout to entropy collection
316    - Disables slow entropy sources
317    - Load and save seed file
318  - Changed entropy seed code to user per-user seeds only (server seed is 
319    saved in root's .ssh directory)
320  - Use atexit() and fatal cleanups to save seed on exit
321  - More OpenBSD updates:
322    [session.c]
323    - don't call chan_write_failed() if we are not writing
324    [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
325    - keysize warnings error() -> log()
326
327 20000429
328  - Merge big update to OpenSSH-2.0 from OpenBSD CVS
329    [README.openssh2]
330    - interop w/ F-secure windows client
331    - sync documentation
332    - ssh_host_dsa_key not ssh_dsa_key
333    [auth-rsa.c]
334    - missing fclose
335    [auth.c authfile.c compat.c dsa.c dsa.h hostfile.c key.c key.h radix.c]
336    [readconf.c readconf.h ssh-add.c ssh-keygen.c ssh.c ssh.h sshconnect.c]
337    [sshd.c uuencode.c uuencode.h authfile.h]
338    - add DSA pubkey auth and other SSH2 fixes.  use ssh-keygen -[xX]
339      for trading keys with the real and the original SSH, directly from the
340      people who invented the SSH protocol.
341    [auth.c auth.h authfile.c sshconnect.c auth1.c auth2.c sshconnect.h]
342    [sshconnect1.c sshconnect2.c]
343    - split auth/sshconnect in one file per protocol version
344    [sshconnect2.c]
345    - remove debug
346    [uuencode.c]
347    - add trailing =
348    [version.h]
349    - OpenSSH-2.0
350    [ssh-keygen.1 ssh-keygen.c]
351    - add -R flag: exit code indicates if RSA is alive
352    [sshd.c]
353    - remove unused
354      silent if -Q is specified
355    [ssh.h]
356    - host key becomes /etc/ssh_host_dsa_key
357    [readconf.c servconf.c ]
358    - ssh/sshd default to proto 1 and 2
359    [uuencode.c]
360    - remove debug
361    [auth2.c ssh-keygen.c sshconnect2.c sshd.c]
362    - xfree DSA blobs
363    [auth2.c serverloop.c session.c]
364    - cleanup logging for sshd/2, respect PasswordAuth no
365    [sshconnect2.c]
366    - less debug, respect .ssh/config
367    [README.openssh2 channels.c channels.h]
368    - clientloop.c session.c ssh.c 
369    - support for x11-fwding, client+server
370
371 20000421
372  - Merge fix from OpenBSD CVS
373   [ssh-agent.c]
374   - Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>
375     via Debian bug #59926
376  - Define __progname in session.c if libc doesn't
377  - Remove indentation on autoconf #include statements to avoid bug in
378    DEC Tru64 compiler. Report and fix from David Del Piero 
379    <David.DelPiero@qed.qld.gov.au>
380
381 20000420
382  - Make fixpaths work with perl4, patch from Andre Lucas 
383    <andre.lucas@dial.pipex.com>
384  - Sync with OpenBSD CVS:
385   [clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
386   - pid_t
387   [session.c]
388   - remove bogus chan_read_failed. this could cause data
389     corruption (missing data) at end of a SSH2 session.
390  - Merge fixes from Debian patch from Phil Hands <phil@hands.com>
391   - Allow setting of PAM service name through CFLAGS (SSHD_PAM_SERVICE)
392   - Use vhangup to clean up Linux ttys
393   - Force posix getopt processing on GNU libc systems
394  - Debian bug #55910 - remove references to ssl(8) manpages
395  - Debian bug #58031 - ssh_config lies about default cipher
396
397 20000419
398  - OpenBSD CVS updates
399    [channels.c]
400    - fix pr 1196, listen_port and port_to_connect interchanged
401    [scp.c]
402    - after completion, replace the progress bar ETA counter with a final 
403      elapsed time; my idea, aaron wrote the patch
404    [ssh_config sshd_config]
405    - show 'Protocol' as an example, ok markus@
406    [sshd.c]
407    - missing xfree()
408  - Add missing header to bsd-misc.c
409
410 20000416
411  - Reduce diff against OpenBSD source
412    - All OpenSSL includes are now unconditionally referenced as 
413      openssl/foo.h
414    - Pick up formatting changes
415    - Other minor changed (typecasts, etc) that I missed
416
417 20000415
418  - OpenBSD CVS updates.
419    [ssh.1 ssh.c]
420    - ssh -2
421    [auth.c channels.c clientloop.c packet.c packet.h serverloop.c]
422    [session.c sshconnect.c]
423    - check payload for (illegal) extra data
424    [ALL]
425    whitespace cleanup
426
427 20000413
428  - INSTALL doc updates
429  - Merged OpenBSD updates to include paths.
430  
431 20000412
432  - OpenBSD CVS updates:
433    - [channels.c]
434      repair x11-fwd
435    - [sshconnect.c]
436      fix passwd prompt for ssh2, less debugging output.
437    - [clientloop.c compat.c dsa.c kex.c sshd.c]
438      less debugging output
439    - [kex.c kex.h sshconnect.c sshd.c]
440      check for reasonable public DH values
441    - [README.openssh2 cipher.c cipher.h compat.c compat.h readconf.c]
442      [readconf.h servconf.c servconf.h ssh.c ssh.h sshconnect.c sshd.c]
443      add Cipher and Protocol options to ssh/sshd, e.g.:
444      ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers
445      arcfour,3des-cbc'
446    - [sshd.c]
447      print 1.99 only if server supports both
448
449 20000408
450  - Avoid some compiler warnings in fake-get*.c
451  - Add IPTOS macros for systems which lack them
452  - Only set define entropy collection macros if they are found
453  - More large OpenBSD CVS updates:
454    - [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
455      [session.h ssh.h sshd.c README.openssh2]
456      ssh2 server side, see README.openssh2; enable with 'sshd -2'
457    - [channels.c]
458      no adjust after close
459    - [sshd.c compat.c ]
460      interop w/ latest ssh.com windows client.
461   
462 20000406
463  - OpenBSD CVS update:
464    - [channels.c]
465      close efd on eof
466    - [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
467      ssh2 client implementation, interops w/ ssh.com and lsh servers.
468    - [sshconnect.c]
469      missing free.
470    - [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
471      remove unused argument, split cipher_mask()
472    - [clientloop.c]
473      re-order: group ssh1 vs. ssh2
474  - Make Redhat spec require openssl >= 0.9.5a
475
476 20000404
477  - Add tests for RAND_add function when searching for OpenSSL
478  - OpenBSD CVS update:
479    - [packet.h packet.c]
480      ssh2 packet format
481    - [packet.h packet.c nchan2.ms nchan.h compat.h compat.c]
482      [channels.h channels.c]
483      channel layer support for ssh2
484    - [kex.h kex.c hmac.h hmac.c dsa.c dsa.h]
485      DSA, keyexchange, algorithm agreement for ssh2
486  - Generate manpages before make install not at the end of make all
487  - Don't seed the rng quite so often
488  - Always reseed rng when requested
489
490 20000403
491  - Wrote entropy collection routines for systems that lack /dev/random
492    and EGD
493  - Disable tests and typedefs for 64 bit types. They are currently unused.
494
495 20000401
496  - Big OpenBSD CVS update (mainly beginnings of SSH2 infrastructure)
497    - [auth.c session.c sshd.c auth.h]
498      split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
499    - [bufaux.c bufaux.h]
500      support ssh2 bignums
501    - [channels.c channels.h clientloop.c sshd.c nchan.c nchan.h packet.c]
502      [readconf.c ssh.c ssh.h serverloop.c]
503      replace big switch() with function tables (prepare for ssh2)
504    - [ssh2.h]
505      ssh2 message type codes
506    - [sshd.8]
507      reorder Xr to avoid cutting
508    - [serverloop.c]
509      close(fdin) if fdin != fdout, shutdown otherwise, ok theo@
510    - [channels.c]
511      missing close
512      allow bigger packets
513    - [cipher.c cipher.h]
514      support ssh2 ciphers
515    - [compress.c]
516      cleanup, less code
517    - [dispatch.c dispatch.h]
518      function tables for different message types
519    - [log-server.c]
520      do not log() if debuggin to stderr
521      rename a cpp symbol, to avoid param.h collision
522    - [mpaux.c]
523      KNF
524    - [nchan.c]
525      sync w/ channels.c
526
527 20000326
528  - Better tests for OpenSSL w/ RSAref
529  - Added replacement setenv() function from OpenBSD libc. Suggested by 
530    Ben Lindstrom <mouring@pconline.com>
531  - OpenBSD CVS update
532    - [auth-krb4.c]
533      -Wall
534    - [auth-rh-rsa.c auth-rsa.c hostfile.c hostfile.h key.c key.h match.c]
535      [match.h ssh.c ssh.h sshconnect.c sshd.c]
536      initial support for DSA keys. ok deraadt@, niels@
537    - [cipher.c cipher.h]
538      remove unused cipher_attack_detected code
539    - [scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
540      Fix some formatting problems I missed before.
541    - [ssh.1 sshd.8]
542      fix spelling errors, From: FreeBSD
543    - [ssh.c]
544      switch to raw mode only if he _get_ a pty (not if we _want_ a pty).
545
546 20000324
547  - Released 1.2.3
548
549 20000317
550  - Clarified --with-default-path option.
551  - Added -blibpath handling for AIX to work around stupid runtime linking.
552    Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
553    <jmknoble@pobox.com>
554  - Checks for 64 bit int types. Problem report from Mats Fredholm
555    <matsf@init.se>
556  - OpenBSD CVS updates:
557    - [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c] 
558      [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c]
559      [sshd.c]
560      pedantic: signed vs. unsigned, void*-arithm, etc
561    - [ssh.1 sshd.8]
562      Various cleanups and standardizations.
563  - Runtime error fix for HPUX from Otmar Stahl 
564    <O.Stahl@lsw.uni-heidelberg.de>
565
566 20000316
567  - Fixed configure not passing LDFLAGS to Solaris. Report from David G. 
568    Hesprich <dghespri@sprintparanet.com>
569  - Propogate LD through to Makefile
570  - Doc cleanups
571  - Added blurb about "scp: command not found" errors to UPGRADING
572
573 20000315
574  - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list
575    problems with gcc/Solaris.
576  - Don't free argument to putenv() after use (in setenv() replacement). 
577    Report from Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp>
578  - Created contrib/ subdirectory. Included helpers from Phil Hands' 
579    Debian package, README file and chroot patch from Ricardo Cerqueira
580    <rmcc@clix.pt>
581  - Moved gnome-ssh-askpass.c to contrib directory and removed config 
582    option.
583  - Slight cleanup to doc files
584  - Configure fix from Bratislav ILICH <bilic@zepter.ru>
585
586 20000314
587  - Include macro for IN6_IS_ADDR_V4MAPPED. Report from 
588    peter@frontierflying.com
589  - Include /usr/local/include and /usr/local/lib for systems that don't
590    do it themselves
591  - -R/usr/local/lib for Solaris
592  - Fix RSAref detection
593  - Fix IN6_IS_ADDR_V4MAPPED macro
594
595 20000311
596  - Detect RSAref
597  - OpenBSD CVS change
598    [sshd.c]
599     - disallow guessing of root password
600  - More configure fixes
601  - IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
602
603 20000309
604  - OpenBSD CVS updates to v1.2.3
605         [ssh.h atomicio.c]
606          - int atomicio -> ssize_t (for alpha). ok deraadt@
607         [auth-rsa.c]
608          - delay MD5 computation until client sends response, free() early, cleanup.
609         [cipher.c]
610          - void* -> unsigned char*, ok niels@
611         [hostfile.c]
612          - remove unused variable 'len'. fix comments.
613          - remove unused variable
614         [log-client.c log-server.c]
615          - rename a cpp symbol, to avoid param.h collision
616         [packet.c]
617          - missing xfree()
618          - getsockname() requires initialized tolen; andy@guildsoftware.com
619          - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
620         from Holger.Trapp@Informatik.TU-Chemnitz.DE
621         [pty.c pty.h]
622          - register cleanup for pty earlier. move code for pty-owner handling to 
623         pty.c ok provos@, dugsong@
624         [readconf.c]
625          - turn off x11-fwd for the client, too.
626         [rsa.c]
627          - PKCS#1 padding
628         [scp.c]
629          - allow '.' in usernames; from jedgar@fxp.org
630         [servconf.c]
631          - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
632          - sync with sshd_config
633         [ssh-keygen.c]
634          - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
635         [ssh.1]
636          - Change invalid 'CHAT' loglevel to 'VERBOSE'
637         [ssh.c]
638          - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
639          - turn off x11-fwd for the client, too.
640         [sshconnect.c]
641          - missing xfree()
642          - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
643          - read error vs. "Connection closed by remote host"
644         [sshd.8]
645          - ie. -> i.e.,
646          - do not link to a commercial page..
647          - sync with sshd_config
648         [sshd.c]
649          - no need for poll.h; from bright@wintelcom.net
650          - log with level log() not fatal() if peer behaves badly.
651          - don't panic if client behaves strange. ok deraadt@
652          - make no-port-forwarding for RSA keys deny both -L and -R style fwding
653          - delay close() of pty until the pty has been chowned back to root
654          - oops, fix comment, too.
655          - missing xfree()
656          - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
657         (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
658          - register cleanup for pty earlier. move code for pty-owner handling to 
659       pty.c ok provos@, dugsong@
660          - create x11 cookie file
661          - fix pr 1113, fclose() -> pclose(), todo: remote popen()
662          - version 1.2.3
663  - Cleaned up
664  - Removed warning workaround for Linux and devpts filesystems (no longer 
665    required after OpenBSD updates)
666
667 20000308
668  - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
669
670 20000307
671  - Released 1.2.2p1
672
673 20000305
674  - Fix DEC compile fix
675  - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
676  - Check for getpagesize in libucb.a if not found in libc. Fix for old
677    Solaris from Andre Lucas <andre.lucas@dial.pipex.com>
678  - Check for libwrap if --with-tcp-wrappers option specified. Suggestion 
679    Mate Wierdl <mw@moni.msci.memphis.edu>
680
681 20000303
682  - Added "make host-key" target, Suggestion from Dominik Brettnacher
683  <domi@saargate.de>
684  - Don't permanently fail on bind() if getaddrinfo has more choices left for 
685    us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
686    Miskiewicz <misiek@pld.org.pl>
687  - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
688  - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
689
690 20000302
691  - Big cleanup of autoconf code
692    - Rearranged to be a little more logical
693    - Added -R option for Solaris
694    - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program
695      to detect library and header location _and_ ensure library has proper
696      RSA support built in (this is a problem with OpenSSL 0.9.5).
697  - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de
698  - Avoid warning message with Unix98 ptys
699  - Warning was valid - possible race condition on PTYs. Avoided using 
700    platform-specific code.
701  - Document some common problems
702  - Allow root access to any key. Patch from 
703    markus.friedl@informatik.uni-erlangen.de
704
705 20000207
706  - Removed SOCKS code. Will support through a ProxyCommand.
707
708 20000203
709  - Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
710  - Add --with-ssl-dir option
711
712 20000202
713  - Fix lastlog code for directory based lastlogs. Fix from Josh Durham 
714    <jmd@aoe.vt.edu>
715  - Documentation fixes from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
716  - Added URLs to Japanese translations of documents by HARUYAMA Seigo 
717    <haruyama@nt.phys.s.u-tokyo.ac.jp>
718
719 20000201
720  - Use socket pairs by default (instead of pipes). Prevents race condition
721    on several (buggy) OSs. Report and fix from tridge@linuxcare.com
722
723 20000127
724  - Seed OpenSSL's random number generator before generating RSA keypairs
725  - Split random collector into seperate file
726  - Compile fix from Andre Lucas <andre.lucas@dial.pipex.com>
727
728 20000126
729  - Released 1.2.2 stable
730
731  - NeXT keeps it lastlog in /usr/adm. Report from 
732    mouring@newton.pconline.com
733  - Added note in UPGRADING re interop with commercial SSH using idea. 
734    Report from Jim Knoble <jmknoble@pobox.com>
735  - Fix linking order for Kerberos/AFS. Fix from Holget Trapp
736    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
737
738 20000125
739  - Fix NULL pointer dereference in login.c. Fix from Andre Lucas 
740    <andre.lucas@dial.pipex.com>
741  - Reorder PAM initialisation so it does not mess up lastlog. Reported
742    by Andre Lucas <andre.lucas@dial.pipex.com>
743  - Use preformatted manpages on SCO, report from Gary E. Miller 
744    <gem@rellim.com>
745  - New URL for x11-ssh-askpass.
746  - Fixpaths was missing /etc/ssh_known_hosts. Report from Jim Knoble 
747    <jmknoble@pobox.com>
748  - Added 'DESTDIR' option to Makefile to ease package building. Patch from 
749    Jim Knoble <jmknoble@pobox.com>
750  - Updated RPM spec files to use DESTDIR
751
752 20000124
753  - Pick up version 1.2.2 from OpenBSD CVS (no changes, just version number
754    increment)
755
756 20000123
757  - OpenBSD CVS:
758    - [packet.c]
759      getsockname() requires initialized tolen; andy@guildsoftware.com
760  - AIX patch from Matt Richards <v2matt@btv.ibm.com> and David Rankin 
761    <drankin@bohemians.lexington.ky.us>
762  - Fix lastlog support, patch from Andre Lucas <andre.lucas@dial.pipex.com>
763
764 20000122
765  - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
766    <bent@clark.net>
767  - Merge preformatted manpage patch from Andre Lucas
768    <andre.lucas@dial.pipex.com>
769  - Make IPv4 use the default in RPM packages
770  - Irix uses preformatted manpages
771  - Missing htons() in bsd-bindresvport.c, fix from Holger Trapp
772    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
773  - OpenBSD CVS updates:
774    - [packet.c]
775      use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
776      from Holger.Trapp@Informatik.TU-Chemnitz.DE
777    - [sshd.c]
778      log with level log() not fatal() if peer behaves badly.
779    - [readpass.c]
780      instead of blocking SIGINT, catch it ourselves, so that we can clean 
781      the tty modes up and kill ourselves -- instead of our process group 
782      leader (scp, cvs, ...) going away and leaving us in noecho mode.  
783      people with cbreak shells never even noticed..
784    - [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
785      ie. -> i.e.,
786
787 20000120
788  - Don't use getaddrinfo on AIX
789  - Update to latest OpenBSD CVS:
790    - [auth-rsa.c]
791      - fix user/1056, sshd keeps restrictions; dbt@meat.net
792    - [sshconnect.c]
793      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
794      - destroy keys earlier
795      - split key exchange (kex) and user authentication (user-auth), 
796        ok: provos@
797    - [sshd.c]
798      - no need for poll.h; from bright@wintelcom.net
799      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
800      - split key exchange (kex) and user authentication (user-auth), 
801        ok: provos@
802  - Big manpage and config file cleanup from Andre Lucas
803    <andre.lucas@dial.pipex.com>
804    - Re-added latest (unmodified) OpenBSD manpages
805  - Doc updates
806  - NetBSD patch from David Rankin <drankin@bohemians.lexington.ky.us> and
807    Christos Zoulas <christos@netbsd.org>
808
809 20000119
810  - SCO compile fixes from Gary E. Miller <gem@rellim.com>
811  - Compile fix from Darren_Hall@progressive.com
812  - Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
813    addresses using getaddrinfo(). Added a configure switch to make the
814    default lookup mode AF_INET
815
816 20000118
817  - Fixed --with-pid-dir option
818  - Makefile fix from Gary E. Miller <gem@rellim.com>
819  - Compile fix for HPUX and Solaris from Andre Lucas    
820    <andre.lucas@dial.pipex.com>
821
822 20000117
823  - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
824    port, ignore EINVAL errors (Linux) when searching for free port.
825  - Revert __snprintf -> snprintf aliasing. Apparently Solaris 
826    __snprintf isn't. Report from Theo de Raadt <theo@cvs.openbsd.org>
827  - Document location of Redhat PAM file in INSTALL.
828  - Fixed X11 forwarding bug on Linux. libc advertises AF_INET6 
829    INADDR_ANY_INIT addresses via getaddrinfo, but may not be able to 
830    deliver (no IPv6 kernel support)
831  - Released 1.2.1pre27
832
833  - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
834  - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen 
835    <jhuuskon@hytti.uku.fi>
836  - Fix hang on logout if processes are still using the pty. Needs 
837    further testing.
838  - Patch from Christos Zoulas <christos@zoulas.com>
839    - Try $prefix first when looking for OpenSSL.
840    - Include sys/types.h when including sys/socket.h in test programs
841  - Substitute PID directory in sshd.8. Suggestion from Andrew 
842    Stribblehill <a.d.stribblehill@durham.ac.uk>
843
844 20000116
845  - Renamed --with-xauth-path to --with-xauth
846  - Added --with-pid-dir option
847  - Released 1.2.1pre26
848
849  - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
850  - Fixed broken bugfix for /dev/ptmx on Linux systems which lack 
851    openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
852
853 20000115
854  - Add --with-xauth-path configure directive and explicit test for
855    /usr/openwin/bin/xauth for Solaris systems. Report from Anders 
856    Nordby <anders@fix.no>
857  - Fix incorrect detection of /dev/ptmx on Linux systems that lack 
858    openpty. Report from John Seifarth <john@waw.be>
859  - Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
860    sys/types.h. Fixes problems on SCO, report from Gary E. Miller 
861    <gem@rellim.com>
862  - Use __snprintf and __vnsprintf if they are found where snprintf and
863    vnsprintf are lacking. Suggested by Ben Taylor <bent@shell.clark.net>
864    and others.
865
866 20000114
867  - Merged OpenBSD IPv6 patch:
868    - [sshd.c sshd.8 sshconnect.c ssh.h ssh.c servconf.h servconf.c scp.1]
869      [scp.c packet.h packet.c login.c log.c canohost.c channels.c]
870      [hostfile.c sshd_config]
871      ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new
872      features: sshd allows multiple ListenAddress and Port options. note 
873      that libwrap is not IPv6-ready. (based on patches from 
874      fujiwara@rcac.tdi.co.jp)
875    - [ssh.c canohost.c]
876      more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo, 
877      from itojun@
878    - [channels.c]
879      listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)
880    - [packet.h]
881      allow auth-kerberos for IPv4 only
882    - [scp.1 sshd.8 servconf.h scp.c]
883      document -4, -6, and 'ssh -L 2022/::1/22'
884    - [ssh.c]
885      'ssh @host' is illegal (null user name), from 
886      karsten@gedankenpolizei.de
887    - [sshconnect.c]
888      better error message
889    - [sshd.c]
890      allow auth-kerberos for IPv4 only
891  - Big IPv6 merge:
892    - Cleanup overrun in sockaddr copying on RHL 6.1
893    - Replacements for getaddrinfo, getnameinfo, etc based on versions
894      from patch from KIKUCHI Takahiro <kick@kyoto.wide.ad.jp>
895    - Replacement for missing structures on systems that lack IPv6
896    - record_login needed to know about AF_INET6 addresses
897    - Borrowed more code from OpenBSD: rresvport_af and requisites
898
899 20000110
900  - Fixes to auth-skey to enable it to use the standard OpenSSL libraries
901
902 20000107
903  - New config.sub and config.guess to fix problems on SCO. Supplied
904    by Gary E. Miller <gem@rellim.com>
905  - SCO build fix from Gary E. Miller <gem@rellim.com>
906  - Released 1.2.1pre25
907
908 20000106
909  - Documentation update & cleanup
910  - Better KrbIV / AFS detection, based on patch from:
911    Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
912
913 20000105
914  - Fixed annoying DES corruption problem. libcrypt has been 
915    overriding symbols in libcrypto. Removed libcrypt and crypt.h
916    altogether (libcrypto includes its own crypt(1) replacement)
917  - Added platform-specific rules for Irix 6.x. Included warning that
918    they are untested.
919
920 20000103
921  - Add explicit make rules for files proccessed by fixpaths.
922  - Fix "make install" in RPM spec files. Report from Tenkou N. Hattori  
923    <tnh@kondara.org>
924  - Removed "nullok" directive from default PAM configuration files. 
925    Added information on enabling EmptyPasswords on openssh+PAM in 
926    UPGRADING file.
927  - OpenBSD CVS updates
928    - [ssh-agent.c]
929      cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and 
930      dgaudet@arctic.org
931    - [sshconnect.c]
932      compare correct version for 1.3 compat mode
933
934 20000102
935  - Prevent multiple inclusion of config.h and defines.h. Suggested
936    by Andre Lucas <andre.lucas@dial.pipex.com>
937  - Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
938    <dgaudet@arctic.org>
939
940 19991231
941  - Fix password support on systems with a mixture of shadowed and 
942    non-shadowed passwords (e.g. NIS). Report and fix from 
943    HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
944  - Fix broken autoconf typedef detection. Report from Marc G. 
945    Fournier <marc.fournier@acadiau.ca>
946  - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
947    <Franz.Sirl-kernel@lauterbach.com>
948  - Prevent typedefs from being compiled more than once. Report from 
949    Marc G. Fournier <marc.fournier@acadiau.ca>
950  - Fill in ut_utaddr utmp field. Report from Benjamin Charron
951    <iretd@bigfoot.com>
952  - Really fix broken default path. Fix from Jim Knoble 
953    <jmknoble@pobox.com>
954  - Remove test for quad_t. No longer needed.
955  - Released 1.2.1pre24
956
957  - Added support for directory-based lastlogs
958  - Really fix typedefs, patch from Ben Taylor <bent@clark.net>
959
960 19991230
961  - OpenBSD CVS updates:
962    - [auth-passwd.c]
963      check for NULL 1st
964  - Removed most of the pam code into its own file auth-pam.[ch]. This 
965    cleaned up sshd.c up significantly.
966  - PAM authentication was incorrectly interpreting 
967    "PermitRootLogin without-password". Report from Matthias Andree
968    <ma@dt.e-technik.uni-dortmund.de
969  - Several other cleanups
970  - Merged Dante SOCKS support patch from David Rankin
971   <drankin@bohemians.lexington.ky.us>
972  - Updated documentation with ./configure options
973  - Released 1.2.1pre23
974
975 19991229
976  - Applied another NetBSD portability patch from David Rankin 
977    <drankin@bohemians.lexington.ky.us>
978  - Fix --with-default-path option.
979  - Autodetect perl, patch from David Rankin 
980    <drankin@bohemians.lexington.ky.us>
981  - Print whether OpenSSH was compiled with RSARef, patch from 
982    Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
983  - Calls to pam_setcred, patch from Nalin Dahyabhai 
984    <nalin@thermo.stat.ncsu.edu>
985  - Detect missing size_t and typedef it.
986  - Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
987  - Minor Makefile cleaning
988
989 19991228
990  - Replacement for getpagesize() for systems which lack it
991  - NetBSD login.c compile fix from David Rankin 
992   <drankin@bohemians.lexington.ky.us>
993  - Fully set ut_tv if present in utmp or utmpx
994  - Portability fixes for Irix 5.3 (now compiles OK!)
995  - autoconf and other misc cleanups
996  - Merged AIX patch from Darren Hall <dhall@virage.org>
997  - Cleaned up defines.h
998  - Released 1.2.1pre22
999
1000 19991227
1001  - Automatically correct paths in manpages and configuration files. Patch
1002    and script from Andre Lucas <andre.lucas@dial.pipex.com>
1003  - Removed credits from README to CREDITS file, updated.
1004  - Added --with-default-path to specify custom path for server
1005  - Removed #ifdef trickery from acconfig.h into defines.h
1006  - PAM bugfix. PermitEmptyPassword was being ignored.
1007  - Fixed PAM config files to allow empty passwords if server does.
1008  - Explained spurious PAM auth warning workaround in UPGRADING
1009  - Use last few chars of tty line as ut_id
1010  - New SuSE RPM spec file from Chris Saia <csaia@wtower.com>
1011  - OpenBSD CVS updates:
1012    - [packet.h auth-rhosts.c]
1013      check format string for packet_disconnect and packet_send_debug, too
1014    - [channels.c]
1015      use packet_get_maxsize for channels. consistence.
1016
1017 19991226
1018  - Enabled utmpx support by default for Solaris
1019  - Cleanup sshd.c PAM a little more
1020  - Revised RPM package to include Jim Knoble's <jmknoble@pobox.com>
1021    X11 ssh-askpass program.
1022  - Disable logging of PAM success and failures, PAM is verbose enough.
1023    Unfortunatly there is currently no way to disable auth failure 
1024    messages. Mention this in UPGRADING file and sent message to PAM 
1025    developers
1026  - OpenBSD CVS update:
1027    - [ssh-keygen.1 ssh.1]
1028      remove ref to .ssh/random_seed, mention .ssh/environment in 
1029      .Sh FILES, too
1030  - Released 1.2.1pre21
1031  - Fixed implicit '.' in default path, report from Jim Knoble 
1032    <jmknoble@pobox.com>
1033  - Redhat RPM spec fixes from Jim Knoble <jmknoble@pobox.com>
1034
1035 19991225
1036  - More fixes from Andre Lucas <andre.lucas@dial.pipex.com>
1037  - Cleanup of auth-passwd.c for shadow and MD5 passwords
1038  - Cleanup and bugfix of PAM authentication code
1039  - Released 1.2.1pre20
1040
1041  - Merged fixes from Ben Taylor <bent@clark.net>
1042  - Fixed configure support for PAM. Reported by Naz <96na@eng.cam.ac.uk>
1043  - Disabled logging of PAM password authentication failures when password
1044    is empty. (e.g start of authentication loop). Reported by Naz
1045    <96na@eng.cam.ac.uk>)
1046
1047 19991223
1048  - Merged later HPUX patch from Andre Lucas 
1049    <andre.lucas@dial.pipex.com>
1050  - Above patch included better utmpx support from Ben Taylor
1051    <bent@clark.net>
1052
1053 19991222
1054  - Fix undefined fd_set type in ssh.h from Povl H. Pedersen 
1055    <pope@netguide.dk>
1056  - Fix login.c breakage on systems which lack ut_host in struct
1057    utmp. Reported by Willard Dawson <willard.dawson@sbs.siemens.com>
1058
1059 19991221
1060  - Integration of large HPUX patch from Andre Lucas 
1061    <andre.lucas@dial.pipex.com>. Integrating it had a few other 
1062    benefits:
1063    - Ability to disable shadow passwords at configure time
1064    - Ability to disable lastlog support at configure time
1065    - Support for IP address in $DISPLAY
1066  - OpenBSD CVS update:
1067    - [sshconnect.c]
1068    say "REMOTE HOST IDENTIFICATION HAS CHANGED"
1069  - Fix DISABLE_SHADOW support
1070  - Allow MD5 passwords even if shadow passwords are disabled
1071  - Release 1.2.1pre19
1072
1073 19991218
1074  - Redhat init script patch from Chun-Chung Chen 
1075    <cjj@u.washington.edu>
1076  - Avoid breakage on systems without IPv6 headers
1077
1078 19991216
1079  - Makefile changes for Solaris from Peter Kocks 
1080    <peter.kocks@baygate.com>
1081  - Minor updates to docs
1082  - Merged OpenBSD CVS changes:
1083    - [authfd.c ssh-agent.c]
1084      keysize warnings talk about identity files
1085    - [packet.c]
1086      "Connection closed by x.x.x.x": fatal() -> log()
1087  - Correctly handle empty passwords in shadow file. Patch from: 
1088    "Chris, the Young One" <cky@pobox.com>
1089  - Released 1.2.1pre18
1090
1091 19991215
1092  - Integrated patchs from Juergen Keil <jk@tools.de>
1093    - Avoid void* pointer arithmatic
1094    - Use LDFLAGS correctly
1095    - Fix SIGIO error in scp
1096    - Simplify status line printing in scp
1097  - Added better test for inline functions compiler support from  
1098    Darren_Hall@progressive.com
1099
1100 19991214
1101  - OpenBSD CVS Changes
1102    - [canohost.c]
1103      fix get_remote_port() and friends for sshd -i; 
1104      Holger.Trapp@Informatik.TU-Chemnitz.DE
1105    - [mpaux.c]
1106      make code simpler. no need for memcpy. niels@ ok
1107    - [pty.c]
1108      namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
1109      fix proto; markus
1110    - [ssh.1]
1111       typo; mark.baushke@solipsa.com
1112    - [channels.c ssh.c ssh.h sshd.c]
1113      type conflict for 'extern Type *options' in channels.c; dot@dotat.at
1114    - [sshconnect.c]
1115      move checking of hostkey into own function.
1116    - [version.h]
1117      OpenSSH-1.2.1
1118  - Clean up broken includes in pty.c
1119  - Some older systems don't have poll.h, they use sys/poll.h instead
1120  - Doc updates
1121
1122 19991211
1123  - Fix compilation on systems with AFS. Reported by 
1124    aloomis@glue.umd.edu
1125  - Fix installation on Solaris. Reported by 
1126    Gordon Rowell <gordonr@gormand.com.au>
1127  - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
1128    patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
1129  - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
1130  - Compile fix from David Agraz <dagraz@jahoopa.com>
1131  - Avoid compiler warning in bsd-snprintf.c
1132  - Added pam_limits.so to default PAM config. Suggested by 
1133    Jim Knoble <jmknoble@pobox.com>
1134
1135 19991209
1136  - Import of patch from Ben Taylor <bent@clark.net>:
1137    - Improved PAM support
1138    - "uninstall" rule for Makefile
1139    - utmpx support
1140    - Should fix PAM problems on Solaris
1141  - OpenBSD CVS updates:
1142    - [readpass.c]
1143      avoid stdio; based on work by markus, millert, and I
1144    - [sshd.c]
1145      make sure the client selects a supported cipher
1146    - [sshd.c]
1147      fix sighup handling.  accept would just restart and daemon handled 
1148      sighup only after the next connection was accepted. use poll on 
1149      listen sock now.
1150    - [sshd.c]
1151      make that a fatal
1152  - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
1153    to fix libwrap support on NetBSD
1154  - Released 1.2pre17
1155
1156 19991208
1157  - Compile fix for Solaris with /dev/ptmx from 
1158    David Agraz <dagraz@jahoopa.com>
1159
1160 19991207
1161  - sshd Redhat init script patch from Jim Knoble <jmknoble@pobox.com>
1162    fixes compatability with 4.x and 5.x
1163  - Fixed default SSH_ASKPASS
1164  - Fix PAM account and session being called multiple times. Problem 
1165    reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
1166  - Merged more OpenBSD changes:
1167    - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
1168      move atomicio into it's own file.  wrap all socket write()s which 
1169      were doing write(sock, buf, len) != len, with atomicio() calls.
1170    - [auth-skey.c]
1171      fd leak
1172    - [authfile.c]
1173      properly name fd variable
1174    - [channels.c]
1175      display great hatred towards strcpy
1176    - [pty.c pty.h sshd.c]
1177      use openpty() if it exists (it does on BSD4_4)
1178    - [tildexpand.c]
1179      check for ~ expansion past MAXPATHLEN
1180  - Modified helper.c to use new atomicio function.
1181  - Reformat Makefile a little
1182  - Moved RC4 routines from rc4.[ch] into helper.c
1183  - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
1184  - Updated SuSE spec from Chris Saia <csaia@wtower.com>
1185  - Tweaked Redhat spec
1186  - Clean up bad imports of a few files (forgot -kb)
1187  - Released 1.2pre16
1188
1189 19991204
1190  - Small cleanup of PAM code in sshd.c
1191  - Merged OpenBSD CVS changes:
1192    - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
1193      move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
1194    - [auth-rsa.c]
1195      warn only about mismatch if key is _used_
1196      warn about keysize-mismatch with log() not error()
1197      channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
1198      ports are u_short
1199    - [hostfile.c]
1200      indent, shorter warning
1201    - [nchan.c]
1202      use error() for internal errors
1203    - [packet.c]
1204      set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
1205      serverloop.c
1206      indent
1207    - [ssh-add.1 ssh-add.c ssh.h]
1208      document $SSH_ASKPASS, reasonable default
1209    - [ssh.1]
1210      CheckHostIP is not available for connects via proxy command
1211    - [sshconnect.c]
1212      typo
1213      easier to read client code for passwd and skey auth
1214      turn of checkhostip for proxy connects, since we don't know the remote ip
1215
1216 19991126
1217  - Add definition for __P()
1218  - Added [v]snprintf() replacement for systems that lack it
1219
1220 19991125
1221  - More reformatting merged from OpenBSD CVS
1222  - Merged OpenBSD CVS changes:
1223    - [channels.c]
1224      fix packet_integrity_check() for !have_hostname_in_open.
1225      report from mrwizard@psu.edu via djm@ibs.com.au
1226    - [channels.c]
1227      set SO_REUSEADDR and SO_LINGER for forwarded ports.
1228      chip@valinux.com via damien@ibs.com.au
1229    - [nchan.c]
1230      it's not an error() if shutdown_write failes in nchan.
1231    - [readconf.c]
1232      remove dead #ifdef-0-code
1233    - [readconf.c servconf.c]
1234      strcasecmp instead of tolower
1235    - [scp.c]
1236      progress meter overflow fix from damien@ibs.com.au
1237    - [ssh-add.1 ssh-add.c]
1238      SSH_ASKPASS support
1239    - [ssh.1 ssh.c]
1240      postpone fork_after_authentication until command execution,
1241      request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
1242      plus: use daemon() for backgrounding
1243  - Added BSD compatible install program and autoconf test, thanks to
1244    Niels Kristian Bech Jensen <nkbj@image.dk>
1245  - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
1246  - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
1247  - Release 1.2pre15
1248
1249 19991124
1250  - Merged very large OpenBSD source code reformat
1251  - OpenBSD CVS updates
1252    - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
1253      [ssh.h sshd.8 sshd.c]
1254      syslog changes:
1255      * Unified Logmessage for all auth-types, for success and for failed
1256      * Standard connections get only ONE line in the LOG when level==LOG:
1257        Auth-attempts are logged only, if authentication is:
1258           a) successfull or
1259           b) with passwd or
1260           c) we had more than AUTH_FAIL_LOG failues
1261      * many log() became verbose()
1262      * old behaviour with level=VERBOSE
1263    - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
1264      tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
1265      messages. allows use of s/key in windows (ttssh, securecrt) and
1266      ssh-1.2.27 clients without 'ssh -v', ok: niels@
1267    - [sshd.8]
1268      -V, for fallback to openssh in SSH2 compatibility mode
1269    - [sshd.c]
1270      fix sigchld race; cjc5@po.cwru.edu
1271
1272 19991123
1273  - Added SuSE package files from Chris Saia <csaia@wtower.com>
1274  - Restructured package-related files under packages/*
1275  - Added generic PAM config
1276  - Numerous little Solaris fixes
1277  - Add recommendation to use GNU make to INSTALL document
1278
1279 19991122
1280  - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
1281  - OpenBSD CVS Changes
1282    - [ssh-keygen.c] 
1283      don't create ~/.ssh only if the user wants to store the private 
1284      key there. show fingerprint instead of public-key after 
1285      keygeneration. ok niels@
1286  - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
1287  - Added timersub() macro
1288  - Tidy RCSIDs of bsd-*.c
1289  - Added autoconf test and macro to deal with old PAM libraries 
1290    pam_strerror definition (one arg vs two).
1291  - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
1292  - Retry /dev/urandom reads interrupted by signal (report from 
1293    Robert Hardy <rhardy@webcon.net>)
1294  - Added a setenv replacement for systems which lack it
1295  - Only display public key comment when presenting ssh-askpass dialog
1296  - Released 1.2pre14
1297
1298  - Configure, Make and changelog corrections from Tudor Bosman 
1299    <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
1300
1301 19991121
1302  - OpenBSD CVS Changes:
1303    - [channels.c]
1304      make this compile, bad markus
1305    - [log.c readconf.c servconf.c ssh.h]
1306      bugfix: loglevels are per host in clientconfig,
1307      factor out common log-level parsing code.
1308    - [servconf.c]
1309      remove unused index (-Wall)
1310    - [ssh-agent.c]
1311      only one 'extern char *__progname'
1312    - [sshd.8]
1313      document SIGHUP, -Q to synopsis
1314    - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
1315      [channels.c clientloop.c]
1316      SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
1317      [hope this time my ISP stays alive during commit]
1318    - [OVERVIEW README] typos; green@freebsd
1319    - [ssh-keygen.c]
1320      replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
1321      exit if writing the key fails (no infinit loop)
1322      print usage() everytime we get bad options
1323    - [ssh-keygen.c] overflow, djm@mindrot.org
1324    - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
1325      
1326 19991120
1327  - Merged more Solaris support from Marc G. Fournier 
1328    <marc.fournier@acadiau.ca>
1329  - Wrote autoconf tests for integer bit-types
1330  - Fixed enabling kerberos support
1331  - Fix segfault in ssh-keygen caused by buffer overrun in filename 
1332    handling.
1333
1334 19991119
1335  - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
1336  - Merged OpenBSD CVS changes
1337    - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
1338      more %d vs. %s in fmt-strings
1339    - [authfd.c]
1340      Integers should not be printed with %s
1341  - EGD uses a socket, not a named pipe. Duh.
1342  - Fix includes in fingerprint.c
1343  - Fix scp progress bar bug again.
1344  - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of 
1345    David Rankin <drankin@bohemians.lexington.ky.us>
1346  - Added autoconf option to enable Kerberos 4 support (untested)
1347  - Added autoconf option to enable AFS support (untested)
1348  - Added autoconf option to enable S/Key support (untested)
1349  - Added autoconf option to enable TCP wrappers support (compiles OK)
1350  - Renamed BSD helper function files to bsd-*
1351  - Added tests for login and daemon and enable OpenBSD replacements for 
1352    when they are absent.
1353  - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
1354
1355 19991118
1356  - Merged OpenBSD CVS changes
1357    - [scp.c] foregroundproc() in scp
1358    - [sshconnect.h] include fingerprint.h
1359    - [sshd.c] bugfix: the log() for passwd-auth escaped during logging 
1360      changes.
1361    - [ssh.1] Spell my name right.
1362  - Added openssh.com info to README
1363
1364 19991117
1365  - Merged OpenBSD CVS changes
1366    - [ChangeLog.Ylonen] noone needs this anymore
1367    - [authfd.c] close-on-exec for auth-socket, ok deraadt
1368    - [hostfile.c] 
1369      in known_hosts key lookup the entry for the bits does not need 
1370      to match, all the information is contained in n and e. This 
1371      solves the problem with buggy servers announcing the wrong 
1372      modulus length.  markus and me.
1373    - [serverloop.c] 
1374      bugfix: check for space if child has terminated, from: 
1375      iedowse@maths.tcd.ie
1376    - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
1377      [fingerprint.c fingerprint.h]
1378      rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
1379    - [ssh-agent.1] typo
1380    - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
1381    - [sshd.c] 
1382      force logging to stderr while loading private key file
1383      (lost while converting to new log-levels)
1384
1385 19991116
1386  - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
1387  - Merged OpenBSD CVS changes:
1388    - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
1389      [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
1390      the keysize of rsa-parameter 'n' is passed implizit,
1391      a few more checks and warnings about 'pretended' keysizes.
1392    - [cipher.c cipher.h packet.c packet.h sshd.c]
1393      remove support for cipher RC4
1394    - [ssh.c]
1395      a note for legay systems about secuity issues with permanently_set_uid(),
1396      the private hostkey and ptrace()
1397    - [sshconnect.c]
1398      more detailed messages about adding and checking hostkeys
1399
1400 19991115
1401  - Merged OpenBSD CVS changes:
1402    - [ssh-add.c] change passphrase loop logic and remove ref to 
1403      $DISPLAY, ok niels
1404  - Changed to ssh-add.c broke askpass support. Revised it to be a little more
1405    modular. 
1406  - Revised autoconf support for enabling/disabling askpass support.
1407  - Merged more OpenBSD CVS changes:
1408         [auth-krb4.c]
1409           - disconnect if getpeername() fails
1410           - missing xfree(*client)
1411         [canohost.c]
1412           - disconnect if getpeername() fails
1413           - fix comment: we _do_ disconnect if ip-options are set
1414         [sshd.c]
1415           - disconnect if getpeername() fails
1416           - move checking of remote port to central place
1417         [auth-rhosts.c] move checking of remote port to central place
1418         [log-server.c] avoid extra fd per sshd, from millert@
1419         [readconf.c] print _all_ bad config-options in ssh(1), too
1420         [readconf.h] print _all_ bad config-options in ssh(1), too
1421         [ssh.c] print _all_ bad config-options in ssh(1), too
1422         [sshconnect.c] disconnect if getpeername() fails
1423  - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
1424  - Various small cleanups to bring diff (against OpenBSD) size down.
1425  - Merged more Solaris compability from Marc G. Fournier
1426    <marc.fournier@acadiau.ca>
1427  - Wrote autoconf tests for __progname symbol
1428  - RPM spec file fixes from Jim Knoble <jmknoble@pobox.com>
1429  - Released 1.2pre12
1430
1431  - Another OpenBSD CVS update:
1432    - [ssh-keygen.1] fix .Xr
1433
1434 19991114
1435  - Solaris compilation fixes (still imcomplete)
1436
1437 19991113
1438  - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
1439    - Don't install config files if they already exist
1440    - Fix inclusion of additional preprocessor directives from acconfig.h
1441  - Removed redundant inclusions of config.h
1442  - Added 'Obsoletes' lines to RPM spec file
1443  - Merged OpenBSD CVS changes:
1444    - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
1445    - [scp.c] fix overflow reported by damien@ibs.com.au: off_t 
1446      totalsize, ok niels,aaron
1447  - Delay fork (-f option) in ssh until after port forwarded connections 
1448    have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
1449  - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
1450  - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
1451  - Tidied default config file some more
1452  - Revised Redhat initscript to fix bug: sshd (re)start would fail
1453    if executed from inside a ssh login.
1454
1455 19991112
1456  - Merged changes from OpenBSD CVS
1457    - [sshd.c] session_key_int may be zero
1458    - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
1459      IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok 
1460      deraadt,millert
1461  - Brought default sshd_config more in line with OpenBSD's
1462  - Grab server in gnome-ssh-askpass (Debian bug #49872)
1463  - Released 1.2pre10
1464
1465  - Added INSTALL documentation
1466  - Merged yet more changes from OpenBSD CVS
1467    - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
1468      [ssh.c ssh.h sshconnect.c sshd.c]
1469      make all access to options via 'extern Options options'
1470      and 'extern ServerOptions options' respectively;
1471      options are no longer passed as arguments:
1472       * make options handling more consistent
1473       * remove #include "readconf.h" from ssh.h
1474       * readconf.h is only included if necessary
1475    - [mpaux.c] clear temp buffer
1476    - [servconf.c] print _all_ bad options found in configfile
1477  - Make ssh-askpass support optional through autoconf
1478  - Fix nasty division-by-zero error in scp.c
1479  - Released 1.2pre11
1480
1481 19991111
1482  - Added (untested) Entropy Gathering Daemon (EGD) support
1483  - Fixed /dev/urandom fd leak (Debian bug #49722)
1484  - Merged OpenBSD CVS changes:
1485    - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
1486    - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
1487    - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
1488  - Fix integer overflow which was messing up scp's progress bar for large 
1489    file transfers. Fix submitted to OpenBSD developers. Report and fix
1490    from Kees Cook <cook@cpoint.net>
1491  - Merged more OpenBSD CVS changes:
1492    - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal() 
1493      + krb-cleanup cleanup
1494    - [clientloop.c log-client.c log-server.c ]
1495      [readconf.c readconf.h servconf.c servconf.h ]
1496      [ssh.1 ssh.c ssh.h sshd.8]
1497      add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
1498      obsoletes QuietMode and FascistLogging in sshd.
1499    - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
1500      allow session_key_int != sizeof(session_key)
1501      [this should fix the pre-assert-removal-core-files]
1502  - Updated default config file to use new LogLevel option and to improve
1503    readability
1504
1505 19991110
1506  - Merged several minor fixes:
1507    - ssh-agent commandline parsing
1508    - RPM spec file now installs ssh setuid root
1509    - Makefile creates libdir
1510    - Merged beginnings of Solaris compability from Marc G. Fournier
1511      <marc.fournier@acadiau.ca>
1512
1513 19991109
1514  - Autodetection of SSL/Crypto library location via autoconf
1515  - Fixed location of ssh-askpass to follow autoconf
1516  - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
1517  - Autodetection of RSAref library for US users
1518  - Minor doc updates
1519  - Merged OpenBSD CVS changes:
1520    - [rsa.c] bugfix: use correct size for memset()
1521    - [sshconnect.c] warn if announced size of modulus 'n' != real size
1522  - Added GNOME passphrase requestor (use --with-gnome-askpass)
1523  - RPM build now creates subpackages
1524  - Released 1.2pre9
1525
1526 19991108
1527  - Removed debian/ directory. This is now being maintained separately.
1528  - Added symlinks for slogin in RPM spec file
1529  - Fixed permissions on manpages in RPM spec file
1530  - Added references to required libraries in README file
1531  - Removed config.h.in from CVS
1532  - Removed pwdb support (better pluggable auth is provided by glibc)
1533  - Made PAM and requisite libdl optional
1534  - Removed lots of unnecessary checks from autoconf
1535  - Added support and autoconf test for openpty() function (Unix98 pty support)
1536  - Fix for scp not finding ssh if not installed as /usr/bin/ssh
1537  - Added TODO file
1538  - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
1539    - Added ssh-askpass program
1540    - Added ssh-askpass support to ssh-add.c
1541    - Create symlinks for slogin on install
1542    - Fix "distclean" target in makefile
1543    - Added example for ssh-agent to manpage
1544    - Added support for PAM_TEXT_INFO messages
1545    - Disable internal /etc/nologin support if PAM enabled
1546  - Merged latest OpenBSD CVS changes:
1547    - [all] replace assert() with error, fatal or packet_disconnect
1548    - [sshd.c] don't send fail-msg but disconnect if too many authentication
1549      failures
1550    - [sshd.c] remove unused argument. ok dugsong
1551    - [sshd.c] typo
1552    - [rsa.c] clear buffers used for encryption. ok: niels
1553    - [rsa.c] replace assert() with error, fatal or packet_disconnect
1554    - [auth-krb4.c] remove unused argument. ok dugsong
1555  - Fixed coredump after merge of OpenBSD rsa.c patch
1556  - Released 1.2pre8
1557
1558 19991102
1559  - Merged change from OpenBSD CVS
1560   - One-line cleanup in sshd.c
1561
1562 19991030
1563  - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
1564  - Merged latest updates for OpenBSD CVS:
1565    - channels.[ch] - remove broken x11 fix and document istate/ostate
1566    - ssh-agent.c - call setsid() regardless of argv[]
1567    - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
1568  - Documentation cleanups
1569  - Renamed README -> README.Ylonen
1570  - Renamed README.openssh ->README
1571
1572 19991029
1573  - Renamed openssh* back to ssh* at request of Theo de Raadt
1574  - Incorporated latest changes from OpenBSD's CVS
1575  - Integrated Makefile patch from  Niels Kristian Bech Jensen <nkbj@image.dk>
1576  - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
1577  - Make distclean now removed configure script
1578  - Improved PAM logging
1579  - Added some debug() calls for PAM
1580  - Removed redundant subdirectories
1581  - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for 
1582    building on Debian.
1583  - Fixed off-by-one error in PAM env patch
1584  - Released 1.2pre6
1585
1586 19991028
1587  - Further PAM enhancements.
1588    - Much cleaner
1589    - Now uses account and session modules for all logins.
1590  - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
1591    - Build fixes
1592    - Autoconf
1593    - Change binary names to open*
1594  - Fixed autoconf script to detect PAM on RH6.1
1595  - Added tests for libpwdb, and OpenBSD functions to autoconf
1596  - Released 1.2pre4
1597
1598  - Imported latest OpenBSD CVS code
1599  - Updated README.openssh
1600  - Released 1.2pre5
1601
1602 19991027
1603  - Adapted PAM patch.
1604  - Released 1.0pre2
1605
1606  - Excised my buggy replacements for strlcpy and mkdtemp
1607  - Imported correct OpenBSD strlcpy and mkdtemp routines.
1608  - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
1609  - Picked up correct version number from OpenBSD
1610  - Added sshd.pam PAM configuration file
1611  - Added sshd.init Redhat init script
1612  - Added openssh.spec RPM spec file
1613  - Released 1.2pre3
1614
1615 19991026
1616  - Fixed include paths of OpenSSL functions
1617  - Use OpenSSL MD5 routines
1618  - Imported RC4 code from nanocrypt
1619  - Wrote replacements for OpenBSD arc4random* functions
1620  - Wrote replacements for strlcpy and mkdtemp
1621  - Released 1.0pre1
This page took 0.182834 seconds and 5 git commands to generate.