]> andersk Git - openssh.git/blob - ChangeLog
- (bal) [contrib/README] Removed "mdoc2man.pl" reference and added
[openssh.git] / ChangeLog
1 20040623
2  - (dtucker) [auth1.c] Ensure do_pam_account is called for Protocol 1
3    connections with empty passwords.  Patch from davidwu at nbttech.com,
4    ok djm@
5  - (dtucker) OpenBSD CVS Sync
6    - dtucker@cvs.openbsd.org 2004/06/22 22:42:02
7      [regress/envpass.sh]
8      Add quoting for test -z; ok markus@
9    - dtucker@cvs.openbsd.org 2004/06/22 22:45:52
10      [regress/test-exec.sh]
11      Add TEST_SSH_SSHD_CONFOPTS and TEST_SSH_SSH_CONFOPTS to allow adding
12      arbitary options to sshd_config and ssh_config during tests.  ok markus@
13    - dtucker@cvs.openbsd.org 2004/06/22 22:55:56
14      [regress/dynamic-forward.sh regress/test-exec.sh]
15      Allow setting of port for regress from TEST_SSH_PORT variable; ok markus@
16  - (dtucker) [cipher.c] encrypt->do_encrypt inside SSH_OLD_EVP to match
17    -Wshadow change.
18  - (bal) [Makefile.in] Remove opensshd.init on 'make distclean'
19  - (dtucker) [auth.c openbsd-compat/port-aix.c openbsd-compat/port-aix.h]
20    Move loginrestrictions test to port-aix.c, replace with a generic hook.
21  - (tim) [regress/try-ciphers.sh] "if ! some_command" is not portable.
22  - (bal) [contrib/README] Removed "mdoc2man.pl" reference and added
23    reference to "findssl.sh"
24
25 20040622
26  - (dtucker) OpenBSD CVS Sync
27    - djm@cvs.openbsd.org 2004/06/20 17:36:59
28      [ssh.c]
29      filter passed env vars at slave in connection sharing case; ok markus@
30    - djm@cvs.openbsd.org 2004/06/20 18:53:39
31      [sftp.c]
32      make "ls -l" listings print user/group names, add "ls -n" to show uid/gid
33      (like /bin/ls); idea & ok markus@
34    - djm@cvs.openbsd.org 2004/06/20 19:28:12
35      [sftp.1]
36      mention new -n flag
37    - avsm@cvs.openbsd.org 2004/06/21 17:36:31
38      [auth-rsa.c auth2-gss.c auth2-pubkey.c authfile.c canohost.c channels.c
39      cipher.c dns.c kex.c monitor.c monitor_fdpass.c monitor_wrap.c
40      monitor_wrap.h nchan.c packet.c progressmeter.c scp.c sftp-server.c sftp.c
41      ssh-gss.h ssh-keygen.c ssh.c sshconnect.c sshconnect1.c sshlogin.c
42      sshpty.c]
43      make ssh -Wshadow clean, no functional changes
44      markus@ ok
45    - djm@cvs.openbsd.org 2004/06/21 17:53:03
46      [session.c]
47      fix fd leak for multiple subsystem connections; with markus@
48    - djm@cvs.openbsd.org 2004/06/21 22:02:58
49      [log.h]
50      mark fatal and cleanup exit as __dead; ok markus@
51    - djm@cvs.openbsd.org 2004/06/21 22:04:50
52      [sftp.c]
53      introduce sorting for ls, same options as /bin/ls; ok markus@
54    - djm@cvs.openbsd.org 2004/06/21 22:30:45
55      [sftp.c]
56      prefix ls option flags with LS_
57    - djm@cvs.openbsd.org 2004/06/21 22:41:31
58      [sftp.1]
59      document sort options
60    - djm@cvs.openbsd.org 2004/06/22 01:16:39
61      [sftp.c]
62      don't show .files by default in ls, add -a option to turn them back on;
63      ok markus
64    - markus@cvs.openbsd.org 2004/06/22 03:12:13
65      [regress/envpass.sh regress/multiplex.sh]
66      more portable env passing tests
67    - dtucker@cvs.openbsd.org 2004/06/22 05:05:45
68      [monitor.c monitor_wrap.c]
69      Change login->username, will prevent -Wshadow errors in Portable;
70      ok markus@
71  - (dtucker) [monitor.c] Fix Portable-specific -Wshadow warnings on "socket".
72  - (dtucker) [defines.h] Define __dead if not already defined.
73  - (bal) [auth-passwd.c auth1.c] Clean up unused variables.
74
75 20040620
76  - (tim) [configure.ac Makefile.in] Only change TEST_SHELL on broken platforms.
77
78 20040619
79  - (dtucker) [auth-pam.c] Don't use PAM namespace for
80     pam_password_change_required either.
81  - (tim) [configure.ac buildpkg.sh.in contrib/solaris/README] move opensshd
82    init script to top level directory.  Add opensshd.init.in.
83    Remove contrib/solaris/buildpkg.sh, contrib/solaris/opensshd.in
84
85 20040618
86  - (djm) OpenBSD CVS Sync
87    - djm@cvs.openbsd.org 2004/06/17 14:52:48
88      [clientloop.c clientloop.h ssh.c]
89      support environment passing over shared connections; ok markus@
90    - djm@cvs.openbsd.org 2004/06/17 15:10:14
91      [clientloop.c misc.h readconf.c readpass.c ssh.c ssh_config.5]
92      Add option for confirmation (ControlMaster=ask) via ssh-askpass before 
93      opening shared connections; ok markus@
94    - djm@cvs.openbsd.org 2004/06/17 14:53:27
95      [regress/multiplex.sh]
96      shared connection env passing regress test
97  - (dtucker) [regress/README.regress] Add detail on how to run a single
98    test from the top-level Makefile.
99  - (dtucker) OpenBSD CVS Sync
100    - djm@cvs.openbsd.org 2004/06/17 23:56:57
101      [ssh.1 ssh.c]
102      sync usage() and SYNPOSIS with connection sharing changes
103    - dtucker@cvs.openbsd.org 2004/06/18 06:13:25
104      [sftp.c]
105      Use execvp instead of execv so sftp -S ssh works.  "makes sense" markus@
106    - dtucker@cvs.openbsd.org 2004/06/18 06:15:51
107      [multiplex.sh]
108      Use -S for scp/sftp to force the use of the ssh being tested.
109      ok djm@,markus@
110  - (djm) OpenBSD CVS Sync
111    - djm@cvs.openbsd.org 2004/06/18 10:40:19
112      [ssh.c]
113      delay signal handler setup until we have finished talking to the master.
114      allow interrupting of setup (e.g. if master is stuck); ok markus@
115    - markus@cvs.openbsd.org 2004/06/18 10:55:43
116      [ssh.1 ssh.c]
117      trim synopsis for -S, allow -S and -oControlMaster, -MM means 'ask';
118      ok djm
119    - djm@cvs.openbsd.org 2004/06/18 11:11:54
120      [channels.c clientloop.c]
121      Don't explode in clientloop when we receive a bogus channel id, but
122      also don't generate them to begin with; ok markus@
123
124 20040617
125  - (dtucker) [regress/scp.sh] diff -N is not portable (but needed for some
126    platforms), so test if diff understands it.  Pointed out by tim@, ok djm@
127  - (dtucker) OpenBSD CVS Sync regress/
128    - dtucker@cvs.openbsd.org 2004/06/17 05:51:59
129      [regress/multiplex.sh]
130      Remove datafile between and after tests, kill sshd rather than wait;
131      ok djm@
132    - dtucker@cvs.openbsd.org 2004/06/17 06:00:05
133      [regress/multiplex.sh]
134      Use DATA and COPY for test data rather than hard-coded paths; ok djm@
135    - dtucker@cvs.openbsd.org 2004/06/17 06:19:06
136      [regress/multiplex.sh]
137      Add small description of failing test to failure message; ok djm@
138  - (dtucker) [regress/multiplex.sh] add EXEEXT for those platforms that need
139    it.
140  - (dtucker) [regress/multiplex.sh] Increase sleep time to 120 sec (60 is not
141    enough for slow systems, especially if they don't have a kernel RNG).
142
143 20040616
144  - (dtucker) [openbsd-compat/port-aix.c] Expand whitespace -> tabs. No
145    code changes.
146  - (dtucker) OpenBSD CVS Sync regress/
147    - djm@cvs.openbsd.org 2004/04/27 09:47:30
148      [regress/Makefile regress/test-exec.sh, added regress/envpass.sh]
149      regress test for environment passing, SendEnv & AcceptEnv options;
150      ok markus@
151    - dtucker@cvs.openbsd.org 2004/06/13 13:51:02
152      [regress/Makefile regress/test-exec.sh, added regress/scp-ssh-wrapper.sh
153      regress/scp.sh]
154      Add scp regression test; with & ok markus@
155    - djm@cvs.openbsd.org 2004/06/13 15:04:08
156      [regress/Makefile regress/test-exec.sh, added regress/envpass.sh]
157      regress test for client multiplexing; ok markus@
158    - djm@cvs.openbsd.org 2004/06/13 15:16:54
159      [regress/test-exec.sh]
160      remove duplicate setting of $SCP; spotted by markus@
161    - dtucker@cvs.openbsd.org 2004/06/16 13:15:09
162      [regress/scp.sh]
163      Make scp -r tests use diff -rN not cmp (which won't do dirs.  ok markus@
164    - dtucker@cvs.openbsd.org 2004/06/16 13:16:40
165      [regress/multiplex.sh]
166      Silence multiplex sftp and scp tests.  ok markus@
167  - (dtucker) [regress/test-exec.sh]
168    Move Portable-only StrictModes to top of list to make syncs easier.
169  - (dtucker) [regress/README.regress]
170    Add $TEST_SHELL to readme.
171
172 20040615
173  - (djm) OpenBSD CVS Sync
174    - djm@cvs.openbsd.org 2004/05/26 08:59:57
175      [sftp.c]
176      exit -> _exit in forked child on error; from andrushock AT korovino.net
177    - markus@cvs.openbsd.org 2004/05/26 23:02:39
178      [channels.c]
179      missing freeaddrinfo; Andrey Matveev
180    - dtucker@cvs.openbsd.org 2004/05/27 00:50:13
181      [readconf.c]
182      Kill dead code after fatal(); ok djm@
183    - dtucker@cvs.openbsd.org 2004/06/01 14:20:45
184      [auth2-chall.c]
185      Remove redundant #include; ok markus@
186    - pedro@cvs.openbsd.org 2004/06/03 12:22:20
187      [sftp-client.c sftp.c]
188      initialize pointers, ok markus@
189    - djm@cvs.openbsd.org 2004/06/13 12:53:24
190      [dh.c dh.h kex.c kex.h kexdhc.c kexdhs.c monitor.c myproposal.h] 
191      [ssh-keyscan.c sshconnect2.c sshd.c]
192      implement diffie-hellman-group14-sha1 kex method (trivial extension to
193      existing diffie-hellman-group1-sha1); ok markus@
194    - dtucker@cvs.openbsd.org 2004/06/13 14:01:42
195      [ssh.1 ssh_config.5 sshd_config.5]
196      List supported ciphers in man pages, tidy up ssh -c;
197      "looks fine" jmc@, ok markus@
198    - djm@cvs.openbsd.org 2004/06/13 15:03:02
199      [channels.c channels.h clientloop.c clientloop.h includes.h readconf.c] 
200      [readconf.h scp.1 sftp.1 ssh.1 ssh.c ssh_config.5]
201      implement session multiplexing in the client (the server has supported 
202      this since 2.0); ok markus@
203    - djm@cvs.openbsd.org 2004/06/14 01:44:39
204      [channels.c clientloop.c misc.c misc.h packet.c ssh-agent.c ssh-keyscan.c]
205      [sshd.c]
206      set_nonblock() instead of fnctl(...,O_NONBLOCK); "looks sane" deraadt@
207    - djm@cvs.openbsd.org 2004/06/15 05:45:04
208      [clientloop.c]
209      missed one unset_nonblock; spotted by Tim Rice
210  - (djm) Fix Makefile.in for connection sharing changes
211  - (djm) [ssh.c] Use separate var for address length
212
213 20040603
214  - (dtucker) [auth-pam.c] Don't use pam_* namespace for sshd's PAM functions.
215    ok djm@
216
217 20040601
218  - (djm) [auth-pam.c] Add copyright for local changes
219
220 20040530
221  - (dtucker) [auth-pam.c auth-pam.h auth-passwd.c] Bug #874: Re-add PAM 
222    support for PasswordAuthentication=yes.  ok djm@
223  - (dtucker) [auth-pam.c] Use an invalid password for root if
224    PermitRootLogin != yes or the login is invalid, to prevent leaking
225    information.  Based on Openwall's owl-always-auth patch.  ok djm@
226  - (tim) [configure.ac Makefile.in] Add support for "make package" ok djm@
227  - (tim) [buildpkg.sh.in] New file. A more flexible version of
228    contrib/solaris/buildpkg.sh used for "make package".
229  - (tim) [buildpkg.sh.in] Last minute fix didn't make it in the .in file.
230
231 20040527
232  - (dtucker) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec
233    contrib/README CREDITS INSTALL] Bug #873: Correct URLs for x11-ssh-askpass
234    and Jim Knoble's email address , from Jim himself.
235
236 20040524
237  - (dtucker) OpenBSD CVS Sync
238    - djm@cvs.openbsd.org 2004/05/19 12:17:33
239      [sftp-client.c sftp.c]
240      gracefully abort transfers on receipt of SIGINT, also ignore SIGINT while
241      waiting for a command; ok markus@
242    - dtucker@cvs.openbsd.org 2004/05/20 10:58:05
243      [clientloop.c]
244      Trivial type fix 0 -> '\0'; ok markus@
245    - markus@cvs.openbsd.org 2004/05/21 08:43:03
246      [kex.h moduli.c tildexpand.c]
247      add prototypes for -Wall; ok djm
248    - djm@cvs.openbsd.org 2004/05/21 11:33:11
249      [channels.c channels.h clientloop.c serverloop.c ssh.1]
250      bz #756: add support for the cancel-tcpip-forward request for the server
251      and the client (through the ~C commandline). reported by z3p AT
252      twistedmatrix.com; ok markus@
253    - djm@cvs.openbsd.org 2004/05/22 06:32:12
254      [clientloop.c ssh.1]
255      use '-h' for help in ~C commandline instead of '-?'; inspired by jmc@
256    - jmc@cvs.openbsd.org 2004/05/22 16:01:05
257      [ssh.1]
258      kill whitespace at eol;
259    - dtucker@cvs.openbsd.org 2004/05/23 23:59:53
260      [auth.c auth.h auth1.c auth2.c servconf.c servconf.h sshd_config
261      sshd_config.5]
262      Add MaxAuthTries sshd config option; ok markus@
263  - (dtucker) [auth-pam.c] Bug #839: Ensure that pam authentication "thread"
264    is terminated if the privsep slave exits during keyboard-interactive
265    authentication.  ok djm@
266  - (dtucker) [sshd.c] Fix typo in comment.
267
268 20040523
269  - (djm) [sshd_config] Explain consequences of UsePAM=yes a little better in 
270    sshd_config; ok dtucker@
271  - (djm) [configure.ac] Warn if the system has no known way of figuring out 
272    which user is on the other end of a Unix domain socket; ok dtucker@
273  - (bal) [openbsd-compat/sys-queue.h] Reintroduce machinary to handle
274    old/broken/incomplete <sys/queue.h>.
275
276 20040513
277  - (dtucker) [configure.ac] Bug #867: Additional tests for res_query in
278    libresolv, fixes problems detecting it on some platforms
279    (eg Linux/x86-64).  From Kurt Roeckx via Debian, ok mouring@
280  - (dtucker) OpenBSD CVS Sync
281    - jmc@cvs.openbsd.org 2004/05/04 18:36:07
282      [scp.1]
283      SendEnv here too;
284    - jmc@cvs.openbsd.org 2004/05/06 11:24:23
285      [ssh_config.5]
286      typo from John Cosimano (PR 3770);
287    - deraadt@cvs.openbsd.org 2004/05/08 00:01:37
288      [auth.c clientloop.c misc.h servconf.c ssh.c sshpty.h sshtty.c
289      tildexpand.c], removed: sshtty.h tildexpand.h
290      make two tiny header files go away; djm ok
291    - djm@cvs.openbsd.org 2004/05/08 00:21:31
292      [clientloop.c misc.h readpass.c scard.c ssh-add.c ssh-agent.c ssh-keygen.c
293      sshconnect.c sshconnect1.c sshconnect2.c] removed: readpass.h
294      kill a tiny header; ok deraadt@
295    - djm@cvs.openbsd.org 2004/05/09 00:06:47
296      [moduli.c ssh-keygen.c] removed: moduli.h
297      zap another tiny header; ok deraadt@
298    - djm@cvs.openbsd.org 2004/05/09 01:19:28
299      [OVERVIEW auth-rsa.c auth1.c kex.c monitor.c session.c sshconnect1.c
300      sshd.c] removed: mpaux.c mpaux.h
301      kill some more tiny files; ok deraadt@
302    - djm@cvs.openbsd.org 2004/05/09 01:26:48
303      [kex.c]
304      don't overwrite what we are trying to compute
305    - deraadt@cvs.openbsd.org 2004/05/11 19:01:43
306      [auth.c auth2-none.c authfile.c channels.c monitor.c monitor_mm.c
307      packet.c packet.h progressmeter.c session.c openbsd-compat/xmmap.c]
308      improve some code lint did not like; djm millert ok
309    - dtucker@cvs.openbsd.org 2004/05/13 02:47:50
310      [ssh-agent.1]
311      Add examples to ssh-agent.1, bz#481 from Ralf Hauser; ok deraadt@
312  - (dtucker) [sshd.8] Bug #843: Add warning about PasswordAuthentication to
313    UsePAM section.  Parts from djm@ and jmc@.
314  - (dtucker) [auth-pam.c scard-opensc.c] Tinderbox says auth-pam.c uses
315    readpass.h, grep says scard-opensc.c does too.  Replace with misc.h.
316  - (dtucker) [openbsd-compat/getrrsetbyname.c] Check that HAVE_DECL_H_ERROR
317    is defined before using.
318  - (dtucker) [openbsd-compat/getrrsetbyname.c] Fix typo too: HAVE_DECL_H_ERROR
319    -> HAVE_DECL_H_ERRNO.
320
321 20040502
322  - (dtucker) OpenBSD CVS Sync
323    - djm@cvs.openbsd.org 2004/04/22 11:56:57
324      [moduli.c]
325      Bugzilla #850: Sophie Germain is the correct name of the French
326      mathematician, "Sophie Germaine" isn't; from Luc.Maisonobe@c-s.fr
327    - djm@cvs.openbsd.org 2004/04/27 09:46:37
328      [readconf.c readconf.h servconf.c servconf.h session.c session.h ssh.c
329      ssh_config.5 sshd_config.5]
330      bz #815: implement ability to pass specified environment variables from
331      the client to the server; ok markus@
332    - djm@cvs.openbsd.org 2004/04/28 05:17:10
333      [ssh_config.5 sshd_config.5]
334      manpage fixes in envpass stuff from Brian Poole (raj AT cerias.purdue.edu)
335    - jmc@cvs.openbsd.org 2004/04/28 07:02:56
336      [sshd_config.5]
337      remove unnecessary .Pp;
338    - jmc@cvs.openbsd.org 2004/04/28 07:13:42
339      [sftp.1 ssh.1]
340      add SendEnv to -o list;
341    - dtucker@cvs.openbsd.org 2004/05/02 11:54:31
342      [sshd.8]
343      Man page grammar fix (bz #858), from damerell at chiark.greenend.org.uk
344      via Debian; ok djm@
345    - dtucker@cvs.openbsd.org 2004/05/02 11:57:52
346      [ssh.1]
347      ConnectionTimeout -> ConnectTimeout, from m.a.ellis at ncl.ac.uk via
348      Debian.  ok djm@
349    - dtucker@cvs.openbsd.org 2004/05/02 23:02:17
350      [sftp.1]
351      ConnectionTimeout -> ConnectTimeout here too, pointed out by jmc@
352    - dtucker@cvs.openbsd.org 2004/05/02 23:17:51
353      [scp.1]
354      ConnectionTimeout -> ConnectTimeout for scp.1 too.
355
356 20040423
357  - (dtucker) [configure.ac openbsd-compat/getrrsetbyname.c] Declare h_errno
358    as extern int if not already declared.  Fixes compile errors on old SCO
359    platforms.  ok tim@
360  - (dtucker) [README.platform] List prereqs for building on Cygwin.
361
362 20040421
363  - (djm) Update config.guess and config.sub to autoconf-2.59 versions; ok tim@
364
365 20040420
366  - (djm) OpenBSD CVS Sync
367    - henning@cvs.openbsd.org 2004/04/08 16:08:21
368      [sshconnect2.c]
369      swap the last two parameters to TAILQ_FOREACH_REVERSE. matches what
370      FreeBSD and NetBSD do.
371      ok millert@ mcbride@ markus@ ho@, checked to not affect ports by naddy@
372    - djm@cvs.openbsd.org 2004/04/18 23:10:26
373      [readconf.c readconf.h ssh-keysign.c ssh.c]
374      perform strict ownership and modes checks for ~/.ssh/config files, 
375      as these can be used to execute arbitrary programs; ok markus@
376      NB. ssh will now exit when it detects a config with poor permissions
377    - djm@cvs.openbsd.org 2004/04/19 13:02:40
378      [ssh.1 ssh_config.5]
379      document strict permission checks on ~/.ssh/config; prompted by, 
380      with & ok jmc@
381    - jmc@cvs.openbsd.org 2004/04/19 16:12:14
382      [ssh_config.5]
383      kill whitespace at eol;
384    - djm@cvs.openbsd.org 2004/04/19 21:51:49
385      [ssh.c]
386      fix idiot typo that i introduced in my last commit;
387      spotted by cschneid AT cschneid.com
388  - (djm) [openbsd-compat/sys-queue.h] Sync with OpenBSD, needed for 
389    above change
390  - (djm) [configure.ac] Check whether libroken is required when building 
391    with Heimdal
392
393 20040419
394  - (dtucker) OpenBSD CVS Sync
395    - dtucker@cvs.openbsd.org 2004/02/29 22:04:45
396      [regress/login-timeout.sh]
397      Use sudo when restarting daemon during test.  ok markus@
398    - dtucker@cvs.openbsd.org 2004/03/08 10:17:12
399      [regress/login-timeout.sh]
400      Missing OBJ, from tim@.  ok markus@ (Already fixed, ID sync only)
401    - djm@cvs.openbsd.org 2004/03/30 12:41:56
402      [sftp-client.c]
403      sync comment with reality
404    - djm@cvs.openbsd.org 2004/03/31 21:58:47
405      [canohost.c]
406      don't skip ip options check when UseDNS=no; ok markus@ (ID sync only)
407    - markus@cvs.openbsd.org 2004/04/01 12:19:57
408      [scp.c]
409      limit trust between local and remote rcp/scp process,
410      noticed by lcamtuf; ok deraadt@, djm@
411
412 20040418
413  - (dtucker) [auth-pam.c] Log username and source host for failed PAM
414    authentication attempts.  With & ok djm@
415  - (djm) [openbsd-compat/bsd-cygwin_util.c] Recent versions of Cygwin allow
416    change of user context without a password, so relax auth method 
417    restrictions; from vinschen AT redhat.com; ok dtucker@
418
419 20040416
420  - (dtucker) [regress/sftp-cmds.sh] Skip quoting test on Cygwin, since
421    FAT/NTFS does not permit quotes in filenames.  From vinschen at redhat.com
422  - (djm) [auth-krb5.c auth.h session.c] Explicitly refer to Kerberos ccache 
423    file using FILE: method, fixes problems on Mac OSX.
424    Patch from simon@sxw.org.uk; ok dtucker@
425  - (tim) [configure.ac] Set SETEUID_BREAKS_SETUID, BROKEN_SETREUID and
426    BROKEN_SETREGID for SCO OpenServer 3
427
428 20040412
429  - (dtucker) [sshd_config.5] Add PermitRootLogin without-password warning
430    from bug #701 (text from jfh at cise.ufl.edu).
431  - (dtucker) [acconfig.h configure.ac defines.h] Bug #673: check for 4-arg
432    skeychallenge(), eg on NetBSD.  ok mouring@
433  - (dtucker) [auth-skey.c defines.h monitor.c] Make skeychallenge explicitly
434    4-arg, with compatibility for 3-arg versions.  From djm@, ok me.
435  - (djm) [configure.ac] Fix detection of libwrap on OpenBSD; ok dtucker@
436
437 20040408
438  - (dtucker) [loginrec.c] Use UT_LINESIZE if available, prevents truncating
439    pty name on Linux 2.6.x systems.  Patch from jpe at eisenmenger.org.
440  - (bal) [monitor.c monitor_wrap.c] Second try.  Put the zlib.h headers
441    back and #undef TARGET_OS_MAC instead.  (Bug report pending with Apple)
442  - (dtucker) [defines.h loginrec.c] Define UT_LINESIZE if not defined and
443    simplify loginrec.c.  ok tim@
444  - (bal) [monitor.c monitor_wrap.c] Ok.. Last time.  Promise.  Tim suggested
445    limiting scope and dtucker@ agreed.
446
447 20040407
448  - (dtucker) [session.c] Flush stdout after displaying loginmsg.  From
449    f_mohr at yahoo.de.
450  - (bal) [acconfig.h auth-krb5.c configure.ac gss-serv-krb5.c] Check to see
451    if Krb5 library exports krb5_init_etc() since some OSes (like MacOS/X)
452    are starting to restrict it as internal since it is not needed by
453    developers any more. (Patch based on Apple tree)
454  - (bal) [monitor.c monitor_wrap.c] monitor_wrap.c] moved zlib.h higher since 
455    krb5 on MacOS/X conflicts.  There may be a better solution, but this will 
456    work for now.
457
458 20040406
459  - (dtucker) [acconfig.h configure.ac defines.h] Bug #820: don't use
460    updwtmpx() on IRIX since it seems to clobber utmp.  ok djm@
461  - (dtucker) [configure.ac] Bug #816, #748 (again): Attempt to detect
462    broken getaddrinfo and friends on HP-UX.  ok djm@
463
464 20040330
465  - (dtucker) [configure.ac] Bug #811: Use "!" for LOCKED_PASSWD_PREFIX on
466    Linuxes, since that's what many use.  ok djm@
467  - (dtucker) [auth-pam.c] rename the_authctxt to sshpam_authctxt in auth-pam.c
468    to reduce potential confusion with the one in sshd.c.  ok djm@
469  - (djm) Bug #825: Fix ip_options_check() for mapped IPv4/IPv6 connection; 
470    with & ok dtucker@
471
472 20040327
473  - (dtucker) [session.c] Bug #817: Clear loginmsg after fork to prevent
474    duplicate login messages for mutli-session logins.  ok djm@
475
476 20040322
477  - (djm) [sshd.c] Drop supplemental groups if started as root
478  - (djm) OpenBSD CVS Sync
479    - markus@cvs.openbsd.org 2004/03/09 22:11:05
480      [ssh.c]
481      increase x11 cookie lifetime to 20 minutes; ok djm
482    - markus@cvs.openbsd.org 2004/03/10 09:45:06
483      [ssh.c]
484      trim usage to match ssh(1) and look more like unix. ok djm@
485    - markus@cvs.openbsd.org 2004/03/11 08:36:26
486      [sshd.c]
487      trim usage; ok deraadt
488    - markus@cvs.openbsd.org 2004/03/11 10:21:17
489      [ssh.c sshd.c]
490      ssh, sshd: sync version output, ok djm
491    - markus@cvs.openbsd.org 2004/03/20 10:40:59
492      [version.h]
493      3.8.1
494  - (djm) Crank RPM spec versions
495
496 20040311
497  - (djm) [configure.ac] Add standard license to configure.ac; ok ben, dtucker
498
499 20040310
500  - (dtucker) [openbsd-compat/fake-rfc2553.h] Bug #812: #undef getaddrinfo
501    before redefining it, silences warnings on Tru64.
502
503 20040308
504  - (dtucker) [sshd.c] Back out rev 1.270 as it caused problems on some
505    platforms (eg SCO, HP-UX) with logging in the wrong TZ.  ok djm@
506  - (dtucker) [configure.ac sshd.c openbsd-compat/bsd-misc.h
507    openbsd-compat/setenv.c] Unset KRB5CCNAME on AIX to prevent it from being
508    inherited by the child.  ok djm@
509  - (dtucker) [auth-pam.c auth-pam.h auth1.c auth2.c monitor.c monitor_wrap.c
510    monitor_wrap.h] Bug #808: Ensure force_pwchange is correctly initialized
511    even if keyboard-interactive is not used by the client.  Prevents 
512    segfaults in some cases where the user's password is expired (note this 
513    is not considered a security exposure).  ok djm@
514  - (djm) OpenBSD CVS Sync
515    - markus@cvs.openbsd.org 2004/03/03 06:47:52
516      [sshd.c]
517      change proctiltle after accept(2); ok henning, deraadt, djm
518    - djm@cvs.openbsd.org 2004/03/03 09:30:42
519      [sftp-client.c]
520      Don't print duplicate messages when progressmeter is off
521      Spotted by job317 AT mailvault.com; ok markus@
522    - djm@cvs.openbsd.org 2004/03/03 09:31:20
523      [sftp.c]
524      Fix initialisation of progress meter; ok markus@
525    - markus@cvs.openbsd.org 2004/03/05 10:53:58
526      [readconf.c readconf.h scp.1 sftp.1 ssh.1 ssh_config.5 sshconnect2.c]
527      add IdentitiesOnly; ok djm@, pb@
528    - djm@cvs.openbsd.org 2004/03/08 09:38:05
529      [ssh-keyscan.c]
530      explicitly initialise remote_major and remote_minor.
531      from cjwatson AT debian.org; ok markus@
532    - dtucker@cvs.openbsd.org 2004/03/08 10:18:57
533      [sshd_config.5]
534      Document KerberosGetAFSToken;  ok markus@
535  - (tim) [regress/README.regress] Document ssh-rand-helper issue. ok bal
536
537 20040307
538  - (tim) [regress/login-timeout.sh] fix building outside of source tree.
539
540 20040304
541  - (dtucker) [auth-pam.c] Don't try to export PAM when compiled with
542    -DUSE_POSIX_THREADS.  From antoine.verheijen at ualbert ca.  ok djm@
543  - (dtucker) [auth-pam.c] Reset signal status when starting pam auth thread,
544    prevent hanging during PAM keyboard-interactive authentications.  ok djm@
545  - (dtucker) [auth-passwd.c auth-sia.c auth-sia.h defines.h
546    openbsd-compat/xcrypt.c] Bug #802: Fix build error on Tru64 when
547    configured --with-osfsia.  ok djm@
548
549 20040303
550  - (djm) [configure.ac ssh-agent.c] Use prctl to prevent ptrace on ssh-agent
551    ok dtucker  
552
553 20040229
554  - (tim) [configure.ac] Put back bits mistakenly removed from Rev 1.188
555
556 20040229
557  - (dtucker) OpenBSD CVS Sync
558    - djm@cvs.openbsd.org 2004/02/25 00:22:45
559      [sshd.c]
560      typo in comment
561    - dtucker@cvs.openbsd.org 2004/02/27 22:42:47
562      [dh.c]
563      Prevent sshd from sending DH groups with a primitive generator of zero or
564      one, even if they are listed in /etc/moduli.  ok markus@
565    - dtucker@cvs.openbsd.org 2004/02/27 22:44:56
566      [dh.c]
567      Make /etc/moduli line buffer big enough for 8kbit primes, in case anyone
568      ever uses one.  ok markus@
569    - dtucker@cvs.openbsd.org 2004/02/27 22:49:27
570      [dh.c]
571      Reset bit counter at the right time, fixes debug output in the case where
572      the DH group is rejected.  ok markus@
573    - dtucker@cvs.openbsd.org 2004/02/17 08:23:20
574      [regress/Makefile regress/login-timeout.sh]
575      Add regression test for LoginGraceTime; ok markus@
576    - markus@cvs.openbsd.org 2004/02/24 16:56:30
577      [regress/test-exec.sh]
578      allow arguments in ${TEST_SSH_XXX}
579    - markus@cvs.openbsd.org 2004/02/24 17:06:52
580      [regress/ssh-com-client.sh regress/ssh-com-keygen.sh
581      regress/ssh-com-sftp.sh regress/ssh-com.sh]
582      test against recent ssh.com releases
583    - dtucker@cvs.openbsd.org 2004/02/28 12:16:57
584      [regress/dynamic-forward.sh]
585      Make dynamic-forward understand nc's new output.  ok markus@
586    - dtucker@cvs.openbsd.org 2004/02/28 13:44:45
587      [regress/try-ciphers.sh]
588      Test acss too; ok markus@
589  - (dtucker) [regress/try-ciphers.sh] Skip acss if not compiled in (eg if we
590    built with openssl < 0.9.7)
591
592 20040226
593  - (bal) KNF our sshlogin.c even if the code looks nothing like upstream
594    code due to diversity issues.
595
596 20040225
597  - (djm) Trim ChangeLog 
598  - (djm) Don't specify path to PAM modules in Redhat sshd.pam; from Fedora
599
600 20040224
601  - (dtucker) OpenBSD CVS Sync
602    - markus@cvs.openbsd.org 2004/02/19 21:15:04
603      [sftp-server.c]
604      switch to new license.template
605    - markus@cvs.openbsd.org 2004/02/23 12:02:33
606      [sshd.c]
607      backout revision 1.279; set listen socket to non-block; ok henning.
608    - markus@cvs.openbsd.org 2004/02/23 15:12:46
609      [bufaux.c]
610      encode 0 correctly in buffer_put_bignum2; noted by Mikulas Patocka
611      and drop support for negative BNs; ok otto@
612    - markus@cvs.openbsd.org 2004/02/23 15:16:46
613      [version.h]
614      enter 3.8
615  - (dtucker) [configure.ac gss-serv-krb5.c ssh-gss.h] Define GSSAPI when found
616    with krb5-config, hunt down gssapi.h and friends.  Based partially on patch
617    from deengert at anl.gov.  ok djm@
618  - (djm) [groupaccess.c uidswap.c] Bug #787: Size group arrays at runtime 
619    using sysconf() if available Based on patches from 
620    holger AT van-lengerich.de and openssh_bugzilla AT hockin.org
621  - (dtucker) [uidswap.c] Minor KNF.  ok djm@
622  - (tim) [openbsd-compat/getrrsetbyname.c] Make gcc 2.7.2.3 happy.  ok djm@
623  - (djm) Crank RPM spec versions
624  - (dtucker) [README] Add pointer to release notes.  ok djm@
625  - (dtucker) {README.platform] Add platform-specific notes.
626  - (tim) [configure.ac] SCO3 needs -lcrypt_i for -lprot
627  - (djm) Release 3.8p1
628
629 20040223
630  - (dtucker) [session.c] Bug #789: Only make setcred call for !privsep in the
631    non-interactive path.  ok djm@
632
633 20040222
634  - (dtucker) [auth-shadow.c auth.c auth.h] Move shadow account expiry test
635    to auth-shadow.c, no functional change.  ok djm@
636  - (dtucker) [auth-shadow.c auth.h] Provide warnings of impending account or
637    password expiry.  ok djm@
638  - (dtucker) [auth-passwd.c] Only check password expiry once.  Prevents
639    multiple warnings if a wrong password is entered.
640  - (dtucker) [configure.ac] Apply krb5-config --libs fix to non-gssapi path
641    too.
642
643 20040220
644  - (djm) [openbsd-compat/setproctitle.c] fix comments; from grange@
645
646 20040218
647  - (dtucker) [configure.ac] Handle case where krb5-config --libs returns a
648    path with a "-" in it.  From Sergio.Gelato at astro.su.se.
649  - (djm) OpenBSD CVS Sync
650    - djm@cvs.openbsd.org 2004/02/17 07:17:29
651      [sftp-glob.c sftp.c]
652      Remove useless headers; ok deraadt@
653    - djm@cvs.openbsd.org 2004/02/17 11:03:08
654      [sftp.c]
655      sftp.c and sftp-int.c, together at last; ok markus@
656    - jmc@cvs.openbsd.org 2004/02/17 19:35:21
657      [sshd_config.5]
658      remove cruft left over from RhostsAuthentication removal;
659      ok markus@
660  - (djm) [log.c] Correct use of HAVE_OPENLOG_R
661  - (djm) [log.c] Tighten openlog_r tests
662
663 20040217
664  - (djm) Simplify the license on code I have written. No code changes.
665  - (djm) OpenBSD CVS Sync
666    - djm@cvs.openbsd.org 2004/02/17 05:39:51
667      [sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c]
668      [sftp-int.h sftp.c]
669      switch to license.template for code written by me (belated, I know...)
670  - (djm) Bug #698: Specify FILE: for KRB5CCNAME; patch from 
671    stadal@suse.cz and simon@sxw.org.uk
672  - (dtucker) [auth-pam.c] Tidy up PAM debugging.  ok djm@
673  - (dtucker) [auth-pam.c] Store output from pam_session and pam_setcred for
674    display after login.  Should fix problems like pam_motd not displaying
675    anything, noticed by cjwatson at debian.org.  ok djm@
676
677 20040212
678  - (tim) [Makefile.in regress/sftp-badcmds.sh regress/test-exec.sh]
679    Portablity fixes. Data sftp transfers needs to be world readable. Some
680    older shells hang on while loops when  doing sh -n some_script. OK dtucker@
681  - (tim) [configure.ac] Make sure -lcrypto is before -lsocket for sco3.
682    ok mouring@
683
684 20040211
685  - (dtucker) [auth-passwd.c auth-shadow.c] Only enable shadow expiry check
686    if HAS_SHADOW_EXPIRY is set.
687  - (tim) [configure.ac] Fix comment to match code changes in ver 1.117
688
689 20040210
690  - (dtucker) [auth-passwd.c auth.h openbsd-compat/port-aix.c
691    openbsd-compat/port-aix.h] Bug #14: Use do_pwchange to support AIX's
692    native password expiry.
693  - (dtucker) [LICENCE Makefile.in auth-passwd.c auth-shadow.c auth.c auth.h
694    defines.h] Bug #14: Use do_pwchange to support password expiry and force
695    change for platforms using /etc/shadow.  ok djm@
696  - (dtucker) [openbsd-compat/fake-rfc2553.h] Bug #563: Prepend ssh_ to compat
697    functions to avoid conflicts with Heimdal's libroken.  ok djm@
698  - (dtucker) [auth-pam.c auth-pam.h session.c] Bug #14: Use do_pwchange to
699    change expired PAM passwords for SSHv1 connections without privsep.
700    pam_chauthtok is still used when privsep is disabled.  ok djm@
701  - (dtucker) [openbsd-compat/port-aix.c openbsd-compat/port-aix.h] Move
702    include from port-aix.h to port-aix.c and remove unnecessary function
703    definition.  Fixes build errors on AIX.
704  - (dtucker) [configure.ac loginrec.c] Bug #464: Use updwtmpx on platforms
705    that support it.  from & ok mouring@
706  - (dtucker) [configure.ac] Bug #345: Do not disable utmp on HP-UX 10.x.
707    ok djm@
708
709 20040207
710  - (dtucker) OpenBSD CVS Sync
711    - dtucker@cvs.openbsd.org 2004/02/06 23:41:13
712      [cipher-ctr.c]
713      Use EVP_CIPHER_CTX_key_length for key length.  ok markus@
714      (This will fix builds with OpenSSL 0.9.5)
715  - (dtucker) [cipher.c] enable AES counter modes with OpenSSL 0.9.5.
716    ok djm@, markus@
717
718 20040206
719  - (dtucker) [acss.c acss.h] Fix $Id tags.
720  - (dtucker) [cipher-acss.c cipher.c] Enable acss only if building with
721    OpenSSL >= 0.9.7.  ok djm@
722  - (dtucker) [session.c] Bug #789: Do not call do_pam_setcred as a non-root
723    user, since some modules might fail due to lack of privilege.  ok djm@
724  - (dtucker) [configure.ac] Bug #748: Always define BROKEN_GETADDRINFO
725    for HP-UX 11.11.  If there are known-good configs where this is not
726    required, please report them.  ok djm@
727  - (dtucker) [sshd.c] Bug #757: Clear child's environment to prevent
728    accidentally inheriting from root's environment.  ok djm@
729  - (dtucker) [openbsd-compat/port-aix.c openbsd-compat/port-aix.h] Bug #796:
730    Restore previous authdb setting after auth calls.  Fixes problems with
731    setpcred failing on accounts that use AFS or NIS password registries.
732  - (dtucker) [configure.ac includes.h] Include <sys/stream.h> if present,
733    required on Solaris 2.5.1 for queue_t, which is used by <sys/ptms.h>.
734  - (dtucker) OpenBSD CVS Sync
735    - markus@cvs.openbsd.org 2004/01/30 09:48:57
736      [auth-passwd.c auth.h pathnames.h session.c]
737      support for password change; ok dtucker@
738      (set password-dead=1w in login.conf to use this).
739      In -Portable, this is currently only platforms using bsdauth.
740    - dtucker@cvs.openbsd.org 2004/02/05 05:37:17
741      [monitor.c sshd.c]
742      Pass SIGALRM through to privsep child if LoginGraceTime expires. ok markus@
743    - markus@cvs.openbsd.org 2004/02/05 15:33:33
744      [progressmeter.c]
745      fix ETA for > 4GB; bugzilla #791; ok henning@ deraadt@
746
747 20040129
748  - (dtucker) OpenBSD CVS Sync regress/
749    - dtucker@cvs.openbsd.org 2003/10/11 11:49:49
750      [Makefile banner.sh]
751      Test missing banner file, suppression of banner with ssh -q, check return
752      code from ssh.  ok markus@
753    - jmc@cvs.openbsd.org 2003/11/07 10:16:44
754      [ssh-com.sh]
755      adress -> address, and a few more; all from Jonathon Gray;
756    - djm@cvs.openbsd.org 2004/01/13 09:49:06
757      [sftp-batch.sh]
758  - (dtucker) [configure.ac] Add --without-zlib-version-check.  Feedback from
759    tim@, ok several
760  - (dtucker) [configure.ac openbsd-compat/bsd-cray.c openbsd-compat/bsd-cray.h]
761    Bug #775: Cray fixes from wendy at cray.com
762
763 20040128
764  - (dtucker) [regress/README.regress] Add tcpwrappers issue, noted by tim@
765  - (dtucker) [moduli] Import new moduli file from OpenBSD.
766
767 20040127
768  - (djm) OpenBSD CVS Sync
769    - hshoexer@cvs.openbsd.org 2004/01/23 17:06:03
770      [cipher.c]
771      enable acss for ssh
772      ok deraadt@ markus@
773    - mouring@cvs.openbsd.org 2004/01/23 17:57:48
774      [sftp-int.c]
775      Fix issue pointed out with ls not handling large directories 
776      with embeded paths correctly.  OK damien@
777    - hshoexer@cvs.openbsd.org 2004/01/23 19:26:33
778      [cipher.c]
779      rename acss@opebsd.org to acss@openssh.org
780      ok deraadt@
781    - djm@cvs.openbsd.org 2004/01/25 03:49:09
782      [sshconnect.c]
783      reset nonblocking flag after ConnectTimeout > 0 connect; (bugzilla #785)
784      from jclonguet AT free.fr; ok millert@
785    - djm@cvs.openbsd.org 2004/01/27 10:08:10
786      [sftp.c]
787      reorder parsing so user:skey@host:file works (bugzilla #777)
788      patch from admorten AT umich.edu; ok markus@
789  - (djm) [acss.c acss.h cipher-acss.c] Portable support for ACSS 
790    if libcrypto lacks it
791
792 20040126
793  - (tim) Typo in regress/README.regress
794  - (tim) [regress/test-exec.sh] RhostsAuthentication is deprecated.
795  - (tim) [defines.h] Add defines for HFIXEDSZ and T_SIG
796  - (tim) [configure.ac includes.h] add <sys/ptms.h> for grantpt() and friends.
797  - (tim) [defines.h openbsd-compat/getrrsetbyname.h] Move defines for HFIXEDSZ
798    and T_SIG to getrrsetbyname.h
799
800 20040124
801  - (djm) Typo in openbsd-compat/bsd-openpty.c; from wendyp AT cray.com
802
803 20040123 
804  - (djm) Do pam_session processing for systems with HAVE_LOGIN_CAP; from 
805    ralf.hack AT pipex.net; ok dtucker@
806  - (djm) Bug #776: Update contrib/redhat/openssh.spec to dynamically detect
807    Kerberos location (and thus work with Fedora Core 1);
808    from jason AT devrandom.org
809  - (dtucker) [configure.ac] Bug #788: Test for zlib.h presence and for
810    zlib >= 1.1.4.  Partly from jbasney at ncsa.uiuc.edu.  ok djm@
811  - (dtucker) [contrib/cygwin/README] Document new ssh-host-config options.
812    Patch from vinschen at redhat.com.
813  - (dtucker) [acconfig.h configure.ac includes.h servconf.c session.c]
814    Change AFS symbol to USE_AFS to prevent namespace collisions, do not
815    include kafs.h unless necessary.  From deengert at anl.gov.
816  - (tim) [configure.ac] Remove hard coded -L/usr/local/lib and
817    -I/usr/local/include. Users can do LDFLAGS="-L/usr/local/lib" \
818    CPPFLAGS="-I/usr/local/include" ./configure if needed.
819
820 20040122
821  - (dtucker) [configure.ac] Use krb5-config where available for Kerberos/
822    GSSAPI detection, libs and includes.  ok djm@
823  - (dtucker) [session.c] Enable AFS support in conjunction with KRB5 not
824    just HEIMDAL.
825  - (tim) [contrib/solaris/buildpkg.sh] Allow for the possibility of
826    /usr/local being a symbolic link. Fixes problem reported by Henry Grebler.
827
828 20040121
829  - (djm) OpenBSD CVS Sync
830    - djm@cvs.openbsd.org 2004/01/13 09:25:05
831      [sftp-int.c sftp.1 sftp.c]
832      Tidy sftp batchmode handling, eliminate junk to stderr (bugzilla #754) and
833      enable use of "-b -" to accept batchfile from stdin; ok markus@
834    - jmc@cvs.openbsd.org 2004/01/13 12:17:33
835      [sftp.1]
836      remove unnecessary Ic's;
837      kill whitespace at EOL;
838      ok djm@
839    - markus@cvs.openbsd.org 2004/01/13 19:23:15
840      [compress.c session.c]
841      -Wall; ok henning
842    - markus@cvs.openbsd.org 2004/01/13 19:45:15
843      [compress.c]
844      cast for portability; millert@
845    - markus@cvs.openbsd.org 2004/01/19 09:24:21
846      [channels.c]
847      fake consumption for half closed channels since the peer is waiting for
848      window adjust messages; bugzilla #790 Matthew Dillon; test + ok dtucker@
849      reproduce with sh -c 'ulimit -f 10; ssh host -n od /bsd | cat > foo'
850    - markus@cvs.openbsd.org 2004/01/19 21:25:15
851      [auth2-hostbased.c auth2-pubkey.c serverloop.c ssh-keysign.c sshconnect2.c]
852      fix mem leaks; some fixes from Pete Flugstad; tested dtucker@
853    - djm@cvs.openbsd.org 2004/01/21 03:07:59
854      [sftp.c]
855      initialise infile in main, rather than statically - from portable
856    - deraadt@cvs.openbsd.org 2004/01/11 21:55:06
857      [sshpty.c]
858      for pty opening, only use the openpty() path.  the other stuff only needs
859      to be in openssh-p; markus ok
860  - (djm) [openbsd-compat/bsd-openpty.c] Rework old sshpty.c code into an
861    openpty() replacement
862
863 20040114
864  - (dtucker) [auth-pam.c] Have monitor die if PAM authentication thread exits
865    unexpectedly.  with & ok djm@
866  - (dtucker) [auth-pam.c] Reset signal handler in pthread_cancel too, add
867    test for case where cleanup has already run.
868  - (dtucker) [auth-pam.c] Add minor debugging.
869
870 20040113
871  - (dtucker) [auth-pam.c] Relocate struct pam_ctxt and prototypes.  No
872    functional changes.
873
874 20040108
875  - (dtucker) [auth-pam.c defines.h] Bug #783: move __unused to defines.h and
876    only define if not already.  From des at freebsd.org.
877  - (dtucker) [configure.ac] Remove extra (typo) comma.
878
879 20040105
880  - (dtucker) [contrib/ssh-copy-id] Bug #781: exit if ssh fails.  Patch from
881    cjwatson at debian.org.
882  - (dtucker) [acconfig.h configure.ac includes.h servconf.c session.c]
883    Only enable KerberosGetAFSToken if Heimdal's libkafs is found.  with jakob@
884
885 20040102
886  - (djm) OSX/Darwin needs BIND_8_COMPAT to build getrrsetbyname. Report from
887    jakob@
888  - (djm) Remove useless DNS support configure summary message. from jakob@
889  - (djm) OSX/Darwin put the PAM headers in a different place, detect this.
890    Report from jakob@
891
892 20031231
893  - (dtucker) OpenBSD CVS Sync
894    - djm@cvs.openbsd.org 2003/12/22 09:16:58
895      [moduli.c ssh-keygen.1 ssh-keygen.c]
896      tidy up moduli generation debugging, add -v (verbose/debug) option to
897      ssh-keygen; ok markus@
898    - markus@cvs.openbsd.org 2003/12/22 20:29:55
899      [cipher-3des1.c]
900      EVP_CIPHER_CTX_cleanup() for the des contexts; pruiksma@freesurf.fr
901    - jakob@cvs.openbsd.org 2003/12/23 16:12:10
902      [servconf.c servconf.h session.c sshd_config]
903      implement KerberosGetAFSToken server option. ok markus@, beck@
904    - millert@cvs.openbsd.org 2003/12/29 16:39:50
905      [sshd_config]
906      KeepAlive has been obsoleted, use TCPKeepAlive instead; markus@ OK
907    - dtucker@cvs.openbsd.org 2003/12/31 00:24:50
908      [auth2-passwd.c]
909      Ignore password change request during password auth (which we currently
910      don't support) and discard proposed new password.  corrections/ok markus@
911  - (dtucker) [configure.ac] Only test setresuid and setresgid if they exist.
912
913 20031219
914  - (dtucker) [defines.h] Bug #458: Define SIZE_T_MAX as UINT_MAX if we
915    typedef size_t ourselves.
916
917 20031218
918  - (dtucker) [configure.ac] Don't use setre[ug]id on DG-UX, from Tom Orban.
919  - (dtucker) [auth-pam.c] Do PAM chauthtok during SSH2 keyboard-interactive
920    authentication.  Partially fixes bug #423.  Feedback & ok djm@
921
922 20031217
923  - (djm) OpenBSD CVS Sync
924    - markus@cvs.openbsd.org 2003/12/09 15:28:43
925      [serverloop.c]
926      make ClientKeepAlive work for ssh -N, too (no login shell requested).
927      1) send a bogus channel request if we find a channel
928      2) send a bogus global request if we don't have a channel
929      ok + test beck@
930    - markus@cvs.openbsd.org 2003/12/09 17:29:04
931      [sshd.c]
932      fix -o and HUP; ok henning@
933    - markus@cvs.openbsd.org 2003/12/09 17:30:05
934      [ssh.c]
935      don't modify argv for ssh -o; similar to sshd.c 1.283
936    - markus@cvs.openbsd.org 2003/12/09 21:53:37
937      [readconf.c readconf.h scp.1 servconf.c servconf.h sftp.1 ssh.1]
938      [ssh_config.5 sshconnect.c sshd.c sshd_config.5]
939      rename keepalive to tcpkeepalive; the old name causes too much
940      confusion; ok djm, dtucker; with help from jmc@
941    - dtucker@cvs.openbsd.org 2003/12/09 23:45:32
942      [clientloop.c]
943      Clear exit code when ssh -N is terminated with a SIGTERM.  ok markus@
944    - markus@cvs.openbsd.org 2003/12/14 12:37:21
945      [ssh_config.5]
946      we don't support GSS KEX; from Simon Wilkinson
947    - markus@cvs.openbsd.org 2003/12/16 15:49:51
948      [clientloop.c clientloop.h readconf.c readconf.h scp.1 sftp.1 ssh.1]
949      [ssh.c ssh_config.5]
950      application layer keep alive (ServerAliveInterval ServerAliveCountMax)
951      for ssh(1), similar to the sshd(8) option; ok beck@; with help from
952      jmc and dtucker@
953    - markus@cvs.openbsd.org 2003/12/16 15:51:54
954      [dh.c]
955      use <= instead of < in dh_estimate; ok provos/hshoexer; 
956      do not return < DH_GRP_MIN
957  - (dtucker) [acconfig.h configure.ac uidswap.c] Bug #645: Check for
958    setres[ug]id() present but not implemented (eg some Linux/glibc
959    combinations).
960  - (bal) [openbsd-compat/bsd-misc.c] unset 'signal' defined if we are
961    using a real 'signal()' (Noticed by a NeXT Compile)
962
963 20031209
964  - (dtucker) OpenBSD CVS Sync
965    - matthieu@cvs.openbsd.org 2003/11/25 23:10:08
966      [ssh-add.1]
967      ssh-add doesn't need to be a descendant of ssh-agent. Ok markus@, jmc@.
968    - djm@cvs.openbsd.org 2003/11/26 21:44:29
969      [cipher-aes.c]
970      fix #ifdef before #define; ok markus@
971      (RCS ID sync only, Portable already had this)
972    - markus@cvs.openbsd.org 2003/12/02 12:15:10
973      [progressmeter.c]
974      improvments from andreas@:
975      * saner speed estimate for transfers that takes less than a second by
976        rounding the time to 1 second.
977      * when the transfer is finished calculate the actual total speed
978        rather than the current speed which is given during the transfer
979    - markus@cvs.openbsd.org 2003/12/02 17:01:15
980      [channels.c session.c ssh-agent.c ssh.h sshd.c]
981      use SSH_LISTEN_BACKLOG (=128) in listen(2).
982    - djm@cvs.openbsd.org 2003/12/07 06:34:18
983      [moduli.c]
984      remove unused debugging #define templates
985    - markus@cvs.openbsd.org 2003/12/08 11:00:47
986      [kexgexc.c]
987      print requested group size in debug; ok djm
988    - dtucker@cvs.openbsd.org 2003/12/09 13:52:55
989      [moduli.c]
990      Prevent ssh-keygen -T from outputting moduli with a generator of 0, since
991      they can't be used for Diffie-Hellman.  Assistance and ok djm@
992  - (dtucker) [ssh-keyscan.c] Sync RCSIDs, missed in SSH_SSFDMAX change below.
993
994 20031208
995  - (tim) [configure.ac] Bug 770. Fix --without-rpath.
996
997 20031123
998  - (djm) [canohost.c] Move IPv4inV6 mapped address normalisation to its own
999    function and call it unconditionally
1000  - (djm) OpenBSD CVS Sync
1001    - djm@cvs.openbsd.org 2003/11/23 23:17:34
1002      [ssh-keyscan.c]
1003      from portable - use sysconf to detect fd limit; ok markus@
1004      (tidy diff by adding SSH_SSFDMAX macro to defines.h)
1005    - djm@cvs.openbsd.org 2003/11/23 23:18:45
1006      [ssh-keygen.c]
1007      consistency PATH_MAX -> MAXPATHLEN; ok markus@
1008      (RCS ID sync only)
1009    - djm@cvs.openbsd.org 2003/11/23 23:21:21
1010      [scp.c]
1011      from portable: rename clashing variable limit-> limit_rate; ok markus@
1012      (RCS ID sync only)
1013    - dtucker@cvs.openbsd.org 2003/11/24 00:16:35
1014      [ssh.1 ssh.c]
1015      Make ssh -k mean GSSAPIDelegateCredentials=no. Suggestion & ok markus@
1016  - (djm) Annotate OpenBSD-derived files in openbsd-compat/ with original 
1017    source file path (in OpenBSD tree).
1018
1019 20031122
1020  - (dtucker) [channels.c] Make AIX write limit code clearer.  Suggested by djm@
1021  - (dtucker) [auth-passwd.c openbsd-compat/port-aix.c openbsd-compat/port-aix.h]
1022    Move AIX specific password authentication code to port-aix.c, call
1023    authenticate() until reenter flag is clear.
1024  - (dtucker) [auth-sia.c configure.ac] Tru64 update from cmadams at hiwaay.net.
1025    Use permanently_set_uid for SIA, only define DISABLE_FD_PASSING when SIA
1026    is enabled, rely on SIA to check for locked accounts if enabled.  ok djm@
1027  - (djm) [scp.c] Rename limitbw -> limit_rate to match upstreamed patch
1028  - (djm) [sftp-int.c] Remove duplicated code from bogus sync
1029  - (djm) [packet.c] Shuffle #ifdef to reduce conditionally compiled code
1030
1031 20031121
1032  - (djm) OpenBSD CVS Sync
1033    - markus@cvs.openbsd.org 2003/11/20 11:39:28
1034      [progressmeter.c]
1035      fix rounding errors; from andreas@
1036    - djm@cvs.openbsd.org 2003/11/21 11:57:03
1037      [everything]
1038      unexpand and delete whitespace at EOL; ok markus@
1039      (done locally and RCS IDs synced)
1040
1041 20031118
1042  - (djm) Fix early exit for root auth success when UsePAM=yes and 
1043    PermitRootLogin=no
1044  - (dtucker) [auth-pam.c] Convert chauthtok_conv into a generic tty_conv,
1045    and use it for do_pam_session.  Fixes problems like pam_motd not
1046    displaying anything.  ok djm@
1047  - (dtucker) [auth-pam.c] Only use pam_putenv if our platform has it. ok djm@
1048  - (djm) OpenBSD CVS Sync
1049    - dtucker@cvs.openbsd.org 2003/11/18 00:40:05
1050      [serverloop.c]
1051      Correct check for authctxt->valid.  ok djm@
1052    - djm@cvs.openbsd.org 2003/11/18 10:53:07
1053      [monitor.c]
1054      unbreak fake authloop for non-existent users (my screwup). Spotted and
1055      tested by dtucker@; ok markus@
1056
1057 20031117
1058  - (djm) OpenBSD CVS Sync
1059    - djm@cvs.openbsd.org 2003/11/03 09:03:37
1060      [auth-chall.c]
1061      make this a little more idiot-proof; ok markus@
1062      (includes portable-specific changes)
1063    - jakob@cvs.openbsd.org 2003/11/03 09:09:41
1064      [sshconnect.c]
1065      move changed key warning into warn_changed_key(). ok markus@
1066    - jakob@cvs.openbsd.org 2003/11/03 09:37:32
1067      [sshconnect.c]
1068      do not free static type pointer in warn_changed_key()
1069    - djm@cvs.openbsd.org 2003/11/04 08:54:09
1070      [auth1.c auth2.c auth2-pubkey.c auth.h auth-krb5.c auth-passwd.c]
1071      [auth-rhosts.c auth-rh-rsa.c auth-rsa.c monitor.c serverloop.c]
1072      [session.c]
1073      standardise arguments to auth methods - they should all take authctxt.
1074      check authctxt->valid rather then pw != NULL; ok markus@
1075    - jakob@cvs.openbsd.org 2003/11/08 16:02:40
1076      [auth1.c]
1077      remove unused variable (pw). ok djm@
1078      (id sync only - still used in portable)
1079    - jmc@cvs.openbsd.org 2003/11/08 19:17:29
1080      [sftp-int.c]
1081      typos from Jonathon Gray;
1082    - jakob@cvs.openbsd.org 2003/11/10 16:23:41
1083      [bufaux.c bufaux.h cipher.c cipher.h hostfile.c hostfile.h key.c]
1084      [key.h sftp-common.c sftp-common.h sftp-server.c sshconnect.c sshd.c]
1085      [ssh-dss.c ssh-rsa.c uuencode.c uuencode.h]
1086      constify. ok markus@ & djm@
1087    - dtucker@cvs.openbsd.org 2003/11/12 10:12:15
1088      [scp.c]
1089      When called with -q, pass -q to ssh; suppresses SSH2 banner.  ok markus@
1090    - jakob@cvs.openbsd.org 2003/11/12 16:39:58
1091      [dns.c dns.h readconf.c ssh_config.5 sshconnect.c]
1092      update SSHFP validation. ok markus@
1093    - jmc@cvs.openbsd.org 2003/11/12 20:14:51
1094      [ssh_config.5]
1095      make verb agree with subject, and kill some whitespace;
1096    - markus@cvs.openbsd.org 2003/11/14 13:19:09
1097      [sshconnect2.c]
1098      cleanup and minor fixes for the client code; from Simon Wilkinson
1099    - djm@cvs.openbsd.org 2003/11/17 09:45:39
1100      [msg.c msg.h sshconnect2.c ssh-keysign.c]
1101      return error on msg send/receive failure (rather than fatal); ok markus@
1102    - markus@cvs.openbsd.org 2003/11/17 11:06:07
1103      [auth2-gss.c gss-genr.c gss-serv.c monitor.c monitor.h monitor_wrap.c]
1104      [monitor_wrap.h sshconnect2.c ssh-gss.h]
1105      replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; 
1106      test + ok jakob.
1107  - (djm) Bug #632: Don't call pam_end indirectly from within kbd-int
1108    conversation function
1109  - (djm) Export environment variables from authentication subprocess to 
1110    parent. Part of Bug #717
1111
1112 20031115
1113  - (dtucker) [regress/agent-ptrace.sh] Test for GDB output from Solaris and
1114    HP-UX, skip test on AIX.
1115
1116 20031113
1117  - (dtucker) [auth-pam.c] Append newlines to lines output by the
1118    pam_chauthtok_conv().
1119  - (dtucker) [README ssh-host-config ssh-user-config Makefile] (All
1120    contrib/cygwin).  Major update from vinschen at redhat.com.
1121    - Makefile provides a `cygwin-postinstall' target to run right after
1122      `make install'.
1123    - Better support for Windows 2003 Server.
1124    - Try to get permissions as correct as possible.
1125    - New command line options to allow full automated host configuration.
1126    - Create configs from skeletons in /etc/defaults/etc.
1127    - Use /bin/bash, allows reading user input with readline support.
1128    - Remove really old configs from /usr/local.
1129  - (dtucker) [auth-pam.c] Add newline to accumulated PAM_TEXT_INFO and
1130    PAM_ERROR_MSG messages.
1131
1132 20031106
1133  - (djm) Clarify UsePAM consequences a little more
1134
1135 20031103
1136  - (dtucker) [contrib/cygwin/ssh-host-config] Ensure entries in /etc/services
1137    are created correctly with CRLF line terminations.  Patch from vinschen at
1138    redhat.com.
1139  - (dtucker) OpenBSD CVS Sync
1140    - markus@cvs.openbsd.org 2003/10/15 09:48:45
1141      [monitor_wrap.c]
1142      check pmonitor != NULL
1143    - markus@cvs.openbsd.org 2003/10/21 09:50:06
1144      [auth2-gss.c]
1145      make sure the doid is larger than 2
1146    - avsm@cvs.openbsd.org 2003/10/26 16:57:43
1147      [sshconnect2.c]
1148      rename 'supported' static var in userauth_gssapi() to 'gss_supported'
1149      to avoid shadowing the global version.  markus@ ok
1150    - markus@cvs.openbsd.org 2003/10/28 09:08:06
1151      [misc.c]
1152      error->debug for getsockopt+TCP_NODELAY; several requests
1153    - markus@cvs.openbsd.org 2003/11/02 11:01:03
1154      [auth2-gss.c compat.c compat.h sshconnect2.c]
1155      remove support for SSH_BUG_GSSAPI_BER; simon@sxw.org.uk
1156  - (dtucker) [regress/agent-ptrace.sh] Use numeric uid and gid.
1157
1158 20031021
1159  - (dtucker) [INSTALL] Some system crypt() functions support MD5 passwords
1160    directly.  Noted by Darren.Moffat at sun.com.
1161  - (dtucker) [regress/agent-ptrace.sh] Skip agent-test unless SUDO is set,
1162    make agent setgid during test.
1163
1164 20031017
1165  - (dtucker) [INSTALL] Note that --with-md5 is now required on platforms with
1166    MD5 passwords even if PAM support is enabled.  From steev at detritus.net.
1167
1168 20031015
1169  - (dtucker) OpenBSD CVS Sync
1170    - jmc@cvs.openbsd.org 2003/10/08 08:27:36
1171      [scp.1 scp.c sftp-server.8 sftp.1 sftp.c ssh.1 sshd.8]
1172      scp and sftp: add options list and sort options. options list requested
1173      by deraadt@
1174      sshd: use same format as ssh
1175      ssh: remove wrong option from list
1176      sftp-server: Subsystem is documented in ssh_config(5), not sshd(8)
1177      ok deraadt@ markus@
1178    - markus@cvs.openbsd.org 2003/10/08 15:21:24
1179      [readconf.c ssh_config.5]
1180      default GSS API to no in client, too; ok jakob, deraadt@
1181    - markus@cvs.openbsd.org 2003/10/11 08:24:08
1182      [readconf.c readconf.h ssh.1 ssh.c ssh_config.5]
1183      remote x11 clients are now untrusted by default, uses xauth(8) to generate
1184      untrusted cookies; ForwardX11Trusted=yes restores old behaviour.
1185      ok deraadt; feedback and ok djm/fries
1186    - markus@cvs.openbsd.org 2003/10/11 08:26:43
1187      [sshconnect2.c]
1188      search keys in reverse order; fixes #684
1189    - markus@cvs.openbsd.org 2003/10/11 11:36:23
1190      [monitor_wrap.c]
1191      return NULL for missing banner; ok djm@
1192    - jmc@cvs.openbsd.org 2003/10/12 13:12:13
1193      [ssh_config.5]
1194      note that EnableSSHKeySign should be in the non-hostspecific section;
1195      remove unnecessary .Pp;
1196      ok markus@
1197    - markus@cvs.openbsd.org 2003/10/13 08:22:25
1198      [scp.1 sftp.1]
1199      don't refer to options related to forwarding; ok jmc@
1200    - jakob@cvs.openbsd.org 2003/10/14 19:42:10
1201      [dns.c dns.h readconf.c ssh-keygen.c sshconnect.c]
1202      include SSHFP lookup code (not enabled by default). ok markus@
1203    - jakob@cvs.openbsd.org 2003/10/14 19:43:23
1204      [README.dns]
1205      update
1206    - markus@cvs.openbsd.org 2003/10/14 19:54:39
1207      [session.c ssh-agent.c]
1208      10X for mkdtemp; djm@
1209  - (dtucker) [acconfig.h configure.ac dns.c openbsd-compat/getrrsetbyname.c
1210    openbsd-compat/getrrsetbyname.h] DNS fingerprint support is now always
1211    compiled in but disabled in config.
1212  - (dtucker) [auth.c] Check for disabled password expiry on HP-UX Trusted Mode.
1213  - (tim) [regress/banner.sh] portability fix.
1214
1215 20031009
1216  - (dtucker) [sshd_config.5] UsePAM defaults to "no".  ok djm@
1217
1218 20031008
1219  - (dtucker) OpenBSD CVS Sync
1220    - dtucker@cvs.openbsd.org 2003/10/07 01:47:27
1221      [sshconnect2.c]
1222      Don't use logit for banner, since it truncates to MSGBUFSIZ; bz #668 &
1223      #707.  ok markus@
1224    - djm@cvs.openbsd.org 2003/10/07 07:04:16
1225      [sftp-int.c]
1226      sftp quoting fix from admorten AT umich.edu; ok markus@
1227    - deraadt@cvs.openbsd.org 2003/10/07 21:58:28
1228      [sshconnect2.c]
1229      set ptr to NULL after free
1230    - dtucker@cvs.openbsd.org 2003/10/07 01:52:13
1231      [regress/Makefile regress/banner.sh]
1232      Test SSH2 banner.  ok markus@
1233    - djm@cvs.openbsd.org 2003/10/07 07:04:52
1234      [regress/sftp-cmds.sh]
1235      more sftp quoting regress tests; ok markus
1236
1237 20031007
1238  - (djm) Delete autom4te.cache after autoreconf
1239  - (dtucker) [auth-pam.c auth-pam.h session.c] Make PAM use the new static
1240    cleanup functions.  With & ok djm@
1241  - (dtucker) [contrib/redhat/openssh.spec] Bug #714: Now that UsePAM is a
1242    run-time switch, always build --with-md5-passwords.
1243  - (dtucker) [configure.ac openbsd-compat/Makefile.in openbsd-compat/strtoul.c]
1244    Bug #670: add strtoul() to openbsd-compat for platforms lacking it.  ok djm@
1245  - (dtucker) [configure.ac] Bug #715: Set BROKEN_SETREUID and BROKEN_SETREGID
1246    on Reliant Unix.  Patch from Robert.Dahlem at siemens.com.
1247  - (dtucker) [configure.ac] Bug #710: Check for dlsym() in libdl on
1248    Reliant Unix.  Based on patch from Robert.Dahlem at siemens.com.
1249
1250 20031003
1251  - (dtucker) OpenBSD CVS Sync
1252    - markus@cvs.openbsd.org 2003/10/02 10:41:59
1253      [sshd.c]
1254      print openssl version, too, several requests; ok henning/djm.
1255    - markus@cvs.openbsd.org 2003/10/02 08:26:53
1256      [ssh-gss.h]
1257      missing $OpenBSD:; dtucker
1258  - (tim) [contrib/caldera/openssh.spec] Remove obsolete --with-ipv4-default
1259    option.
1260
1261 20031002
1262  - (dtucker) OpenBSD CVS Sync
1263    - markus@cvs.openbsd.org 2003/09/23 20:17:11
1264      [Makefile.in auth1.c auth2.c auth.c auth.h auth-krb5.c canohost.c
1265      cleanup.c clientloop.c fatal.c gss-serv.c log.c log.h monitor.c monitor.h
1266      monitor_wrap.c monitor_wrap.h packet.c serverloop.c session.c session.h
1267      ssh-agent.c sshd.c]
1268      replace fatal_cleanup() and linked list of fatal callbacks with static
1269      cleanup_exit() function.  re-refine cleanup_exit() where appropriate,
1270      allocate sshd's authctxt eary to allow simpler cleanup in sshd.
1271      tested by many, ok deraadt@
1272    - markus@cvs.openbsd.org 2003/09/23 20:18:52
1273      [progressmeter.c]
1274      don't print trailing \0; bug #709; Robert.Dahlem@siemens.com
1275      ok millert/deraadt@
1276    - markus@cvs.openbsd.org 2003/09/23 20:41:11
1277      [channels.c channels.h clientloop.c]
1278      move client only agent code to clientloop.c
1279    - markus@cvs.openbsd.org 2003/09/26 08:19:29
1280      [sshd.c]
1281      no need to set the listen sockets to non-block; ok deraadt@
1282    - jmc@cvs.openbsd.org 2003/09/29 11:40:51
1283      [ssh.1]
1284      - add list of options to -o and .Xr ssh_config(5)
1285      - some other cleanup
1286      requested by deraadt@;
1287      ok deraadt@ markus@
1288    - markus@cvs.openbsd.org 2003/09/29 20:19:57
1289      [servconf.c sshd_config]
1290      GSSAPICleanupCreds -> GSSAPICleanupCredentials
1291  - (dtucker) [configure.ac] Don't set DISABLE_SHADOW when configuring
1292    --with-pam.  ok djm@
1293  - (dtucker) [ssh-gss.h] Prototype change missed in sync.
1294  - (dtucker) [session.c] Fix bus errors on some 64-bit Solaris configurations.
1295    Based on patches by Matthias Koeppe and Thomas Baden.  ok djm@
1296
1297 20030930
1298  - (bal) Fix issues in openbsd-compat/realpath.c
1299
1300 20030925
1301  - (dtucker) [configure.ac openbsd-compat/xcrypt.c] Bug #633: Remove
1302    DISABLE_SHADOW for HP-UX, use getspnam instead of getprpwnam.  Patch from
1303    michael_steffens at hp.com, ok djm@
1304  - (tim) [sshd_config] UsePAM defaults to no.
1305
1306 20030924
1307  - (djm) Update version.h and spec files for HEAD
1308  - (dtucker) [configure.ac] IRIX5 needs the same setre[ug]id defines as IRIX6.
1309
1310 20030923
1311  - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree
1312    builds.  Portability corrections from tim@.
1313  - (dtucker) [configure.ac] Bug #665: uid swapping issues on Mac OS X.
1314    Patch from max at quendi.de.
1315  - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi.
1316  - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64.
1317  - (dtucker) [configure.ac] Bug #693: uid swapping issues on NCR MP-RAS.
1318    Patch from david.haughton at ncr.com
1319  - (dtucker) [configure.ac] Bug #659: uid swapping issues on IRIX 6.
1320    Part of patch supplied by bugzilla-openssh at thewrittenword.com
1321  - (dtucker) [configure.ac openbsd-compat/fake-rfc2553.c
1322    openbsd-compat/fake-rfc2553.h] Bug #659: Test for and handle systems with
1323    where gai_strerror is defined as "const char *".  Part of patch supplied
1324    by bugzilla-openssh at thewrittenword.com
1325  - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config] Update
1326    ssh-host-config to match current defaults, bump README version.  Patch from
1327    vinschen at redhat.com.
1328  - (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the
1329    OS does not support permanently dropping privileges.  Patch from
1330    vinschen at redhat.com.
1331  - (dtucker) [openbsd-compat/port-aix.c] Use correct include for xmalloc.h,
1332    add canohost.h to stop warning.  Based on patch from openssh-unix-dev at
1333    thewrittenword.com
1334  - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or
1335    higher.
1336  - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/
1337  - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN.
1338    Report by distler AT golem ph utexas edu.
1339  - (dtucker) [contrib/aix/pam.conf] Include example pam.conf for AIX from
1340    article by genty at austin.ibm.com, included with the author's permission.
1341  - (dtucker) OpenBSD CVS Sync
1342    - markus@cvs.openbsd.org 2003/09/18 07:52:54
1343      [sshconnect.c]
1344      missing {}; bug #656; jclonguet at free.fr
1345    - markus@cvs.openbsd.org 2003/09/18 07:54:48
1346      [buffer.c]
1347      protect against double free; #660;  zardoz at users.sf.net
1348    - markus@cvs.openbsd.org 2003/09/18 07:56:05
1349      [authfile.c]
1350      missing  buffer_free(&encrypted); #662; zardoz at users.sf.net
1351    - markus@cvs.openbsd.org 2003/09/18 08:49:45
1352      [deattack.c misc.c session.c ssh-agent.c]
1353      more buffer allocation fixes; from Solar Designer; CAN-2003-0682;
1354      ok millert@
1355    - miod@cvs.openbsd.org 2003/09/18 13:02:21
1356      [authfd.c bufaux.c dh.c mac.c ssh-keygen.c]
1357      A few signedness fixes for harmless situations; markus@ ok
1358    - markus@cvs.openbsd.org 2003/09/19 09:02:02
1359      [packet.c]
1360      buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471
1361    - markus@cvs.openbsd.org 2003/09/19 09:03:00
1362      [buffer.c]
1363      sign fix in buffer_dump; Jedi/Sector One; pr 3473
1364    - markus@cvs.openbsd.org 2003/09/19 11:29:40
1365      [ssh-agent.c]
1366      provide a ssh-agent specific fatal() function; ok deraadt
1367    - markus@cvs.openbsd.org 2003/09/19 11:30:39
1368      [ssh-keyscan.c]
1369      avoid fatal_cleanup, just call exit(); ok deraadt
1370    - markus@cvs.openbsd.org 2003/09/19 11:31:33
1371      [channels.c]
1372      do not call channel_free_all on fatal; ok deraadt
1373    - markus@cvs.openbsd.org 2003/09/19 11:33:09
1374      [packet.c sshd.c]
1375      do not call packet_close on fatal; ok deraadt
1376    - markus@cvs.openbsd.org 2003/09/19 17:40:20
1377      [scp.c]
1378      error handling for remote-remote copy; #638; report Harald Koenig;
1379      ok millert, fgs, henning, deraadt
1380    - markus@cvs.openbsd.org 2003/09/19 17:43:35
1381      [clientloop.c sshtty.c sshtty.h]
1382      remove fatal callbacks from client code; ok deraadt
1383  - (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john
1384         on #unixhelp@efnet
1385  - (tim) [configure.ac] add --disable-etc-default-login option. ok djm
1386  - (djm) Sync with V_3_7 branch:
1387    - (djm) Fix SSH1 challenge kludge
1388    - (djm) Bug #671: Fix builds on OpenBSD
1389    - (djm) Bug #676: Fix PAM stack corruption
1390    - (djm) Fix bad free() in PAM code
1391    - (djm) Don't call pam_end before pam_init
1392    - (djm) Enable build with old OpenSSL again
1393    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1394    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1395
1396 $Id$
This page took 0.208608 seconds and 5 git commands to generate.