]> andersk Git - openssh.git/blob - ChangeLog
030b603ae0e16ff9d0a493e88fa644f14fad94d9
[openssh.git] / ChangeLog
1 20031122
2  - (dtucker) [channels.c] Make AIX write limit code clearer.  Suggested by djm@
3
4 20031121
5  - (djm) OpenBSD CVS Sync
6    - markus@cvs.openbsd.org 2003/11/20 11:39:28
7      [progressmeter.c]
8      fix rounding errors; from andreas@
9    - djm@cvs.openbsd.org 2003/11/21 11:57:03
10      [everything]
11      unexpand and delete whitespace at EOL; ok markus@
12      (done locally and RCS IDs synced)
13
14 20031118
15  - (djm) Fix early exit for root auth success when UsePAM=yes and 
16    PermitRootLogin=no
17  - (dtucker) [auth-pam.c] Convert chauthtok_conv into a generic tty_conv,
18    and use it for do_pam_session.  Fixes problems like pam_motd not
19    displaying anything.  ok djm@
20  - (dtucker) [auth-pam.c] Only use pam_putenv if our platform has it. ok djm@
21  - (djm) OpenBSD CVS Sync
22    - dtucker@cvs.openbsd.org 2003/11/18 00:40:05
23      [serverloop.c]
24      Correct check for authctxt->valid.  ok djm@
25    - djm@cvs.openbsd.org 2003/11/18 10:53:07
26      [monitor.c]
27      unbreak fake authloop for non-existent users (my screwup). Spotted and
28      tested by dtucker@; ok markus@
29
30 20031117
31  - (djm) OpenBSD CVS Sync
32    - djm@cvs.openbsd.org 2003/11/03 09:03:37
33      [auth-chall.c]
34      make this a little more idiot-proof; ok markus@
35      (includes portable-specific changes)
36    - jakob@cvs.openbsd.org 2003/11/03 09:09:41
37      [sshconnect.c]
38      move changed key warning into warn_changed_key(). ok markus@
39    - jakob@cvs.openbsd.org 2003/11/03 09:37:32
40      [sshconnect.c]
41      do not free static type pointer in warn_changed_key()
42    - djm@cvs.openbsd.org 2003/11/04 08:54:09
43      [auth1.c auth2.c auth2-pubkey.c auth.h auth-krb5.c auth-passwd.c]
44      [auth-rhosts.c auth-rh-rsa.c auth-rsa.c monitor.c serverloop.c]
45      [session.c]
46      standardise arguments to auth methods - they should all take authctxt.
47      check authctxt->valid rather then pw != NULL; ok markus@
48    - jakob@cvs.openbsd.org 2003/11/08 16:02:40
49      [auth1.c]
50      remove unused variable (pw). ok djm@
51      (id sync only - still used in portable)
52    - jmc@cvs.openbsd.org 2003/11/08 19:17:29
53      [sftp-int.c]
54      typos from Jonathon Gray;
55    - jakob@cvs.openbsd.org 2003/11/10 16:23:41
56      [bufaux.c bufaux.h cipher.c cipher.h hostfile.c hostfile.h key.c]
57      [key.h sftp-common.c sftp-common.h sftp-server.c sshconnect.c sshd.c]
58      [ssh-dss.c ssh-rsa.c uuencode.c uuencode.h]
59      constify. ok markus@ & djm@
60    - dtucker@cvs.openbsd.org 2003/11/12 10:12:15
61      [scp.c]
62      When called with -q, pass -q to ssh; suppresses SSH2 banner.  ok markus@
63    - jakob@cvs.openbsd.org 2003/11/12 16:39:58
64      [dns.c dns.h readconf.c ssh_config.5 sshconnect.c]
65      update SSHFP validation. ok markus@
66    - jmc@cvs.openbsd.org 2003/11/12 20:14:51
67      [ssh_config.5]
68      make verb agree with subject, and kill some whitespace;
69    - markus@cvs.openbsd.org 2003/11/14 13:19:09
70      [sshconnect2.c]
71      cleanup and minor fixes for the client code; from Simon Wilkinson
72    - djm@cvs.openbsd.org 2003/11/17 09:45:39
73      [msg.c msg.h sshconnect2.c ssh-keysign.c]
74      return error on msg send/receive failure (rather than fatal); ok markus@
75    - markus@cvs.openbsd.org 2003/11/17 11:06:07
76      [auth2-gss.c gss-genr.c gss-serv.c monitor.c monitor.h monitor_wrap.c]
77      [monitor_wrap.h sshconnect2.c ssh-gss.h]
78      replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; 
79      test + ok jakob.
80  - (djm) Bug #632: Don't call pam_end indirectly from within kbd-int
81    conversation function
82  - (djm) Export environment variables from authentication subprocess to 
83    parent. Part of Bug #717
84
85 20031115
86  - (dtucker) [regress/agent-ptrace.sh] Test for GDB output from Solaris and
87    HP-UX, skip test on AIX.
88
89 20031113
90  - (dtucker) [auth-pam.c] Append newlines to lines output by the
91    pam_chauthtok_conv().
92  - (dtucker) [README ssh-host-config ssh-user-config Makefile] (All
93    contrib/cygwin).  Major update from vinschen at redhat.com.
94    - Makefile provides a `cygwin-postinstall' target to run right after
95      `make install'.
96    - Better support for Windows 2003 Server.
97    - Try to get permissions as correct as possible.
98    - New command line options to allow full automated host configuration.
99    - Create configs from skeletons in /etc/defaults/etc.
100    - Use /bin/bash, allows reading user input with readline support.
101    - Remove really old configs from /usr/local.
102  - (dtucker) [auth-pam.c] Add newline to accumulated PAM_TEXT_INFO and
103    PAM_ERROR_MSG messages.
104
105 20031106
106  - (djm) Clarify UsePAM consequences a little more
107
108 20031103
109  - (dtucker) [contrib/cygwin/ssh-host-config] Ensure entries in /etc/services
110    are created correctly with CRLF line terminations.  Patch from vinschen at
111    redhat.com.
112  - (dtucker) OpenBSD CVS Sync
113    - markus@cvs.openbsd.org 2003/10/15 09:48:45
114      [monitor_wrap.c]
115      check pmonitor != NULL
116    - markus@cvs.openbsd.org 2003/10/21 09:50:06
117      [auth2-gss.c]
118      make sure the doid is larger than 2
119    - avsm@cvs.openbsd.org 2003/10/26 16:57:43
120      [sshconnect2.c]
121      rename 'supported' static var in userauth_gssapi() to 'gss_supported'
122      to avoid shadowing the global version.  markus@ ok
123    - markus@cvs.openbsd.org 2003/10/28 09:08:06
124      [misc.c]
125      error->debug for getsockopt+TCP_NODELAY; several requests
126    - markus@cvs.openbsd.org 2003/11/02 11:01:03
127      [auth2-gss.c compat.c compat.h sshconnect2.c]
128      remove support for SSH_BUG_GSSAPI_BER; simon@sxw.org.uk
129  - (dtucker) [regress/agent-ptrace.sh] Use numeric uid and gid.
130
131 20031021
132  - (dtucker) [INSTALL] Some system crypt() functions support MD5 passwords
133    directly.  Noted by Darren.Moffat at sun.com.
134  - (dtucker) [regress/agent-ptrace.sh] Skip agent-test unless SUDO is set,
135    make agent setgid during test.
136
137 20031017
138  - (dtucker) [INSTALL] Note that --with-md5 is now required on platforms with
139    MD5 passwords even if PAM support is enabled.  From steev at detritus.net.
140
141 20031015
142  - (dtucker) OpenBSD CVS Sync
143    - jmc@cvs.openbsd.org 2003/10/08 08:27:36
144      [scp.1 scp.c sftp-server.8 sftp.1 sftp.c ssh.1 sshd.8]
145      scp and sftp: add options list and sort options. options list requested
146      by deraadt@
147      sshd: use same format as ssh
148      ssh: remove wrong option from list
149      sftp-server: Subsystem is documented in ssh_config(5), not sshd(8)
150      ok deraadt@ markus@
151    - markus@cvs.openbsd.org 2003/10/08 15:21:24
152      [readconf.c ssh_config.5]
153      default GSS API to no in client, too; ok jakob, deraadt@
154    - markus@cvs.openbsd.org 2003/10/11 08:24:08
155      [readconf.c readconf.h ssh.1 ssh.c ssh_config.5]
156      remote x11 clients are now untrusted by default, uses xauth(8) to generate
157      untrusted cookies; ForwardX11Trusted=yes restores old behaviour.
158      ok deraadt; feedback and ok djm/fries
159    - markus@cvs.openbsd.org 2003/10/11 08:26:43
160      [sshconnect2.c]
161      search keys in reverse order; fixes #684
162    - markus@cvs.openbsd.org 2003/10/11 11:36:23
163      [monitor_wrap.c]
164      return NULL for missing banner; ok djm@
165    - jmc@cvs.openbsd.org 2003/10/12 13:12:13
166      [ssh_config.5]
167      note that EnableSSHKeySign should be in the non-hostspecific section;
168      remove unnecessary .Pp;
169      ok markus@
170    - markus@cvs.openbsd.org 2003/10/13 08:22:25
171      [scp.1 sftp.1]
172      don't refer to options related to forwarding; ok jmc@
173    - jakob@cvs.openbsd.org 2003/10/14 19:42:10
174      [dns.c dns.h readconf.c ssh-keygen.c sshconnect.c]
175      include SSHFP lookup code (not enabled by default). ok markus@
176    - jakob@cvs.openbsd.org 2003/10/14 19:43:23
177      [README.dns]
178      update
179    - markus@cvs.openbsd.org 2003/10/14 19:54:39
180      [session.c ssh-agent.c]
181      10X for mkdtemp; djm@
182  - (dtucker) [acconfig.h configure.ac dns.c openbsd-compat/getrrsetbyname.c
183    openbsd-compat/getrrsetbyname.h] DNS fingerprint support is now always
184    compiled in but disabled in config.
185  - (dtucker) [auth.c] Check for disabled password expiry on HP-UX Trusted Mode.
186  - (tim) [regress/banner.sh] portability fix.
187
188 20031009
189  - (dtucker) [sshd_config.5] UsePAM defaults to "no".  ok djm@
190
191 20031008
192  - (dtucker) OpenBSD CVS Sync
193    - dtucker@cvs.openbsd.org 2003/10/07 01:47:27
194      [sshconnect2.c]
195      Don't use logit for banner, since it truncates to MSGBUFSIZ; bz #668 &
196      #707.  ok markus@
197    - djm@cvs.openbsd.org 2003/10/07 07:04:16
198      [sftp-int.c]
199      sftp quoting fix from admorten AT umich.edu; ok markus@
200    - deraadt@cvs.openbsd.org 2003/10/07 21:58:28
201      [sshconnect2.c]
202      set ptr to NULL after free
203    - dtucker@cvs.openbsd.org 2003/10/07 01:52:13
204      [regress/Makefile regress/banner.sh]
205      Test SSH2 banner.  ok markus@
206    - djm@cvs.openbsd.org 2003/10/07 07:04:52
207      [regress/sftp-cmds.sh]
208      more sftp quoting regress tests; ok markus
209
210 20031007
211  - (djm) Delete autom4te.cache after autoreconf
212  - (dtucker) [auth-pam.c auth-pam.h session.c] Make PAM use the new static
213    cleanup functions.  With & ok djm@
214  - (dtucker) [contrib/redhat/openssh.spec] Bug #714: Now that UsePAM is a
215    run-time switch, always build --with-md5-passwords.
216  - (dtucker) [configure.ac openbsd-compat/Makefile.in openbsd-compat/strtoul.c]
217    Bug #670: add strtoul() to openbsd-compat for platforms lacking it.  ok djm@
218  - (dtucker) [configure.ac] Bug #715: Set BROKEN_SETREUID and BROKEN_SETREGID
219    on Reliant Unix.  Patch from Robert.Dahlem at siemens.com.
220  - (dtucker) [configure.ac] Bug #710: Check for dlsym() in libdl on
221    Reliant Unix.  Based on patch from Robert.Dahlem at siemens.com.
222
223 20031003
224  - (dtucker) OpenBSD CVS Sync
225    - markus@cvs.openbsd.org 2003/10/02 10:41:59
226      [sshd.c]
227      print openssl version, too, several requests; ok henning/djm.
228    - markus@cvs.openbsd.org 2003/10/02 08:26:53
229      [ssh-gss.h]
230      missing $OpenBSD:; dtucker
231  - (tim) [contrib/caldera/openssh.spec] Remove obsolete --with-ipv4-default
232    option.
233
234 20031002
235  - (dtucker) OpenBSD CVS Sync
236    - markus@cvs.openbsd.org 2003/09/23 20:17:11
237      [Makefile.in auth1.c auth2.c auth.c auth.h auth-krb5.c canohost.c
238      cleanup.c clientloop.c fatal.c gss-serv.c log.c log.h monitor.c monitor.h
239      monitor_wrap.c monitor_wrap.h packet.c serverloop.c session.c session.h
240      ssh-agent.c sshd.c]
241      replace fatal_cleanup() and linked list of fatal callbacks with static
242      cleanup_exit() function.  re-refine cleanup_exit() where appropriate,
243      allocate sshd's authctxt eary to allow simpler cleanup in sshd.
244      tested by many, ok deraadt@
245    - markus@cvs.openbsd.org 2003/09/23 20:18:52
246      [progressmeter.c]
247      don't print trailing \0; bug #709; Robert.Dahlem@siemens.com
248      ok millert/deraadt@
249    - markus@cvs.openbsd.org 2003/09/23 20:41:11
250      [channels.c channels.h clientloop.c]
251      move client only agent code to clientloop.c
252    - markus@cvs.openbsd.org 2003/09/26 08:19:29
253      [sshd.c]
254      no need to set the listen sockets to non-block; ok deraadt@
255    - jmc@cvs.openbsd.org 2003/09/29 11:40:51
256      [ssh.1]
257      - add list of options to -o and .Xr ssh_config(5)
258      - some other cleanup
259      requested by deraadt@;
260      ok deraadt@ markus@
261    - markus@cvs.openbsd.org 2003/09/29 20:19:57
262      [servconf.c sshd_config]
263      GSSAPICleanupCreds -> GSSAPICleanupCredentials
264  - (dtucker) [configure.ac] Don't set DISABLE_SHADOW when configuring
265    --with-pam.  ok djm@
266  - (dtucker) [ssh-gss.h] Prototype change missed in sync.
267  - (dtucker) [session.c] Fix bus errors on some 64-bit Solaris configurations.
268    Based on patches by Matthias Koeppe and Thomas Baden.  ok djm@
269
270 20030930
271  - (bal) Fix issues in openbsd-compat/realpath.c
272
273 20030925
274  - (dtucker) [configure.ac openbsd-compat/xcrypt.c] Bug #633: Remove
275    DISABLE_SHADOW for HP-UX, use getspnam instead of getprpwnam.  Patch from
276    michael_steffens at hp.com, ok djm@
277  - (tim) [sshd_config] UsePAM defaults to no.
278
279 20030924
280  - (djm) Update version.h and spec files for HEAD
281  - (dtucker) [configure.ac] IRIX5 needs the same setre[ug]id defines as IRIX6.
282
283 20030923
284  - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree
285    builds.  Portability corrections from tim@.
286  - (dtucker) [configure.ac] Bug #665: uid swapping issues on Mac OS X.
287    Patch from max at quendi.de.
288  - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi.
289  - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64.
290  - (dtucker) [configure.ac] Bug #693: uid swapping issues on NCR MP-RAS.
291    Patch from david.haughton at ncr.com
292  - (dtucker) [configure.ac] Bug #659: uid swapping issues on IRIX 6.
293    Part of patch supplied by bugzilla-openssh at thewrittenword.com
294  - (dtucker) [configure.ac openbsd-compat/fake-rfc2553.c
295    openbsd-compat/fake-rfc2553.h] Bug #659: Test for and handle systems with
296    where gai_strerror is defined as "const char *".  Part of patch supplied
297    by bugzilla-openssh at thewrittenword.com
298  - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config] Update
299    ssh-host-config to match current defaults, bump README version.  Patch from
300    vinschen at redhat.com.
301  - (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the
302    OS does not support permanently dropping privileges.  Patch from
303    vinschen at redhat.com.
304  - (dtucker) [openbsd-compat/port-aix.c] Use correct include for xmalloc.h,
305    add canohost.h to stop warning.  Based on patch from openssh-unix-dev at
306    thewrittenword.com
307  - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or
308    higher.
309  - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/
310  - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN.
311    Report by distler AT golem ph utexas edu.
312  - (dtucker) [contrib/aix/pam.conf] Include example pam.conf for AIX from
313    article by genty at austin.ibm.com, included with the author's permission.
314  - (dtucker) OpenBSD CVS Sync
315    - markus@cvs.openbsd.org 2003/09/18 07:52:54
316      [sshconnect.c]
317      missing {}; bug #656; jclonguet at free.fr
318    - markus@cvs.openbsd.org 2003/09/18 07:54:48
319      [buffer.c]
320      protect against double free; #660;  zardoz at users.sf.net
321    - markus@cvs.openbsd.org 2003/09/18 07:56:05
322      [authfile.c]
323      missing  buffer_free(&encrypted); #662; zardoz at users.sf.net
324    - markus@cvs.openbsd.org 2003/09/18 08:49:45
325      [deattack.c misc.c session.c ssh-agent.c]
326      more buffer allocation fixes; from Solar Designer; CAN-2003-0682;
327      ok millert@
328    - miod@cvs.openbsd.org 2003/09/18 13:02:21
329      [authfd.c bufaux.c dh.c mac.c ssh-keygen.c]
330      A few signedness fixes for harmless situations; markus@ ok
331    - markus@cvs.openbsd.org 2003/09/19 09:02:02
332      [packet.c]
333      buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471
334    - markus@cvs.openbsd.org 2003/09/19 09:03:00
335      [buffer.c]
336      sign fix in buffer_dump; Jedi/Sector One; pr 3473
337    - markus@cvs.openbsd.org 2003/09/19 11:29:40
338      [ssh-agent.c]
339      provide a ssh-agent specific fatal() function; ok deraadt
340    - markus@cvs.openbsd.org 2003/09/19 11:30:39
341      [ssh-keyscan.c]
342      avoid fatal_cleanup, just call exit(); ok deraadt
343    - markus@cvs.openbsd.org 2003/09/19 11:31:33
344      [channels.c]
345      do not call channel_free_all on fatal; ok deraadt
346    - markus@cvs.openbsd.org 2003/09/19 11:33:09
347      [packet.c sshd.c]
348      do not call packet_close on fatal; ok deraadt
349    - markus@cvs.openbsd.org 2003/09/19 17:40:20
350      [scp.c]
351      error handling for remote-remote copy; #638; report Harald Koenig;
352      ok millert, fgs, henning, deraadt
353    - markus@cvs.openbsd.org 2003/09/19 17:43:35
354      [clientloop.c sshtty.c sshtty.h]
355      remove fatal callbacks from client code; ok deraadt
356  - (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john
357         on #unixhelp@efnet
358  - (tim) [configure.ac] add --disable-etc-default-login option. ok djm
359  - (djm) Sync with V_3_7 branch:
360    - (djm) Fix SSH1 challenge kludge
361    - (djm) Bug #671: Fix builds on OpenBSD
362    - (djm) Bug #676: Fix PAM stack corruption
363    - (djm) Fix bad free() in PAM code
364    - (djm) Don't call pam_end before pam_init
365    - (djm) Enable build with old OpenSSL again
366    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
367    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
368
369 20030919
370  - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
371    djast AT cs.toronto.edu
372  - (djm) Bug #661: Remove duplicate check for basename; from 
373    bugzilla-openssh AT thewrittenword.com
374  - (djm) Bug #641: Allow RedHat RPM building without GTK-2; Patch from
375    jason AT devrandom.org
376  - (djm) Bug #646: Fix location of x11-ssh-askpass; Jim
377  - (dtucker) [openbsd-compat/port-aix.h] Bug #640: Don't include audit.h
378    unless required.  Reorder to reduce warnings.
379  - (dtucker) [session.c] Bug #643: Fix size_t -> u_int and fix null deref
380    when /etc/default/login doesn't exist or isn't readable.  Fixes from
381    jparsons-lists at saffron.net and georg.oppenberg at deu mci com.
382  - (dtucker) [acconfig.h] Updated basename test needs HAVE_BASENAME
383
384 20030918
385  - (djm) Bug #652: Fix empty password auth
386
387 20030917
388  - (djm) Sync with V_3_7 branch
389  - (djm) OpenBSD Sync
390    - markus@cvs.openbsd.org 2003/09/16 21:02:40
391      [buffer.c channels.c version.h]
392      more malloc/fatal fixes; ok millert/deraadt; ghudson at MIT.EDU
393  - (djm) Crank RPM spec file versions
394  - (tim) [openbsd-compat/inet_ntoa.c] 20030917 "Sync with V_3_7 branch" undid
395    20030916 "Missed dead header in inet_ntoa.c"
396  
397 20030916
398  - (dtucker) [acconfig.h configure.ac defines.h session.c] Bug #252: Retrieve
399    PATH (or SUPATH) and UMASK from /etc/default/login on platforms that have it
400    (eg Solaris, Reliant Unix).  Patch from Robert.Dahlem at siemens.com.  
401    ok djm@
402  - (bal) OpenBSD Sync
403    - deraadt@cvs.openbsd.org 2003/09/16 03:03:47
404      [buffer.c]
405      do not expand buffer before attempting to reallocate it; markus ok
406  - (tim) [configure.ac] Fix portability issues.
407  - (bal) Missed dead header in inet_ntoa.c
408
409 20030914
410  - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
411    the regression tests from running with Solaris' make.  Patch from Brian
412    Poole (raj at cerias.purdue.edu).
413  - (dtucker) [regress/Makefile] AIX's make doesn't like " +=", so replace
414    with vanilla "=".
415
416 20030913
417  - (dtucker) [regress/agent-timeout.sh] Timeout of 5 sec is borderline for
418    slower hosts, increase to 10 sec.
419  - (dtucker) [auth-passwd.c] On AIX, call setauthdb() before loginsuccess(),
420    required to correctly reset failed login count when using a password
421    registry other than "files" (eg LDAP, see bug #543).
422  - (tim) [configure.ac] define WITH_ABBREV_NO_TTY for SCO.
423    Report by Roger Cornelius.
424  - (dtucker) [auth-pam.c] Use SSHD_PAM_SERVICE for PAM service name, patch
425    from cjwatson at debian.org.
426
427 20030912
428  - (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
429  - (tim) [Makefile.in] only mkdir regress if it does not exist.
430  - (tim) [regress/yes-head.sh] shell portability fix.
431
432 20030911
433  - (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
434    the dirname test, to allow a broken dirname to be detected correctly.
435    Based partially on patch supplied by alex.kiernan at thus.net.  ok djm@
436  - (tim) [configure.ac] Move libgen tests to before libwrap to unbreak
437    UnixWare 2.03 using --with-tcp-wrappers.
438  - (tim) [configure.ac] Prefer setuid/setgid on UnixWare and Open Server.
439  - (tim) [regress/agent-ptrace.sh regress/dynamic-forward.sh
440    regress/sftp-cmds.sh regress/stderr-after-eof.sh regress/test-exec.sh]
441    no longer depends on which(1). patch by dtucker@
442
443 20030910
444  - (dtucker) [configure.ac] Bug #636: Add support for Cray's new X1 machine.
445    Patch from wendyp at cray.com.
446  - (dtucker) [configure.ac] Part of bug #615: tcsendbreak might be a macro.
447  - (dtucker) [regressh/yes-head.sh] Some platforms (eg Solaris) don't have
448    "yes".
449
450 20030909
451  - (tim) [regress/Makefile] Fixes for building outside of a read-only
452    source tree.
453  - (tim) [regress/agent-timeout.sh] s/TIMEOUT/SSHAGENT_TIMEOUT/ Fixes conflict
454    with shell read-only variable.
455  - (tim) [regress/sftp-badcmds.sh regress/sftp-cmds.sh] Fix errors like
456    UX:rm: ERROR: Cannot remove '.' or '..'
457
458 20030908
459  - (tim) [configure.ac openbsd-compat/getrrsetbyname.c] wrap _getshort and
460    _getlong in #ifndef
461  - (tim) [configure.ac acconfig.h openbsd-compat/getrrsetbyname.c] test for
462    HEADER.ad in arpa/nameser.h
463  - (tim) [ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@
464
465 20030907
466  - (dtucker) [agent-ptrace.sh dynamic-forward.sh (all regress/)]
467    Put "which" inside quotes.
468  - (dtucker) [dynamic-forward.sh forwarding.sh sftp-batch.sh (all regress/)]
469    Add ${EXEEXT}: required to work on Cygwin.
470  - (dtucker) [regress/sftp-batch.sh] Make temporary batch file name more
471    distinctive, so "rm ${BATCH}.*" doesn't match the script itself.
472  - (dtucker) [regress/sftp-cmds.sh] Skip quoted file test on Cygwin.
473  - (dtucker) [openbsd-compat/xcrypt.c] #elsif -> #elif
474  - (dtucker) [acconfig.h] Typo.
475  - (dtucker) [CREDITS Makefile.in configure.ac mdoc2man.awk mdoc2man.pl]
476    Replace mdoc2man.pl with mdoc2man.awk, provided by Peter Stuge.
477
478 20030906
479  - (dtucker) [acconfig.h configure.ac uidswap.c] Prefer setuid/setgid on AIX.
480
481 20030905
482  - (dtucker) [Makefile.in] Add distclean target for regress/, fix clean target.
483
484 20030904
485  - (dtucker) Portablize regression tests.  Parts contributed by Roumen
486    Petrov, David M. Williams and Corinna Vinschen.
487    - [Makefile.in] Add "make tests" target and "make clean" hooks.
488    - [regress/agent-getpeereid.sh] Skip test on platforms that don't support
489      getpeereid.
490    - [regress/agent-ptrace.sh] Skip tests if platform doesn't support it or
491      gdb cannot be found.
492    - [regress/reconfigure/sh] Make path to sshd fully qualified if required.
493    - [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
494      it).  The sparse file will take less disk space too.
495    - [regress/sftp-cmds.sh] Ensure files used for test are readable.
496    - [regress/stderr-after-eof.sh] Search for a usable checksum program.
497    - [regress/sftp-badcmds.sh regress/sftp-cmds.sh regress/sftp.sh
498      regress/ssh-com-client.sh regress/ssh-com-sftp.sh regress/stderr-data.sh
499      regress/transfer.sh] Use ${EXEEXT} where appropriate.
500    - [regress/sftp.sh regress/ssh-com-sftp.sh] Remove dependency on /dev/stdin.
501    - [regress/agent-ptrace.sh regress/agent-timeout.sh]
502      "grep -q" -> "grep >/dev/null"
503    - [regress/agent.sh regress/proto-version.sh regress/ssh-com.sh
504      regress/test-exec.sh] Handle different ways of echoing without newlines.
505    - [regress/dynamic-forward.sh] Some "which" programs output on stderr.
506    - [regress/sftp-cmds.sh] Use portable "test" option.
507    - [regress/test-exec.sh] Use sudo, search for "whoami" equivalent, always
508      use Strictmodes no, wait longer for sshd startup.
509    - [regress/Makefile] Remove BSDisms.
510    - [regress/README.regress] Add a basic readme.
511    - [Makefile.in regress/agent-getpeereid.sh] config.h is now in $BUILDDIR
512      not $OBJ.
513    - [Makefile.in regress/agent-ptrace] Fix minor regress issues on Cygwin.
514
515 20030903
516  - (djm) OpenBSD CVS Sync
517    - markus@cvs.openbsd.org 2003/08/26 09:58:43
518      [auth-passwd.c auth.c auth.h auth1.c auth2-none.c auth2-passwd.c]
519      [auth2.c monitor.c]
520      fix passwd auth for 'username leaks via timing'; with djm@, original 
521      patches from solar
522    - markus@cvs.openbsd.org 2003/08/28 12:54:34
523      [auth.h]
524      remove kerberos support from ssh1, since it has been replaced with GSSAPI;
525      but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
526    - markus@cvs.openbsd.org 2003/09/02 16:40:29
527      [version.h]
528      enter 3.7
529    - jmc@cvs.openbsd.org 2003/09/02 18:50:06
530      [sftp.1 ssh_config.5]
531      escape punctuation;
532      ok deraadt@
533
534 20030902
535  - (djm) OpenBSD CVS Sync
536    - deraadt@cvs.openbsd.org 2003/08/24 17:36:51
537      [auth2-gss.c]
538      64 bit cleanups; markus ok
539    - markus@cvs.openbsd.org 2003/08/28 12:54:34
540      [auth-krb5.c auth.h auth1.c monitor.c monitor.h monitor_wrap.c]
541      [monitor_wrap.h readconf.c servconf.c session.c ssh_config.5]
542      [sshconnect1.c sshd.c sshd_config sshd_config.5]
543      remove kerberos support from ssh1, since it has been replaced with GSSAPI;
544      but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
545    - markus@cvs.openbsd.org 2003/08/29 10:03:15
546      [compat.c compat.h]
547      SSH_BUG_K5USER is unused; ok henning@
548    - markus@cvs.openbsd.org 2003/08/29 10:04:36
549      [channels.c nchan.c]
550      be less chatty; debug -> debug2, cleanup; ok henning@
551    - markus@cvs.openbsd.org 2003/08/31 10:26:04
552      [progressmeter.c]
553      pass file_size + 1 to snprintf: fixes printing of truncated
554      file names; fix based on patch/report from sturm@;
555    - markus@cvs.openbsd.org 2003/08/31 12:14:22
556      [progressmeter.c]
557      do write to buf[-1]
558    - markus@cvs.openbsd.org 2003/08/31 13:29:05
559      [session.c]
560      call ssh_gssapi_storecreds conditionally from do_exec(); 
561      with sxw@inf.ed.ac.uk
562    - markus@cvs.openbsd.org 2003/08/31 13:30:18
563      [gss-serv.c]
564      correct string termination in parse_ename(); sxw@inf.ed.ac.uk
565    - markus@cvs.openbsd.org 2003/08/31 13:31:57
566      [gss-serv.c]
567      whitspace KNF
568    - markus@cvs.openbsd.org 2003/09/01 09:50:04
569      [sshd_config.5]
570      gss kex is not supported; sxw@inf.ed.ac.uk
571    - markus@cvs.openbsd.org 2003/09/01 12:50:46
572      [readconf.c]
573      rm gssapidelegatecreds alias; never supported before
574    - markus@cvs.openbsd.org 2003/09/01 13:52:18
575      [ssh.h]
576      rm whitespace
577    - markus@cvs.openbsd.org 2003/09/01 18:15:50
578      [readconf.c readconf.h servconf.c servconf.h ssh.c]
579      remove unused kerberos code; ok henning@
580    - markus@cvs.openbsd.org 2003/09/01 20:44:54
581      [auth2-gss.c]
582      fix leak
583  - (djm) Don't initialise pam_conv structures inline. Avoids HP/UX compiler
584    error. Part of Bug #423, patch from  michael_steffens AT hp.com
585  - (djm) Bug #423: reorder setting of PAM_TTY and calling of PAM session 
586    management (now done in do_setusercontext). Largely from 
587    michael_steffens AT hp.com
588  - (djm) Fix openbsd-compat/ again - remove references to strl(cpy|cat).h 
589  
590 20030829
591  - (bal) openbsd-compat/ clean up.  Considate headers, add in Id on our
592    files, and added missing license to header.
593
594 20030826
595  - (djm) Bug #629: Mark ssh_config option "pamauthenticationviakbdint"
596    as deprecated. Remove mention from README.privsep. Patch from 
597    aet AT cc.hut.fi
598  - (dtucker) OpenBSD CVS Sync
599    - markus@cvs.openbsd.org 2003/08/22 10:56:09
600      [auth2.c auth2-gss.c auth.h compat.c compat.h gss-genr.c gss-serv-krb5.c
601      gss-serv.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h readconf.c
602      readconf.h servconf.c servconf.h session.c session.h ssh-gss.h
603      ssh_config.5 sshconnect2.c sshd_config sshd_config.5]
604      support GSS API user authentication; patches from Simon Wilkinson,
605      stripped down and tested by Jakob and myself.
606    - markus@cvs.openbsd.org 2003/08/22 13:20:03
607      [sshconnect2.c]
608      remove support for "kerberos-2@ssh.com"
609    - markus@cvs.openbsd.org 2003/08/22 13:22:27
610      [auth2.c] (auth2-krb5.c removed)
611      nuke "kerberos-2@ssh.com"
612    - markus@cvs.openbsd.org 2003/08/22 20:55:06
613      [LICENCE]
614      add Simon Wilkinson
615    - deraadt@cvs.openbsd.org 2003/08/24 17:36:52
616      [monitor.c monitor_wrap.c sshconnect2.c]
617      64 bit cleanups; markus ok
618    - fgsch@cvs.openbsd.org 2003/08/25 08:13:09
619      [sftp-int.c]
620      fix div by zero when listing for filename lengths longer than width.
621      markus@ ok.
622    - djm@cvs.openbsd.org 2003/08/25 10:33:33
623      [sshconnect2.c]
624      fprintf->logit to silence login banner with "ssh -q"; ok markus@
625  - (dtucker) [Makefile.in acconfig.h auth-krb5.c auth-pam.c auth-pam.h
626    configure.ac defines.h gss-serv-krb5.c session.c ssh-gss.h sshconnect1.c
627    sshconnect2.c] Add Portable GSSAPI support, patch by Simon Wilkinson.
628  - (dtucker) [Makefile.in] Remove auth2-krb5.
629  - (dtucker) [contrib/aix/inventory.sh] Add public domain notice.  ok mouring@
630    (the original author)
631  - (dtucker) [auth.c] Do not check for locked accounts when PAM is enabled.
632
633 20030825
634  - (djm) Bug #621: Select OpenSC keys by usage attributes. Patch from 
635    larsch@trustcenter.de
636  - (bal) openbsd-compat/ OpenBSD updates.  Mostly licensing, ansifications
637    and minor fixes. OK djm@
638  - (bal) redo how we handle 'mysignal()'.  Move it to 
639    openbsd-compat/bsd-misc.c, s/mysignal/signal/ and #define signal to
640    be our 'mysignal' by default.  OK djm@
641  - (dtucker) [acconfig.h auth.c configure.ac sshd.8] Bug #422 again: deny
642    any access to locked accounts.  ok djm@
643  - (djm) Bug #564: Perform PAM account checks for all authentications when
644    UsePAM=yes; ok dtucker
645  - (dtucker) [configure.ac] Bug #533, #551: define BROKEN_GETADDRINFO on
646    Tru64, solves getnameinfo and "bad addr or host" errors.  ok djm@
647  - (dtucker) [README buildbff.sh inventory.sh] (all in contrib/aix)
648    Update package builder: correctly handle config variables, use lsuser
649    rather than /etc/passwd, fix typos, add Id's.
650
651 20030822
652  - (djm) s/get_progname/ssh_get_progname/g to avoid conflict with Heimdal 
653    -lbroken; ok dtucker 
654  - (dtucker) [contrib/cygwin/ssh-user-config] Put keys in authorized_keys
655    rather that authorized_keys2.  Patch from vinschen@redhat.com.
656
657 20030821
658  - (dtucker) OpenBSD CVS Sync
659    - markus@cvs.openbsd.org 2003/08/14 16:08:58
660      [ssh-keygen.c]
661      exit after primetest, ok djm@
662  - (dtucker) [defines.h] Put CMSG_DATA, CMSG_FIRSTHDR with other CMSG* macros,
663    change CMSG_DATA to use __CMSG_ALIGN (and thus work properly), reformat for
664    consistency.
665  - (dtucker) [configure.ac] Move openpty/ctty test outside of case statement
666    and after normal openpty test.
667
668 20030813
669  - (dtucker) [session.c] Remove #ifdef TIOCSBRK kludge.
670  - (dtucker) OpenBSD CVS Sync
671    - markus@cvs.openbsd.org 2003/08/13 08:33:02
672      [session.c]
673      use more portable tcsendbreak(3) and ignore break_length;
674      ok deraadt, millert
675    - markus@cvs.openbsd.org 2003/08/13 08:46:31
676      [auth1.c readconf.c readconf.h servconf.c servconf.h ssh.c ssh_config
677      ssh_config.5 sshconnect1.c sshd.8 sshd.c sshd_config sshd_config.5]
678      remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,
679      fgsch@, miod@, henning@, jakob@ and others
680    - markus@cvs.openbsd.org 2003/08/13 09:07:10
681      [readconf.c ssh.c]
682      socks4->socks, since with support both 4 and 5; dtucker@zip.com.au
683  - (dtucker) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
684    Add a tcsendbreak function for platforms that don't have one, based on the
685    one from OpenBSD.
686
687 20030811
688  - (dtucker) OpenBSD CVS Sync
689    (thanks to Simon Wilkinson for help with this -dt)
690    - markus@cvs.openbsd.org 2003/07/16 15:02:06
691      [auth-krb5.c]
692      mcc -> fcc; from Love Hörnquist Ã…strand <lha@it.su.se>
693      otherwise the kerberos credentinal is stored in a memory cache
694      in the privileged sshd. ok jabob@, hin@ (some time ago)
695  - (dtucker) [openbsd-compat/xcrypt.c] Remove Cygwin #ifdef block (duplicate
696    in bsd-cygwin_util.h).
697
698 20030808
699  - (dtucker) [openbsd-compat/fake-rfc2553.h] Older Linuxes have AI_PASSIVE and
700    AI_CANONNAME in netdb.h but not AI_NUMERICHOST, so check each definition
701    separately before defining them.
702  - (dtucker) [auth-pam.c] Don't set PAM_TTY if tty is null.  ok djm@
703
704 20030807
705  - (dtucker) [session.c] Have session_break_req not attempt to send a break
706    if TIOCSBRK and TIOCCBRK are not defined (eg Cygwin).
707  - (dtucker) [canohost.c] Bug #336: Only check ip options if IP_OPTIONS is
708    defined (fixes compile error on really old Linuxes).
709  - (dtucker) [defines.h] Bug #336: Add CMSG_DATA and CMSG_FIRSTHDR macros if
710    not already defined (eg Linux with some versions of libc5), based on those
711    from OpenBSD.
712  - (dtucker) [openbsd-compat/bsd-cygwin_util.c openbsd-compat/bsd-cygwin_util.h]
713    Remove incorrect filenames from comments (file names are in Id tags).
714  - (dtucker) [session.c openbsd-compat/bsd-cygwin_util.h] Move Cygwin
715    specific defines and includes to bsd-cygwin_util.h.  Fixes build error too.
716
717 20030802
718  - (dtucker) [monitor.h monitor_wrap.h] Remove excess ident tags.
719  - (dtucker) OpenBSD CVS Sync
720    - markus@cvs.openbsd.org 2003/07/22 13:35:22
721      [auth1.c auth.h auth-passwd.c monitor.c monitor.h monitor_wrap.c
722      monitor_wrap.h readconf.c readconf.h servconf.c servconf.h session.c ssh.1
723      ssh.c ssh_config.5 sshconnect1.c sshd.c sshd_config.5 ssh.h]
724      remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);
725      test+ok henning@
726  - (dtucker) [Makefile.in acconfig.h configure.ac] Remove KRB4/AFS support.
727  - (dtucker) [auth-krb4.c radix.c radix.h] Remove KRB4/AFS specific files.
728  - (dtucker) OpenBSD CVS Sync
729    - markus@cvs.openbsd.org 2003/07/23 07:42:43
730      [sshd_config]
731      remove AFS; itojun@
732    - djm@cvs.openbsd.org 2003/07/28 09:49:56
733      [ssh-keygen.1 ssh-keygen.c]
734      Support for generating Diffie-Hellman groups (/etc/moduli) from ssh-keygen.
735      Based on code from Phil Karn, William Allen Simpson and Niels Provos.
736      ok markus@, thanks jmc@
737    - markus@cvs.openbsd.org 2003/07/29 18:24:00
738      [LICENCE progressmeter.c]
739      replace 4 clause BSD licensed progressmeter code with a replacement
740      from Nils Nordman and myself; ok deraadt@
741      (copied from OpenBSD an re-applied portable changes)
742    - markus@cvs.openbsd.org 2003/07/29 18:26:46
743      [progressmeter.c]
744      fix length for "- stalled -" (included with previous import)
745    - markus@cvs.openbsd.org 2003/07/30 07:44:14
746      [progressmeter.c]
747      use only 4 digits in format_size (included with previous import)
748    - markus@cvs.openbsd.org 2003/07/30 07:53:27
749      [progressmeter.c]
750      whitespace (included with previous import)
751    - markus@cvs.openbsd.org 2003/07/31 09:21:02
752      [auth2-none.c]
753      check whether passwd auth is allowd, similar to proto 1; rob@pitman.co.za
754      ok henning
755    - avsm@cvs.openbsd.org 2003/07/31 15:50:16
756      [atomicio.c]
757      correct comment: atomicio takes vwrite, not write; deraadt@ ok
758    - markus@cvs.openbsd.org 2003/07/31 22:34:03
759      [progressmeter.c]
760      print rate similar old version; round instead truncate;
761      (included in previous progressmeter.c commit)
762  - (dtucker) [openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
763    Add a tcgetpgrp function.
764  - (dtucker) [Makefile.in moduli.c moduli.h] Add new files and to Makefile.
765  - (dtucker) [openbsd-compat/bsd-misc.c] Fix cut-and-paste bug in tcgetpgrp.
766
767 20030730
768  - (djm) [auth-pam.c] Don't use crappy APIs like sprintf. Thanks bal
769
770 20030726
771  - (dtucker) [openbsd-compat/xcrypt.c] Fix typo: DISABLED_SHADOW ->
772    DISABLE_SHADOW.  Fixes HP-UX compile error.
773
774 20030724
775  - (bal) [auth-passwd.c openbsd-compat/Makefile.in openbsd-compat/xcrypt.c 
776     openbsd-compat/xcrypt.h] Split off encryption into xcrypt() interface,
777     and isolate shadow password functions.  Tested in Solaris, but should
778     not break other platforms too badly (except maybe HP =).  Also brings
779     auth-passwd.c into full sync with OpenBSD tree.
780
781 20030723
782  - (dtucker) [configure.ac] Back out change for bug #620.
783
784 20030719
785  - (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for
786    Solaris/x86.  Patch from jrhett at isite.net.
787  - (dtucker) OpenBSD CVS Sync
788    - markus@cvs.openbsd.org 2003/07/14 12:36:37
789      [sshd.c]
790      remove undocumented -V option. would be only useful if openssh is used
791      as ssh v1 server for ssh.com's ssh v2.
792    - markus@cvs.openbsd.org 2003/07/16 10:34:53
793      [ssh.c sshd.c]
794      don't exit on multiple -v or -d; ok deraadt@
795    - markus@cvs.openbsd.org 2003/07/16 10:36:28
796      [sshtty.c]
797      clear IUCLC in enter_raw_mode; from rob@pitman.co.za; ok deraadt@, fgs@
798    - deraadt@cvs.openbsd.org 2003/07/18 01:54:25
799      [scp.c]
800      userid is unsigned, but well, force it anyways; andrushock@korovino.net
801    - djm@cvs.openbsd.org 2003/07/19 00:45:53
802      [sftp-int.c]
803      fix sftp filename parsing for arguments with escaped quotes. bz #517;
804      ok markus
805    - djm@cvs.openbsd.org 2003/07/19 00:46:31
806      [regress/sftp-cmds.sh]
807      regress test for sftp arguments with escaped quotes; ok markus
808
809 20030714
810  - (dtucker) [acconfig.h configure.ac port-aix.c] Older AIXes don't declare
811    loginfailed at all, so assume 3-arg loginfailed if not declared.
812  - (dtucker) [port-aix.h] Work around name collision on AIX for r_type by
813    undef'ing it.
814  - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h]
815    Call setauthdb() before loginfailed(), which may load password registry-
816    specific functions.  Based on patch by cawlfiel at us.ibm.com.
817  - (dtucker) [port-aix.h] Fix prototypes.
818  - (dtucker) OpenBSD CVS Sync
819    - avsm@cvs.openbsd.org 2003/07/09 13:58:19
820      [key.c]
821      minor tweak: when generating the hex fingerprint, give strlcat the full
822      bound to the buffer, and add a comment below explaining why the
823      zero-termination is one less than the bound.  markus@ ok
824    - markus@cvs.openbsd.org 2003/07/10 14:42:28
825      [packet.c]
826      the 2^(blocksize*2) rekeying limit is too expensive for 3DES,
827      blowfish, etc, so enforce a 1GB limit for small blocksizes.
828    - markus@cvs.openbsd.org 2003/07/10 20:05:55
829      [sftp.c]
830      sync usage with manpage, add missing -R
831
832 20030708
833  - (dtucker) [acconfig.h auth-passwd.c configure.ac session.c port-aix.[ch]]
834    Include AIX headers for authentication functions and make calls match
835    prototypes.  Test for and handle 3-arg and 4-arg variants of loginfailed.
836  - (dtucker) [session.c] Check return value of setpcred().
837  - (dtucker) [auth-passwd.c auth.c session.c sshd.c port-aix.c port-aix.h]
838    Convert aixloginmsg into platform-independant Buffer loginmsg.
839
840 20030707
841  - (dtucker) [configure.ac] Bug #600: Check that getrusage is declared before
842    searching libraries for it.  Fixes build errors on NCR MP-RAS.
843
844 20030706
845  - (dtucker) [ssh-rand-helper.c loginrec.c]
846    Apply atomicio typing change to these too.
847
848 20030703
849  - (dtucker) OpenBSD CVS Sync
850    - djm@cvs.openbsd.org 2003/06/28 07:48:10
851      [sshd.c]
852      report pidfile creation errors, based on patch from Roumen Petrov;
853      ok markus@
854    - deraadt@cvs.openbsd.org 2003/06/28 16:23:06
855      [atomicio.c atomicio.h authfd.c clientloop.c monitor_wrap.c msg.c
856      progressmeter.c scp.c sftp-client.c ssh-keyscan.c ssh.h sshconnect.c
857      sshd.c]
858      deal with typing of write vs read in atomicio
859    - markus@cvs.openbsd.org 2003/06/29 12:44:38
860      [sshconnect.c]
861      memset 0, not \0; andrushock@korovino.net
862    - markus@cvs.openbsd.org 2003/07/02 12:56:34
863      [channels.c]
864      deny dynamic forwarding with -R for v1, too; ok djm@
865    - markus@cvs.openbsd.org 2003/07/02 14:51:16
866      [channels.c ssh.1 ssh_config.5]
867      (re)add socks5 suppport to -D; ok djm@
868      now ssh(1) can act both as a socks 4 and socks 5 server and
869      dynamically forward ports.
870    - markus@cvs.openbsd.org 2003/07/02 20:37:48
871      [ssh.c]
872      convert hostkeyalias to lowercase, otherwise uppercase aliases will
873      not match at all; ok henning@
874    - markus@cvs.openbsd.org 2003/07/03 08:21:46
875      [regress/dynamic-forward.sh]
876      add socks5; speedup; reformat; based on patch from dtucker@zip.com.au
877    - markus@cvs.openbsd.org 2003/07/03 08:24:13
878      [regress/Makefile]
879      enable tests for dynamic fwd via socks (-D), uses nc(1)
880    - djm@cvs.openbsd.org 2003/07/03 08:09:06
881      [readconf.c readconf.h ssh-keysign.c ssh.c]
882      fix AddressFamily option in config file, from brent@graveland.net;
883      ok markus@
884
885 20030630
886  - (djm) Search for support functions necessary to build our 
887    getrrsetbyname() replacement. Patch from Roumen Petrov 
888
889 20030629
890  - (dtucker) [includes.h] Bug #602: move #include of netdb.h to after in.h
891    (fixes compiler warnings on Solaris 2.5.1).
892  - (dtucker) [configure.ac] Add sanity test after system-dependant compiler
893    flag modifications.
894    
895 20030628
896  - (djm) Bug #591: use PKCS#15 private key label as a comment in case 
897    of OpenSC. Report and patch from larsch@trustcenter.de
898  - (djm) Bug #593: Sanity check OpenSC card reader number; patch from 
899    aj@dungeon.inka.de
900  - (dtucker) OpenBSD CVS Sync
901    - markus@cvs.openbsd.org 2003/06/23 09:02:44
902      [ssh_config.5]
903      document EnableSSHKeysign; bugzilla #599; ok deraadt@, jmc@
904    - markus@cvs.openbsd.org 2003/06/24 08:23:46
905      [auth2-hostbased.c auth2-pubkey.c auth2.c channels.c key.c key.h
906       monitor.c packet.c packet.h serverloop.c sshconnect2.c sshd.c]
907      int -> u_int; ok djm@, deraadt@, mouring@
908    - miod@cvs.openbsd.org 2003/06/25 22:39:36
909      [sftp-server.c]
910      Typo police: attribute is better written with an 'r'.
911    - markus@cvs.openbsd.org 2003/06/26 20:08:33
912      [readconf.c]
913      do not dump core for 'ssh -o proxycommand host'; ok deraadt@
914  - (dtucker) [regress/dynamic-forward.sh] Import new regression test.
915  - (dtucker) [configure.ac] Bug #570: Have ./configure --enable-FEATURE 
916    actually enable the feature, for those normally disabled.  Patch by
917    openssh (at) roumenpetrov.info.
918
919 20030624
920  - (dtucker) Have configure refer the user to config.log and
921    contrib/findssl.sh for OpenSSL header/library mismatches.
922
923 20030622
924  - (dtucker) OpenBSD CVS Sync
925    - markus@cvs.openbsd.org 2003/06/21 09:14:05
926      [regress/reconfigure.sh]
927      missing $SUDO; from dtucker@zip.com.au
928    - markus@cvs.openbsd.org 2003/06/18 11:28:11
929      [ssh-rsa.c]
930      backout last change, since it violates pkcs#1
931      switch to share/misc/license.template
932    - djm@cvs.openbsd.org 2003/06/20 05:47:58
933      [sshd_config.5]
934      sync description of protocol 2 cipher proposal; ok markus
935    - djm@cvs.openbsd.org 2003/06/20 05:48:21
936      [sshd_config]
937      sync some implemented options; ok markus@
938  - (dtucker) [regress/authorized_keys_root] Remove temp data file from CVS.
939  - (dtucker) [openbsd-compat/setproctitle.c] Ensure SPT_TYPE is defined before
940    testing its value.
941
942 20030618
943  - (djm) OpenBSD CVS Sync
944    - markus@cvs.openbsd.org 2003/06/12 07:57:38
945      [monitor.c sshlogin.c sshpty.c]
946      typos; dtucker at zip.com.au
947    - djm@cvs.openbsd.org 2003/06/12 12:22:47
948      [LICENCE]
949      mention more copyright holders; ok markus@
950    - nino@cvs.openbsd.org 2003/06/12 15:34:09
951      [scp.c]
952      Typo. Ok markus@.
953    - markus@cvs.openbsd.org 2003/06/12 19:12:03
954      [scard.c scard.h ssh-agent.c ssh.c]
955      add sc_get_key_label; larsch at trustcenter.de; bugzilla#591
956    - markus@cvs.openbsd.org 2003/06/16 08:22:35
957      [ssh-rsa.c]
958      make sure the signature has at least the expected length (don't
959      insist on len == hlen + oidlen, since this breaks some smartcards)
960      bugzilla #592; ok djm@
961    - markus@cvs.openbsd.org 2003/06/16 10:22:45
962      [ssh-add.c]
963      print out key comment on each prompt; make ssh-askpass more useable; ok djm@
964    - markus@cvs.openbsd.org 2003/06/17 18:14:23
965      [cipher-ctr.c]
966      use license from /usr/share/misc/license.template for new code
967  - (dtucker) [reconfigure.sh rekey.sh sftp-badcmds.sh]
968    Import new regression tests from OpenBSD
969  - (dtucker) [regress/copy.1 regress/copy.2] Remove temp data files from CVS.
970  - (dtucker) OpenBSD CVS Sync (regress/)
971    - markus@cvs.openbsd.org 2003/04/02 12:21:13
972      [Makefile]
973      enable rekey test
974    - djm@cvs.openbsd.org 2003/04/04 09:34:22
975      [Makefile sftp-cmds.sh]
976      More regression tests, including recent directory rename bug; ok markus@
977    - markus@cvs.openbsd.org 2003/05/14 22:08:27
978      [ssh-com-client.sh ssh-com-keygen.sh ssh-com-sftp.sh ssh-com.sh]
979      test against some new commerical versions
980    - mouring@cvs.openbsd.org 2003/05/15 04:07:12
981      [sftp-cmds.sh]
982      Advanced put/get testing for sftp.  OK @djm
983    - markus@cvs.openbsd.org 2003/06/12 15:40:01
984      [try-ciphers.sh]
985      add ctr
986    - markus@cvs.openbsd.org 2003/06/12 15:43:32
987      [Makefile]
988      test -HUP; dtucker at zip.com.au
989
990 20030614
991  - (djm) Update license on fake-rfc2553.[ch]; ok itojun@
992
993 20030611
994  - (djm) Mention portable copyright holders in LICENSE
995  - (djm) Put licenses on substantial header files
996  - (djm) Sync LICENSE against OpenBSD
997  - (djm) OpenBSD CVS Sync
998    - jmc@cvs.openbsd.org 2003/06/10 09:12:11
999      [scp.1 sftp-server.8 ssh.1 ssh-add.1 ssh-agent.1 ssh_config.5]
1000      [sshd.8 sshd_config.5 ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8]
1001      - section reorder
1002      - COMPATIBILITY merge
1003      - macro cleanup
1004      - kill whitespace at EOL
1005      - new sentence, new line
1006      ssh pages ok markus@
1007    - deraadt@cvs.openbsd.org 2003/06/10 22:20:52
1008      [packet.c progressmeter.c]
1009      mostly ansi cleanup; pval ok
1010    - jakob@cvs.openbsd.org 2003/06/11 10:16:16
1011      [sshconnect.c]
1012      clean up check_host_key() and improve SSHFP feedback. ok markus@
1013    - jakob@cvs.openbsd.org 2003/06/11 10:18:47
1014      [dns.c]
1015      sync with check_host_key() change
1016    - djm@cvs.openbsd.org 2003/06/11 11:18:38
1017      [authfd.c authfd.h ssh-add.c ssh-agent.c]
1018      make agent constraints (lifetime, confirm) work with smartcard keys; 
1019      ok markus@
1020
1021
1022 20030609
1023  - (djm) Sync README.smartcard with OpenBSD -current
1024  - (djm) Re-merge OpenSC info into README.smartcard
1025
1026 20030606
1027  - (dtucker) [uidswap.c] Fix setreuid and add missing args to fatal(). ok djm@
1028
1029 20030605
1030  - (djm) Support AI_NUMERICHOST in fake-getaddrinfo.c. Needed for recent
1031    canohost.c changes.
1032  - (djm) Implement paranoid priv dropping checks, based on:
1033    "SetUID demystified" - Hao Chen, David Wagner and Drew Dean
1034    Proceedings of USENIX Security Symposium 2002
1035  - (djm) Don't use xmalloc() or pull in toplevel headers in fake-* code
1036  - (djm) Merge all the openbsd/fake-* into fake-rfc2553.[ch]
1037  - (djm) Bug #588 - Add scard-opensc.o back to Makefile.in
1038    Patch from larsch@trustcenter.de
1039  - (djm) Bug #589 - scard-opensc: load only keys with a private keys
1040    Patch from larsch@trustcenter.de
1041  - (dtucker) Add includes.h to fake-rfc2553.c so it will build.
1042  - (dtucker) Define EAI_NONAME in fake-rfc2553.h (used by fake-rfc2553.c).
1043
1044 20030604
1045  - (djm) Bug #573 - Remove unneeded Krb headers and compat goop. Patch from
1046    simon@sxw.org.uk (Also matches a change in OpenBSD a while ago)
1047  - (djm) Bug #577 - wrong flag in scard-opensc.c sc_private_decrypt. 
1048    Patch from larsch@trustcenter.de; ok markus@
1049  - (djm) Bug #584: scard-opensc.c doesn't work without PIN. Patch from 
1050    larsch@trustcenter.de; ok markus@
1051  - (djm) OpenBSD CVS Sync
1052    - djm@cvs.openbsd.org 2003/06/04 08:25:18
1053      [sshconnect.c]
1054      disable challenge/response and keyboard-interactive auth methods 
1055      upon hostkey mismatch. based on patch from fcusack AT fcusack.com. 
1056      bz #580; ok markus@
1057    - djm@cvs.openbsd.org 2003/06/04 10:23:48
1058      [sshd.c]
1059      remove duplicated group-dropping code; ok markus@
1060    - djm@cvs.openbsd.org 2003/06/04 12:03:59
1061      [serverloop.c]
1062      remove bitrotten commet; ok markus@
1063    - djm@cvs.openbsd.org 2003/06/04 12:18:49
1064      [scp.c]
1065      ansify; ok markus@
1066    - djm@cvs.openbsd.org 2003/06/04 12:40:39
1067      [scp.c]
1068      kill ssh process upon receipt of signal, bz #241.
1069      based on patch from esb AT hawaii.edu; ok markus@
1070    - djm@cvs.openbsd.org 2003/06/04 12:41:22
1071      [sftp.c]
1072      kill ssh process on receipt of signal; ok markus@
1073  - (djm) Update to fix of bug #584: lock card before return. 
1074    From larsch@trustcenter.de
1075  - (djm) Always use mysignal() for SIGALRM
1076
1077 20030603
1078  - (djm) Replace setproctitle replacement with code derived from 
1079    UCB sendmail
1080  - (djm) OpenBSD CVS Sync
1081    - markus@cvs.openbsd.org 2003/06/02 09:17:34
1082      [auth2-hostbased.c auth.c auth-options.c auth-rhosts.c auth-rh-rsa.c]
1083      [canohost.c monitor.c servconf.c servconf.h session.c sshd_config]
1084      [sshd_config.5]
1085      deprecate VerifyReverseMapping since it's dangerous if combined
1086      with IP based access control as noted by Mike Harding; replace with
1087      a UseDNS option, UseDNS is on by default and includes the
1088      VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@
1089      ok deraadt@, djm@
1090    - millert@cvs.openbsd.org 2003/06/03 02:56:16
1091      [scp.c]
1092      Remove the advertising clause in the UCB license which Berkeley
1093      rescinded 22 July 1999.  Proofed by myself and Theo.
1094  - (djm) Fix portable-specific uses of verify_reverse_mapping too
1095  - (djm) Sync openbsd-compat with OpenBSD CVS. 
1096     - No more 4-term BSD licenses in linked code
1097  - (dtucker) [port-aix.c bsd-cray.c] Fix uses of verify_reverse_mapping.
1098
1099 20030602
1100  - (djm) Fix segv from bad reordering in auth-pam.c
1101  - (djm) Always use saved_argv in sshd.c as compat_init_setproctitle may 
1102    clobber
1103  - (tim) openbsd-compat/xmmap.[ch] License clarifications. Add missing
1104    CVS ID.
1105  - (djm) Remove "noip6" option from RedHat spec file. This may now be 
1106    set at runtime using AddressFamily option.
1107  - (djm) Fix use of macro before #define in cipher-aes.c
1108  - (djm) Sync license on openbsd-compat/bindresvport.c with OpenBSD CVS
1109  - (djm) OpenBSD CVS Sync
1110    - djm@cvs.openbsd.org 2003/05/26 12:54:40
1111      [sshconnect.c]
1112      fix format strings; ok markus@
1113    - deraadt@cvs.openbsd.org 2003/05/29 16:58:45
1114      [sshd.c uidswap.c]
1115      seteuid and setegid; markus ok
1116    - jakob@cvs.openbsd.org 2003/06/02 08:31:10
1117      [ssh_config.5]
1118      VerifyHostKeyDNS is v2 only. ok markus@
1119
1120 20030530
1121  - (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
1122    roumenpetrov.info
1123  - (dtucker) Define SSHD_ACQUIRES_CTTY for NCR MP-RAS and Reliant Unix.
1124
1125 20030526
1126  - (djm) Avoid auth2-chall.c warning when compiling without 
1127    PAM, BSD_AUTH and SKEY
1128
1129 20030525
1130 - (djm) OpenBSD CVS Sync
1131    - djm@cvs.openbsd.org 2003/05/24 09:02:22
1132      [log.c]
1133      pass logged data through strnvis; ok markus
1134    - djm@cvs.openbsd.org 2003/05/24 09:30:40
1135      [authfile.c monitor.c sftp-common.c sshpty.c]
1136      cast some types for printing; ok markus@
1137
1138 20030524
1139  - (dtucker) Correct --osfsia in INSTALL.  Patch by skeleten at shillest.net
1140
1141 20030523
1142  - (djm) Use VIS_SAFE on logged strings rather than default strnvis 
1143    encoding (which encodes many more characters)
1144  - OpenBSD CVS Sync
1145    - jmc@cvs.openbsd.org 2003/05/20 12:03:35
1146      [sftp.1]
1147      - new sentence, new line
1148      - added .Xr's
1149      - typos
1150      ok djm@
1151    - jmc@cvs.openbsd.org 2003/05/20 12:09:31
1152      [ssh.1 ssh_config.5 sshd.8 sshd_config.5 ssh-keygen.1]
1153      new sentence, new line
1154    - djm@cvs.openbsd.org 2003/05/23 08:29:30
1155      [sshconnect.c]
1156      fix leak; ok markus@
1157
1158 20030520
1159  - (djm) OpenBSD CVS Sync
1160    - deraadt@cvs.openbsd.org 2003/05/18 23:22:01
1161      [log.c]
1162      use syslog_r() in a signal handler called place; markus ok
1163  - (djm) Configure logic to detect syslog_r and friends
1164
1165 20030519
1166  - (djm) Sync auth-pam.h with what we actually implement
1167
1168 20030518
1169  - (djm) Return of the dreaded PAM_TTY_KLUDGE, which went missing in 
1170    recent merge
1171  - (djm) OpenBSD CVS Sync
1172    - djm@cvs.openbsd.org 2003/05/16 03:27:12
1173      [readconf.c ssh_config ssh_config.5 ssh-keysign.c]
1174      add AddressFamily option to ssh_config (like -4, -6 on commandline).
1175      Portable bug #534; ok markus@
1176    - itojun@cvs.openbsd.org 2003/05/17 03:25:58
1177      [auth-rhosts.c]
1178      just in case, put numbers to sscanf %s arg.
1179    - markus@cvs.openbsd.org 2003/05/17 04:27:52
1180      [cipher.c cipher-ctr.c myproposal.h]
1181      experimental support for aes-ctr modes from
1182      http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt
1183      ok djm@
1184  - (djm) Remove IPv4 by default hack now that we can specify AF in config
1185  - (djm) Tidy and trim TODO
1186  - (djm) Sync openbsd-compat/ with OpenBSD CVS head
1187  - (djm) Big KNF on openbsd-compat/
1188  - (djm) KNF on md5crypt.[ch]
1189  - (djm) KNF on auth-sia.[ch]
1190
1191 20030517
1192  - (bal) strcat -> strlcat on openbsd-compat/realpath.c (rev 1.8 OpenBSD)
1193
1194 20030516
1195  - (djm) OpenBSD CVS Sync
1196    - djm@cvs.openbsd.org 2003/05/15 13:52:10
1197      [ssh.c]
1198      Make "ssh -V" print the OpenSSL version in a human readable form. Patch
1199      from Craig Leres (mindrot at ee.lbl.gov); ok markus@
1200    - jakob@cvs.openbsd.org 2003/05/15 14:02:47
1201      [readconf.c servconf.c]
1202      warn for unsupported config option. ok markus@
1203    - markus@cvs.openbsd.org 2003/05/15 14:09:21
1204      [auth2-krb5.c]
1205      fix 64bit issue; report itojun@
1206    - djm@cvs.openbsd.org 2003/05/15 14:55:25
1207      [readconf.c readconf.h ssh_config ssh_config.5 sshconnect.c]
1208      add a ConnectTimeout option to ssh, based on patch from
1209      Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@
1210  - (djm) Add warning for UsePAM when built without PAM support
1211  - (djm) A few type mismatch fixes from Bug #565
1212  - (djm) Guard free_pam_environment against NULL argument. Works around
1213    HP/UX PAM problems debugged by dtucker
1214
1215 20030515
1216  - (djm) OpenBSD CVS Sync
1217    - jmc@cvs.openbsd.org 2003/05/14 13:11:56
1218      [ssh-agent.1]
1219      setup -> set up;
1220      from wiz@netbsd
1221    - jakob@cvs.openbsd.org 2003/05/14 18:16:20
1222      [key.c key.h readconf.c readconf.h ssh_config.5 sshconnect.c]
1223      [dns.c dns.h README.dns ssh-keygen.1 ssh-keygen.c]
1224      add experimental support for verifying hos keys using DNS as described
1225      in draft-ietf-secsh-dns-xx.txt. more information in README.dns.
1226      ok markus@ and henning@
1227    - markus@cvs.openbsd.org 2003/05/14 22:24:42
1228      [clientloop.c session.c ssh.1]
1229      allow to send a BREAK to the remote system; ok various
1230    - markus@cvs.openbsd.org 2003/05/15 00:28:28
1231      [sshconnect2.c]
1232      cleanup unregister of per-method packet handlers; ok djm@
1233    - jakob@cvs.openbsd.org 2003/05/15 01:48:10
1234      [readconf.c readconf.h servconf.c servconf.h]
1235      always parse kerberos options. ok djm@ markus@
1236    - jakob@cvs.openbsd.org 2003/05/15 02:27:15
1237      [dns.c]
1238      add missing freerrset
1239    - markus@cvs.openbsd.org 2003/05/15 03:08:29
1240      [cipher.c cipher-bf1.c cipher-aes.c cipher-3des1.c]
1241      split out custom EVP ciphers
1242    - djm@cvs.openbsd.org 2003/05/15 03:10:52
1243      [ssh-keygen.c]
1244      avoid warning; ok jakob@
1245    - mouring@cvs.openbsd.org 2003/05/15 03:39:07
1246      [sftp-int.c]
1247      Make put/get (globed and nonglobed) code more consistant. OK djm@
1248    - mouring@cvs.openbsd.org 2003/05/15 03:43:59
1249      [sftp-int.c sftp.c]
1250      Teach ls how to display multiple column display and allow users 
1251      to return to single column format via 'ls -1'.  OK @djm
1252    - jakob@cvs.openbsd.org 2003/05/15 04:08:44
1253      [readconf.c servconf.c]
1254      disable kerberos when not supported. ok markus@
1255    - markus@cvs.openbsd.org 2003/05/15 04:08:41
1256      [ssh.1]
1257      ~B is ssh2 only
1258  - (djm) Always parse UsePAM
1259  - (djm) Configure glue for DNS support (code doesn't work in portable yet)
1260  - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
1261  - (djm) Tidy Makefile clean targets
1262  - (djm) Adapt README.dns for portable
1263  - (djm) Avoid uuencode.c warnings
1264  - (djm) Enable UsePAM when built --with-pam
1265  - (djm) Only build getrrsetbyname replacement when using --with-dns
1266  - (djm) Bug #529: sshd doesn't work correctly after SIGHUP (copy argv 
1267          correctly)
1268  - (djm) Bug #444: Wrong paths after reconfigure
1269  - (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK
1270
1271 20030514
1272  - (djm) Bug #117: Don't lie to PAM about username
1273  - (djm) RCSID sync w/ OpenBSD
1274  - (djm) OpenBSD CVS Sync
1275    - djm@cvs.openbsd.org 2003/04/09 12:00:37
1276      [readconf.c]
1277      strip trailing whitespace from config lines before parsing. 
1278      Fixes bz 528; ok markus@
1279    - markus@cvs.openbsd.org 2003/04/12 10:13:57
1280      [cipher.c]
1281      hide cipher details; ok djm@
1282    - markus@cvs.openbsd.org 2003/04/12 10:15:36
1283      [misc.c]
1284      debug->debug2
1285    - naddy@cvs.openbsd.org 2003/04/12 11:40:15
1286      [ssh.1]
1287      document -V switch, fix wording; ok markus@
1288    - markus@cvs.openbsd.org 2003/04/14 14:17:50
1289      [channels.c sshconnect.c sshd.c ssh-keyscan.c]
1290      avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTP
1291    - mouring@cvs.openbsd.org 2003/04/14 21:31:27
1292      [sftp-int.c]
1293      Missing globfree(&g) in process_put() spotted by Vince Brimhall
1294      <VBrimhall@novell.com>.  ok@ Theo
1295    - markus@cvs.openbsd.org 2003/04/16 14:35:27
1296      [auth.h]
1297      document struct Authctxt; with solar
1298    - deraadt@cvs.openbsd.org 2003/04/26 04:29:49
1299      [ssh-keyscan.c]
1300      -t in usage(); rogier@quaak.org
1301    - mouring@cvs.openbsd.org 2003/04/30 01:16:20
1302      [sshd.8 sshd_config.5]
1303      Escape ?, * and ! in .Ql for nroff compatibility.  OpenSSH Portable 
1304      Bug #550 and * escaping suggested by jmc@.
1305    - david@cvs.openbsd.org 2003/04/30 20:41:07
1306      [sshd.8]
1307      fix invalid .Pf macro usage introduced in previous commit
1308      ok jmc@ mouring@
1309    - markus@cvs.openbsd.org 2003/05/11 16:56:48
1310      [authfile.c ssh-keygen.c]
1311      change key_load_public to try to read a public from:
1312      rsa1 private or rsa1 public and ssh2 keys.
1313      this makes ssh-keygen -e fail for ssh1 keys more gracefully
1314      for example; report from itojun (netbsd pr 20550).
1315    - markus@cvs.openbsd.org 2003/05/11 20:30:25
1316      [channels.c clientloop.c serverloop.c session.c ssh.c]
1317      make channel_new() strdup the 'remote_name' (not the caller); ok theo
1318    - markus@cvs.openbsd.org 2003/05/12 16:55:37
1319      [sshconnect2.c]
1320      for pubkey authentication try the user keys in the following order:
1321         1. agent keys that are found in the config file
1322         2. other agent keys
1323         3. keys that are only listed in the config file
1324      this helps when an agent has many keys, where the server might
1325      close the connection before the correct key is used. report & ok pb@
1326    - markus@cvs.openbsd.org 2003/05/12 18:35:18
1327      [ssh-keyscan.1]
1328      typo: DSA keys are of type ssh-dss; Brian Poole
1329    - markus@cvs.openbsd.org 2003/05/14 00:52:59
1330      [ssh2.h]
1331      ranges for per auth method messages
1332    - djm@cvs.openbsd.org 2003/05/14 01:00:44
1333      [sftp.1]
1334      emphasise the batchmode functionality and make reference to pubkey auth,
1335      both of which are FAQs; ok markus@
1336    - markus@cvs.openbsd.org 2003/05/14 02:15:47
1337      [auth2.c monitor.c sshconnect2.c auth2-krb5.c]
1338      implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@
1339      server interops with commercial client; ok jakob@ djm@
1340    - jmc@cvs.openbsd.org 2003/05/14 08:25:39
1341      [sftp.1]
1342      - better formatting in SYNOPSIS
1343      - whitespace at EOL
1344      ok djm@
1345    - markus@cvs.openbsd.org 2003/05/14 08:57:49
1346      [monitor.c]
1347      http://bugzilla.mindrot.org/show_bug.cgi?id=560
1348      Privsep child continues to run after monitor killed.
1349      Pass monitor signals through to child; Darren Tucker
1350  - (djm) Make portable build with MIT krb5 (some issues remain)
1351  - (djm) Add new UsePAM configuration directive to allow runtime control
1352    over usage of PAM. This allows non-root use of sshd when built with
1353    --with-pam
1354  - (djm) Die screaming if start_pam() is called when UsePAM=no
1355  - (djm) Avoid KrbV leak for MIT Kerberos
1356  - (dtucker) Set ai_socktype and ai_protocol in fake-getaddrinfo.c. ok djm@
1357  - (djm) Bug #258: sscanf("[0-9]") -> sscanf("[0123456789]") for portability
1358
1359 20030512
1360  - (djm) Redhat spec: Don't install profile.d scripts when not 
1361    building with GNOME/GTK askpass (patch from bet@rahul.net)
1362
1363 20030510
1364  - (dtucker) Bug #318: Create ssh_prng_cmds.out during "make" rather than
1365    "make install".  Patch by roth@feep.net.
1366  - (dtucker) Bug #536: Test for and work around openpty/controlling tty
1367    problem on Linux (fixes "could not set controlling tty" errors).
1368  - (djm) Merge FreeBSD PAM code: replaces PAM password auth kludge with 
1369    proper challenge-response module
1370  - (djm) 2-clause license on loginrec.c, with permission from
1371    andre@ae-35.com
1372
1373 20030504
1374  - (dtucker) Bug #497: Move #include of bsd-cygwin_util.h to openbsd-compat.h.
1375    Patch from vinschen@redhat.com.
1376
1377 20030503
1378  - (dtucker) Add missing "void" to record_failed_login in bsd-cray.c.  Noted
1379    by wendyp@cray.com.
1380
1381 20030502
1382  - (dtucker) Bug #544: ignore invalid cmsg_type on Linux 2.0 kernels,
1383    privsep should now work.
1384  - (dtucker) Move handling of bad password authentications into a platform
1385    specific record_failed_login() function (affects AIX & Unicos). ok mouring@
1386
1387 20030429
1388  - (djm) Add back radix.o (used by AFS support), after it went missing from
1389    Makefile many moons ago
1390  - (djm) Apply "owl-always-auth" patch from Openwall/Solar Designer
1391  - (djm) Fix blibpath specification for AIX/gcc
1392  - (djm) Some systems have basename in -lgen. Fix from ayamura@ayamura.org
1393
1394 20030428
1395  - (bal) [defines.h progressmeter.c scp.c] Some more culling of non 64bit 
1396    hacked code.
1397
1398 20030427
1399  - (bal) Bug #541: return; was dropped by mistake.  Reported by 
1400    furrier@iglou.com
1401  - (bal) Since we don't support platforms lacking u_int_64.  We may
1402    as well clean out some of those evil #ifdefs
1403  - (bal) auth1.c minor resync while looking at the code.
1404  - (bal) auth2.c same changed as above.
1405
1406 20030409
1407  - (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report 
1408    from matth@eecs.berkeley.edu
1409  - (djm) Make the spec work with Redhat 9.0 (which renames sharutils)
1410  - (djm) OpenBSD CVS Sync
1411    - markus@cvs.openbsd.org 2003/04/02 09:48:07
1412      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1413      [readconf.h serverloop.c sshconnect2.c]
1414      reapply rekeying chage, tested by henning@, ok djm@
1415    - markus@cvs.openbsd.org 2003/04/02 14:36:26
1416      [ssh-keysign.c]
1417      potential segfault if KEY_UNSPEC; cjwatson@debian.org; bug #526
1418    - itojun@cvs.openbsd.org 2003/04/03 07:25:27
1419      [progressmeter.c]
1420      $OpenBSD$
1421    - itojun@cvs.openbsd.org 2003/04/03 10:17:35
1422      [progressmeter.c]
1423      remove $OpenBSD$, as other *.c does not have it.
1424    - markus@cvs.openbsd.org 2003/04/07 08:29:57
1425      [monitor_wrap.c]
1426      typo: get correct counters; introduced during rekeying change.
1427    - millert@cvs.openbsd.org 2003/04/07 21:58:05
1428      [progressmeter.c]
1429      The UCB copyright here is incorrect.  This code did not originate
1430      at UCB, it was written by Luke Mewburn.  Updated the copyright at
1431      the author's request.  markus@ OK
1432    - itojun@cvs.openbsd.org 2003/04/08 20:21:29
1433      [*.c *.h]
1434      rename log() into logit() to avoid name conflict.  markus ok, from
1435      netbsd
1436      - (djm) XXX - Performed locally using:
1437        "perl -p -i -e 's/(\s|^)log\(/$1logit\(/g' *.c *.h"
1438    - hin@cvs.openbsd.org 2003/04/09 08:23:52
1439      [servconf.c]
1440      Don't include <krb.h> when compiling with Kerberos 5 support
1441    - (djm) Fix up missing include for packet.c
1442    - (djm) Fix missed log => logit occurance (reference by function pointer)
1443
1444 20030402
1445  - (bal) if IP_TOS is not found or broken don't try to compile in
1446    packet_set_tos() function call.  bug #527
1447
1448 20030401
1449  - (djm) OpenBSD CVS Sync
1450    - jmc@cvs.openbsd.org 2003/03/28 10:11:43
1451      [scp.1 sftp.1 ssh.1 ssh-add.1 ssh-agent.1 ssh_config.5 sshd_config.5]
1452      [ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8]
1453      - killed whitespace
1454      - new sentence new line
1455      - .Bk for arguments
1456      ok markus@
1457    - markus@cvs.openbsd.org 2003/04/01 10:10:23
1458      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1459      [readconf.h serverloop.c sshconnect2.c]
1460      rekeying bugfixes and automatic rekeying:
1461      * both client and server rekey _automatically_
1462            (a) after 2^31 packets, because after 2^32 packets
1463                the sequence number for packets wraps
1464            (b) after 2^(blocksize_in_bits/4) blocks
1465        (see: draft-ietf-secsh-newmodes-00.txt)
1466        (a) and (b) are _enabled_ by default, and only disabled for known
1467        openssh versions, that don't support rekeying properly.
1468      * client option 'RekeyLimit'
1469      * do not reply to requests during rekeying
1470    - markus@cvs.openbsd.org 2003/04/01 10:22:21
1471      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1472      [readconf.h serverloop.c sshconnect2.c]
1473      backout rekeying changes (for 3.6.1)
1474    - markus@cvs.openbsd.org 2003/04/01 10:31:26
1475      [compat.c compat.h kex.c]
1476      bugfix causes stalled connections for ssh.com < 3.0; noticed by ho@; 
1477      tested by ho@ and myself
1478    - markus@cvs.openbsd.org 2003/04/01 10:56:46
1479      [version.h]
1480      3.6.1
1481  - (djm) Crank spec file versions
1482  - (djm) Release 3.6.1p1
1483
1484 20030326
1485  - (djm) OpenBSD CVS Sync
1486    - deraadt@cvs.openbsd.org 2003/03/26 04:02:51
1487      [sftp-server.c]
1488      one last fix to the tree: race fix broke stuff; pr 3169; 
1489      srp@srparish.net, help from djm
1490
1491 20030325
1492  - (djm) Fix getpeerid support for 64 bit BE systems. From 
1493     Arnd Bergmann <arndb@de.ibm.com>
1494
1495 20030324
1496  - (djm) OpenBSD CVS Sync
1497    - markus@cvs.openbsd.org 2003/03/23 19:02:00
1498      [monitor.c]
1499      unbreak rekeying for privsep; ok millert@
1500  - Release 3.6p1
1501  - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1502    Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1503
1504 $Id$
This page took 3.607571 seconds and 3 git commands to generate.