]> andersk Git - openssh.git/blob - ChangeLog
- stevesk@cvs.openbsd.org 2002/05/25 20:40:08
[openssh.git] / ChangeLog
1 20020620
2  - (bal) Fixed AIX environment handling, use setpcred() instead of existing
3    code.  (Bugzilla Bug 261)
4  - (bal) OpenBSD CVS Sync
5    - todd@cvs.openbsd.org 2002/06/14 21:35:00
6      [monitor_wrap.c]
7      spelling; from Brian Poole <raj@cerias.purdue.edu>
8    - markus@cvs.openbsd.org 2002/06/15 00:01:36
9      [authfd.c authfd.h ssh-add.c ssh-agent.c]
10      break agent key lifetime protocol and allow other contraints for key
11      usage.
12    - markus@cvs.openbsd.org 2002/06/15 00:07:38
13      [authfd.c authfd.h ssh-add.c ssh-agent.c]
14      fix stupid typo
15    - markus@cvs.openbsd.org 2002/06/15 01:27:48
16      [authfd.c authfd.h ssh-add.c ssh-agent.c]
17      remove the CONSTRAIN_IDENTITY messages and introduce a new
18      ADD_ID message with contraints instead. contraints can be
19      only added together with the private key.
20    - itojun@cvs.openbsd.org 2002/06/16 21:30:58
21      [ssh-keyscan.c]
22      use TAILQ_xx macro.  from lukem@netbsd.  markus ok
23    - deraadt@cvs.openbsd.org 2002/06/17 06:05:56
24      [scp.c]
25      make usage like man page
26    - deraadt@cvs.openbsd.org 2002/06/19 00:27:55
27      [auth-bsdauth.c auth-skey.c auth1.c auth2-chall.c auth2-none.c authfd.c
28       authfd.h monitor_wrap.c msg.c nchan.c radix.c readconf.c scp.c sftp.1
29       ssh-add.1 ssh-add.c ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh-keygen.c
30       ssh-keysign.c ssh.1 sshconnect.c sshconnect.h sshconnect2.c ttymodes.c
31       xmalloc.h]
32      KNF done automatically while reading....
33    - markus@cvs.openbsd.org 2002/06/19 18:01:00
34      [cipher.c monitor.c monitor_wrap.c packet.c packet.h]
35      make the monitor sync the transfer ssh1 session key;
36      transfer keycontext only for RC4 (this is still depends on EVP
37      implementation details and is broken).
38    - stevesk@cvs.openbsd.org 2002/06/20 19:56:07
39      [ssh.1 sshd.8]
40      move configuration file options from ssh.1/sshd.8 to
41      ssh_config.5/sshd_config.5; ok deraadt@ millert@
42    - stevesk@cvs.openbsd.org 2002/06/20 20:00:05
43      [scp.1 sftp.1]
44      ssh_config(5)
45    - stevesk@cvs.openbsd.org 2002/06/20 20:03:34
46      [ssh_config sshd_config]
47      refer to config file man page
48    - markus@cvs.openbsd.org 2002/06/20 23:05:56
49      [servconf.c servconf.h session.c sshd.c]
50      allow Compression=yes/no in sshd_config
51    - markus@cvs.openbsd.org 2002/06/20 23:37:12
52      [sshd_config]
53      add Compression
54    - stevesk@cvs.openbsd.org 2002/05/25 20:40:08
55      [LICENCE]
56      missed Per Allansson (auth2-chall.c)
57  - (bal) Cygwin special handling of empty passwords wrong.  Patch by
58    vinschen@redhat.com
59
60 20020613
61  - (bal) typo of setgroup for cygwin.  Patch by vinschen@redhat.com
62
63 20020612
64  - (bal) OpenBSD CVS Sync
65    - markus@cvs.openbsd.org 2002/06/11 23:03:54
66      [ssh.c]
67      remove unused cruft.
68    - markus@cvs.openbsd.org 2002/06/12 01:09:52
69      [ssh.c]
70      ssh_connect returns 0 on success
71  - (bal) Build noop setgroups() for cygwin to clean up code (For other
72    platforms without the setgroups() requirement, you MUST define
73    SETGROUPS_NOOP in the configure.ac) Based on patch by vinschen@redhat.com
74  - (bal) Some platforms don't have ONLCR (Notable Mint)
75
76 20020611
77  - (bal) ssh-agent.c RCSD fix (|unexpand already done)
78  - (bal) OpenBSD CVS Sync
79    - stevesk@cvs.openbsd.org 2002/06/09 22:15:15
80      [ssh.1]
81      update for no setuid root and ssh-keysign; ok deraadt@
82    - itojun@cvs.openbsd.org 2002/06/09 22:17:21
83      [sshconnect.c]
84      pass salen to sockaddr_ntop so that we are happy on linux/solaris
85    - stevesk@cvs.openbsd.org 2002/06/10 16:53:06
86      [auth-rsa.c ssh-rsa.c]
87      display minimum RSA modulus in error(); ok markus@
88    - stevesk@cvs.openbsd.org 2002/06/10 16:56:30
89      [ssh-keysign.8]
90      merge in stuff from my man page; ok markus@
91    - stevesk@cvs.openbsd.org 2002/06/10 17:36:23
92      [ssh-add.1 ssh-add.c]
93      use convtime() to parse and validate key lifetime.  can now
94      use '-t 2h' etc.  ok markus@ provos@
95    - stevesk@cvs.openbsd.org 2002/06/10 17:45:20
96      [readconf.c ssh.1]
97      change RhostsRSAAuthentication and RhostsAuthentication default to no
98      since ssh is no longer setuid root by default; ok markus@
99    - stevesk@cvs.openbsd.org 2002/06/10 21:21:10
100      [ssh_config]
101      update defaults for RhostsRSAAuthentication and RhostsAuthentication
102      here too (all options commented out with default value).
103    - markus@cvs.openbsd.org 2002/06/10 22:28:41
104      [channels.c channels.h session.c]
105      move creation of agent socket to session.c; no need for uidswapping
106      in channel.c.
107    - markus@cvs.openbsd.org 2002/06/11 04:14:26
108      [ssh.c sshconnect.c sshconnect.h]
109      no longer use uidswap.[ch] from the ssh client
110      run less code with euid==0 if ssh is installed setuid root
111      just switch the euid, don't switch the complete set of groups
112      (this is only needed by sshd). ok provos@
113    - mpech@cvs.openbsd.org 2002/06/11 05:46:20
114      [auth-krb4.c monitor.h serverloop.c session.c ssh-agent.c sshd.c]
115      pid_t cleanup. Markus need this now to keep hacking.
116      markus@, millert@ ok
117    - itojun@cvs.openbsd.org 2002/06/11 08:11:45
118      [canohost.c]
119      use "ntop" only after initialized
120  - (bal) Cygwin fix up from swap uid clean up in ssh.c patch by
121    vinschen@redhat.com
122
123 20020609
124  - (bal) OpenBSD CVS Sync
125    - markus@cvs.openbsd.org 2002/06/08 05:07:56
126      [ssh.c]
127      nuke ptrace comment
128    - markus@cvs.openbsd.org 2002/06/08 05:07:09
129      [ssh-keysign.c]
130      only accept 20 byte session ids
131    - markus@cvs.openbsd.org 2002/06/08 05:17:01
132      [readconf.c readconf.h ssh.1 ssh.c]
133      deprecate FallBackToRsh and UseRsh; patch from djm@
134    - markus@cvs.openbsd.org 2002/06/08 05:40:01
135      [readconf.c]
136      just warn about Deprecated options for now
137    - markus@cvs.openbsd.org 2002/06/08 05:41:18
138      [ssh_config]
139      remove FallBackToRsh/UseRsh
140    - markus@cvs.openbsd.org 2002/06/08 12:36:53
141      [scp.c]
142      remove FallBackToRsh
143    - markus@cvs.openbsd.org 2002/06/08 12:46:14
144      [readconf.c]
145      silently ignore deprecated options, since FallBackToRsh might be passed
146      by remote scp commands.
147   - itojun@cvs.openbsd.org 2002/06/08 21:15:27
148      [sshconnect.c]
149      always use getnameinfo.  (diag message only)
150    - markus@cvs.openbsd.org 2002/06/09 04:33:27
151      [sshconnect.c]
152      abort() - > fatal()
153  - (bal) RCSID tag updates on channels.c, clientloop.c, nchan.c,
154    sftp-client.c, ssh-agenet.c, ssh-keygen.c and connect.h (we did unexpand
155    independant of them)
156
157 20020607
158  - (bal) Removed --{enable/disable}-suid-ssh
159  - (bal) Missed __progname in ssh-keysign.c  patch by dtucker@zip.com.au
160  - (bal) use 'LOGIN_PROGRAM'  not '/usr/bin/login' in session.c patch by
161    Bertrand.Velle@apogee-com.fr
162
163 20020606
164  - (bal) OpenBSD CVS Sync
165    - markus@cvs.openbsd.org 2002/05/15 21:56:38
166      [servconf.c sshd.8 sshd_config]
167      re-enable privsep and disable setuid for post-3.2.2
168    - markus@cvs.openbsd.org 2002/05/16 22:02:50
169      [cipher.c kex.h mac.c]
170      fix warnings (openssl 0.9.7 requires const)
171    - stevesk@cvs.openbsd.org 2002/05/16 22:09:59
172      [session.c ssh.c]
173      don't limit xauth pathlen on client side and longer print length on
174      server when debug; ok markus@
175    - deraadt@cvs.openbsd.org 2002/05/19 20:54:52
176      [log.h]
177      extra commas in enum not 100% portable
178    - deraadt@cvs.openbsd.org 2002/05/22 23:18:25
179      [ssh.c sshd.c]
180      spelling; abishoff@arc.nasa.gov
181    - markus@cvs.openbsd.org 2002/05/23 19:24:30
182      [authfile.c authfile.h pathnames.h ssh.c sshconnect.c sshconnect.h 
183       sshconnect1.c sshconnect2.c ssh-keysign.8 ssh-keysign.c Makefile.in]
184      add /usr/libexec/ssh-keysign: a setuid helper program for hostbased 
185      authentication in protocol v2 (needs to access the hostkeys).
186    - markus@cvs.openbsd.org 2002/05/23 19:39:34
187      [ssh.c]
188      add comment about ssh-keysign
189    - markus@cvs.openbsd.org 2002/05/24 08:45:14
190      [sshconnect2.c]
191      stat ssh-keysign first, print error if stat fails;
192      some debug->error; fix comment
193    - markus@cvs.openbsd.org 2002/05/25 08:50:39
194      [sshconnect2.c]
195      execlp->execl; from stevesk
196    - markus@cvs.openbsd.org 2002/05/25 18:51:07
197      [auth.h auth2.c auth2-hostbased.c auth2-kbdint.c auth2-none.c
198       auth2-passwd.c auth2-pubkey.c Makefile.in]
199      split auth2.c into one file per method; ok provos@/deraadt@
200    - stevesk@cvs.openbsd.org 2002/05/26 20:35:10
201      [ssh.1]
202      sort ChallengeResponseAuthentication; ok markus@
203    - stevesk@cvs.openbsd.org 2002/05/28 16:45:27
204      [monitor_mm.c]
205      print strerror(errno) on mmap/munmap error; ok markus@
206    - stevesk@cvs.openbsd.org 2002/05/28 17:28:02
207      [uidswap.c]
208      format spec change/casts and some KNF; ok markus@
209    - stevesk@cvs.openbsd.org 2002/05/28 21:24:00
210      [uidswap.c]
211      use correct function name in fatal()
212    - stevesk@cvs.openbsd.org 2002/05/29 03:06:30
213      [ssh.1 sshd.8]
214      spelling
215    - markus@cvs.openbsd.org 2002/05/29 11:21:57
216      [sshd.c]
217      don't start if privsep is enabled and SSH_PRIVSEP_USER or
218      _PATH_PRIVSEP_CHROOT_DIR are missing; ok deraadt@
219    - markus@cvs.openbsd.org 2002/05/30 08:07:31
220      [cipher.c]
221      use rijndael/aes from libcrypto (openssl >= 0.9.7) instead of
222      our own implementation. allow use of AES hardware via libcrypto, 
223      ok deraadt@
224    - markus@cvs.openbsd.org 2002/05/31 10:30:33
225      [sshconnect2.c]
226      extent ssh-keysign protocol:
227      pass # of socket-fd to ssh-keysign, keysign verfies locally used
228      ip-address using this socket-fd, restricts fake local hostnames
229      to actual local hostnames; ok stevesk@
230    - markus@cvs.openbsd.org 2002/05/31 11:35:15
231      [auth.h auth2.c]
232      move Authmethod definitons to per-method file.
233    - markus@cvs.openbsd.org 2002/05/31 13:16:48
234      [key.c]
235      add comment:
236      key_verify returns 1 for a correct signature, 0 for an incorrect signature
237      and -1 on error.
238    - markus@cvs.openbsd.org 2002/05/31 13:20:50
239      [ssh-rsa.c]
240      pad received signature with leading zeros, because RSA_verify expects
241      a signature of RSA_size. the drafts says the signature is transmitted
242      unpadded (e.g. putty does not pad), reported by anakin@pobox.com
243    - deraadt@cvs.openbsd.org 2002/06/03 12:04:07
244      [ssh.h]
245      compatiblity -> compatibility
246      decriptor -> descriptor
247      authentciated -> authenticated
248      transmition -> transmission
249    - markus@cvs.openbsd.org 2002/06/04 19:42:35
250      [monitor.c]
251      only allow enabled authentication methods; ok provos@
252    - markus@cvs.openbsd.org 2002/06/04 19:53:40
253      [monitor.c]
254      save the session id (hash) for ssh2 (it will be passed with the 
255      initial sign request) and verify that this value is used during 
256      authentication; ok provos@
257    - markus@cvs.openbsd.org 2002/06/04 23:02:06
258      [packet.c]
259      remove __FUNCTION__
260    - markus@cvs.openbsd.org 2002/06/04 23:05:49
261      [cipher.c monitor.c monitor_fdpass.c monitor_mm.c monitor_wrap.c]
262      __FUNCTION__ -> __func__
263    - markus@cvs.openbsd.org 2002/06/05 16:08:07
264      [ssh-agent.1 ssh-agent.c]
265      '-a bind_address' binds the agent to user-specified unix-domain
266      socket instead of /tmp/ssh-XXXXXXXX/agent.<pid>; ok djm@ (some time ago).
267    - markus@cvs.openbsd.org 2002/06/05 16:08:07
268      [ssh-agent.1 ssh-agent.c]
269      '-a bind_address' binds the agent to user-specified unix-domain
270      socket instead of /tmp/ssh-XXXXXXXX/agent.<pid>; ok djm@ (some time ago).
271    - markus@cvs.openbsd.org 2002/06/05 16:48:54
272      [ssh-agent.c]
273      copy current request into an extra buffer and just flush this
274      request on errors, ok provos@
275    - markus@cvs.openbsd.org 2002/06/05 19:57:12
276      [authfd.c authfd.h ssh-add.1 ssh-add.c ssh-agent.c]
277      ssh-add -x for lock and -X for unlocking the agent.
278      todo: encrypt private keys with locked...
279    - markus@cvs.openbsd.org 2002/06/05 20:56:39
280      [ssh-add.c]
281      add -x/-X to usage
282    - markus@cvs.openbsd.org 2002/06/05 21:55:44
283      [authfd.c authfd.h ssh-add.1 ssh-add.c ssh-agent.c]
284      ssh-add -t life,  Set lifetime (in seconds) when adding identities; 
285      ok provos@
286    - stevesk@cvs.openbsd.org 2002/06/06 01:09:41
287      [monitor.h]
288      no trailing comma in enum; china@thewrittenword.com
289    - markus@cvs.openbsd.org 2002/06/06 17:12:44
290      [sftp-server.c]
291      discard remaining bytes of current request; ok provos@
292    - markus@cvs.openbsd.org 2002/06/06 17:30:11
293      [sftp-server.c]
294      use get_int() macro (hide iqueue)
295  - (bal) Missed msg.[ch] in merge.  Required for ssh-keysign.
296  - (bal) Forgot to add msg.c Makefile.in.
297  - (bal) monitor_mm.c typos.
298  - (bal) Refixed auth2.c.  It was never fully commited while spliting out
299    authentication to different files.
300  - (bal) ssh-keysign should build and install correctly now.  Phase two
301    would be to clean out any dead wood and disable ssh setuid on install.
302  - (bal) Reverse logic, use __func__ first since it's C99
303
304 20020604
305  - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
306    setsockopt from debug to error for now).
307
308 20020527
309  - (tim) [configure.ac.orig monitor_fdpass.c] Enahnce msghdr tests to address
310    build problem on Irix reported by Dave Love <d.love@dl.ac.uk>. Back out
311    last monitor_fdpass.c changes that are no longer needed with new tests.
312    Patch tested on Irix by Jan-Frode Myklebust <janfrode@parallab.uib.no>
313
314 20020522
315  - (djm) Fix spelling mistakes, spotted by Solar Designer i
316    <solar@openwall.com>
317  - Sync scard/ (not sure when it drifted)
318  - (djm) OpenBSD CVS Sync:
319    [auth.c]
320    Fix typo/thinko.  Pass in as to auth_approval(), not NULL.
321    Closes PR 2659.
322  - Crank version
323  - Crank RPM spec versions
324
325 20020521
326  - (stevesk) [sshd.c] bug 245; disable setsid() for now
327  - (stevesk) [sshd.c] #ifndef HAVE_CYGWIN for setgroups()
328
329 20020517
330  - (tim) [configure.ac] remove extra MD5_MSG="no" line.
331
332 20020515
333  - (bal) CVS ID fix up on auth-passwd.c
334  - (bal) OpenBSD CVS Sync
335    - deraadt@cvs.openbsd.org 2002/05/07 19:54:36
336      [ssh.h]
337      use ssh uid
338    - deraadt@cvs.openbsd.org 2002/05/08 21:06:34
339      [ssh.h]
340      move to sshd.sshd instead
341    - stevesk@cvs.openbsd.org 2002/05/11 20:24:48
342      [ssh.h]
343      typo in comment
344    - itojun@cvs.openbsd.org 2002/05/13 02:37:39
345      [auth-skey.c auth2.c]
346      less warnings.  skey_{respond,query} are public (in auth.h)
347    - markus@cvs.openbsd.org 2002/05/13 20:44:58
348      [auth-options.c auth.c auth.h]
349      move the packet_send_debug handling from auth-options.c to auth.c; 
350      ok provos@
351    - millert@cvs.openbsd.org 2002/05/13 15:53:19
352      [sshd.c]
353      Call setsid() in the child after sshd accepts the connection and forks.
354      This is needed for privsep which calls setlogin() when it changes uids.
355      Without this, there is a race where the login name of an existing 
356      connection, as returned by getlogin(), may be changed to the privsep 
357      user (sshd).  markus@ OK
358    - markus@cvs.openbsd.org 2002/05/13 21:26:49
359      [auth-rhosts.c]
360      handle debug messages during rhosts-rsa and hostbased authentication; 
361      ok provos@
362    - mouring@cvs.openbsd.org 2002/05/15 15:47:49
363      [kex.c monitor.c monitor_wrap.c sshd.c]
364      'monitor' variable clashes with at least one lame platform (NeXT).  i
365      Renamed to 'pmonitor'.  provos@
366    - deraadt@cvs.openbsd.org 2002/05/04 02:39:35
367      [servconf.c sshd.8 sshd_config]
368      enable privsep by default; provos ok
369    - millert@cvs.openbsd.org 2002/05/06 23:34:33
370      [ssh.1 sshd.8]
371      Kill/adjust r(login|exec)d? references now that those are no longer in
372      the tree.
373    - markus@cvs.openbsd.org 2002/05/15 21:02:53
374      [servconf.c sshd.8 sshd_config]
375      disable privsep and enable setuid for the 3.2.2 release
376  - (bal) Fixed up PAM case.  I think.
377  - (bal) Clarified openbsd-compat/*-cray.* Licence provided by Wendy
378  - (bal) OpenBSD CVS Sync
379    - markus@cvs.openbsd.org 2002/05/15 21:05:29
380      [version.h]
381      enter OpenSSH_3.2.2
382  - (bal) Caldara, Suse, and Redhat openssh.specs updated.
383
384 20020514
385  - (stevesk) [README.privsep] PAM+privsep works with Solaris 8.
386  - (tim) [sshpty.c] set tty modes when allocating old style bsd ptys to
387    match what newer style ptys have when allocated. Based on a patch by
388    Roger Cornelius <rac@tenzing.org>
389  - (tim) [README.privsep] UnixWare 7 and OpenUNIX 8 work.
390  - (tim) [README.privsep] remove reference to UnixWare 7 and OpenUNIX 8
391    from PAM-enabled pragraph. UnixWare has no PAM.
392  - (tim) [contrib/caldera/openssh.spec] update version.
393
394 20020513
395  - (stevesk) add initial README.privsep
396  - (stevesk) [configure.ac] nicer message: --with-privsep-user=user
397  - (djm) Add --with-superuser-path=xxx configure option to specify 
398    what $PATH the superuser receives.
399  - (djm) Bug #231: UsePrivilegeSeparation turns off Banner.
400  - (djm) Add --with-privsep-path configure option
401  - (djm) Update RPM spec file: different superuser path, use
402    /var/empty/sshd for privsep
403  - (djm) Bug #234: missing readpassphrase declaration and defines
404  - (djm) Add INSTALL warning about SSH protocol 1 blowfish w/ 
405     OpenSSL < 0.9.6
406
407 20020511
408  - (tim) [configure.ac] applied a rework of djm's OpenSSL search cleanup patch.
409    Now only searches system and /usr/local/ssl (OpenSSL's default install path)
410    Others must use --with-ssl-dir=....
411  - (tim) [monitor_fdpass.c] fix for systems that have both
412    HAVE_ACCRIGHTS_IN_MSGHDR and HAVE_CONTROL_IN_MSGHDR. Ie. sys/socket.h 
413    has #define msg_accrights msg_control
414
415 20020510
416  - (stevesk) [auth.c] Shadow account and expiration cleanup.  Now
417    check for root forced expire.  Still don't check for inactive.
418  - (djm) Rework RedHat RPM files. Based on spec from Nalin 
419    Dahyabhai <nalin@redhat.com> and patches from 
420    Pekka Savola <pekkas@netcore.fi>
421  - (djm) Try to drop supplemental groups at daemon startup. Patch from 
422    RedHat
423  - (bal) Back all the way out of auth-passwd.c changes.  Breaks too many
424    things that don't set pw->pw_passwd.
425
426 20020509
427  - (tim) [Makefile.in] Unbreak make -f Makefile.in distprep
428
429 20020508
430  - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is
431    called. Report by Chris Maxwell <maxwell@cs.dal.ca>
432  - (tim) [Makefile.in configure.ac] set SHELL variable in Makefile
433  - (djm) Disable PAM kbd-int auth if privsep is turned on (it doesn't work)
434
435 20020507
436  - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
437    Add truncate() emulation to address Bug 208
438
439 20020506
440  - (djm) Unbreak auth-passwd.c for PAM and SIA
441  - (djm) Unbreak PAM auth for protocol 1. Report from Pekka Savola 
442    <pekkas@netcore.fi>
443  - (djm) Don't reinitialise PAM credentials before we have started PAM.
444    Report from Pekka Savola <pekkas@netcore.fi>
445    
446 20020506
447  - (bal) Fixed auth-passwd.c to resolve PermitEmptyPassword issue
448  
449 20020501
450  - (djm) Import OpenBSD regression tests. Requires BSD make to run
451  - (djm) Fix readpassphase compilation for systems which have it
452
453 20020429
454  - (tim) [contrib/caldera/openssh.spec] update fixUP to reflect changes in
455    sshd_config.
456  - (tim) [contrib/cygwin/README] remove reference to regex.
457    patch from Corinna Vinschen <vinschen@redhat.com>
458
459 20020426
460  - (djm) Bug #137, #209: fix make problems for scard/Ssh.bin, do uudecode
461    during distprep only
462  - (djm) Disable PAM password expiry until a complete fix for bug #188 
463    exists
464  - (djm) Bug #180: Set ToS bits on IPv4-in-IPv6 mapped addresses. Based on 
465    patch from openssh@misc.tecq.org
466
467 20020425
468  - (stevesk) [defines.h] remove USE_TIMEVAL; unused
469  - (stevesk) [acconfig.h auth-passwd.c configure.ac sshd.c] HP-UX 10.26
470    support.  bug #184.  most from dcole@keysoftsys.com.
471
472 20020424
473  - (djm) OpenBSD CVS Sync
474    - markus@cvs.openbsd.org 2002/04/23 12:54:10
475      [version.h]
476      3.2.1
477    - djm@cvs.openbsd.org 2002/04/23 22:16:29
478      [sshd.c]
479      Improve error message; ok markus@ stevesk@
480
481 20020423
482  - (stevesk) [acconfig.h configure.ac session.c] LOGIN_NO_ENDOPT for HP-UX
483  - (stevesk) [acconfig.h] NEED_IN_SYSTM_H unused
484  - (markus) OpenBSD CVS Sync
485    - markus@cvs.openbsd.org 2002/04/23 12:58:26
486      [radix.c]
487      send complete ticket; semerad@ss1000.ms.mff.cuni.cz
488  - (djm) Trim ChangeLog to include only post-3.1 changes
489  - (djm) Update RPM spec file versions
490  - (djm) Redhat spec enables KrbV by default
491  - (djm) Applied OpenSC smartcard updates from Markus & 
492    Antti Tapaninen <aet@cc.hut.fi>
493  - (djm) Define BROKEN_REALPATH for AIX, patch from 
494    Antti Tapaninen <aet@cc.hut.fi>
495  - (djm) Bug #214: Fix utmp for Irix (don't strip "tty"). Patch from 
496    Kevin Taylor <no@nowhere.org> (??) via Philipp Grau
497    <phgrau@zedat.fu-berlin.de>
498  - (djm) Bug #213: Simplify CMSG_ALIGN macros to avoid symbol clashes. 
499    Reported by Doug Manton <dmanton@emea.att.com>
500  - (djm) Bug #222: Fix tests for getaddrinfo on OSF/1. Spotted by
501    Robert Urban <urban@spielwiese.de>
502  - (djm) Bug #206 - blibpath isn't always needed for AIX ld, avoid 
503    sizeof(long long int) == 4 breakage. Patch from Matthew Clarke
504    <Matthew_Clarke@mindlink.bc.ca>
505  - (djm) Make privsep work with PAM (still experimental)
506  - (djm) OpenBSD CVS Sync
507    - deraadt@cvs.openbsd.org 2002/04/20 09:02:03
508      [servconf.c]
509      No, afs requires explicit enabling
510    - markus@cvs.openbsd.org 2002/04/20 09:14:58
511      [bufaux.c bufaux.h]
512      add buffer_{get,put}_short
513    - markus@cvs.openbsd.org 2002/04/20 09:17:19
514      [radix.c]
515      rewrite using the buffer_* API, fixes overflow; ok deraadt@
516    - stevesk@cvs.openbsd.org 2002/04/21 16:19:27
517      [sshd.8 sshd_config]
518      document default AFSTokenPassing no; ok deraadt@
519    - stevesk@cvs.openbsd.org 2002/04/21 16:25:06
520      [sshconnect1.c]
521      spelling in error message; ok markus@
522    - markus@cvs.openbsd.org 2002/04/22 06:15:47
523      [radix.c]
524      fix check for overflow
525    - markus@cvs.openbsd.org 2002/04/22 16:16:53
526      [servconf.c sshd.8 sshd_config]
527      do not auto-enable KerberosAuthentication; ok djm@, provos@, deraadt@
528    - markus@cvs.openbsd.org 2002/04/22 21:04:52
529      [channels.c clientloop.c clientloop.h ssh.c]
530      request reply (success/failure) for -R style fwd in protocol v2,
531      depends on ordered replies.
532      fixes http://bugzilla.mindrot.org/show_bug.cgi?id=215; ok provos@
533
534 20020421
535  - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).
536    entropy.c needs seteuid(getuid()) for the setuid(original_uid) to 
537    succeed. Patch by gert@greenie.muc.de. This fixes one part of Bug 208
538
539 20020418
540  - (djm) Avoid SIGCHLD breakage when run from rsync. Fix from 
541    Sturle Sunde <sturle.sunde@usit.uio.no>
542
543 20020417
544  - (djm) Tell users to configure /dev/random support into OpenSSL in 
545    INSTALL
546  - (djm) Fix .Nm in mdoc2man.pl from pspencer@fields.utoronto.ca
547  - (tim) [configure.ac] Issue warning on --with-default-path=/some_path
548    if LOGIN_CAP is enabled. Report & testing by Tuc <tuc@ttsg.com>
549
550 20020415
551  - (djm) Unbreak "make install". Fix from Darren Tucker 
552    <dtucker@zip.com.au>
553  - (stevesk) bsd-cygwin_util.[ch] BSD license from Corinna Vinschen
554  - (tim) [configure.ac] add tests for recvmsg and sendmsg.
555    [monitor_fdpass.c] add checks for HAVE_SENDMSG and HAVE_RECVMSG for
556    systems that HAVE_ACCRIGHTS_IN_MSGHDR but no recvmsg or sendmsg.
557
558 20020414
559  - (djm) ssh-rand-helper improvements
560    - Add commandline debugging options
561    - Don't write binary data if stdout is a tty (use hex instead)
562    - Give it a manpage
563  - (djm) Random number collection doc fixes from Ben
564
565 20020413
566  - (djm) Add KrbV support patch from Simon Wilkinson <simon@sxw.org.uk>
567
568 20020412
569  - (stevesk) [auth-sia.[ch]] add BSD license from Chris Adams
570  - (tim) [configure.ac] add <sys/types.h> to msghdr tests. Change -L
571    to -h on testing for /bin being symbolic link
572  - (bal) Mistaken in Cygwin scripts for ssh starting.  Patch by
573    Corinna Vinschen <vinschen@redhat.com> 
574  - (bal) disable privsep if no MAP_ANON.  We can re-enable it
575    after the release when we can do more testing.
576
577 20020411
578  - (stevesk) [auth-sia.c] cleanup
579  - (tim) [acconfig.h defines.h includes.h] put includes in includes.h and
580    defines in defines.h [rijndael.c openbsd-compat/fake-socket.h
581    openbsd-compat/inet_aton.c] include "includes.h" instead of "config.h"
582    ok stevesk@
583
584 20020410
585  - (stevesk) [configure.ac monitor.c] HAVE_SOCKETPAIR
586  - (stevesk) [auth-sia.c] compile fix Chris Adams <cmadams@hiwaay.net>
587  - (bal) OpenBSD CVS Sync
588    - markus@cvs.openbsd.org 2002/04/10 08:21:47
589      [auth1.c compat.c compat.h]
590      strip '@' from username only for KerbV and known broken clients, 
591      bug #204
592    - markus@cvs.openbsd.org 2002/04/10 08:56:01
593      [version.h]
594      OpenSSH_3.2
595  - Added p1 to idenify Portable release version.
596
597 20020408
598  - (bal) Minor OpenSC updates.  Fix up header locations and update
599    README.smartcard provided by Juha Yrjölä <jyrjola@cc.hut.fi>
600
601 20020407
602  - (stevesk) HAVE_CONTROL_IN_MSGHDR; not used right now.
603    Future: we may want to test if fd passing works correctly.
604  - (stevesk) [monitor_fdpass.c] fatal() for UsePrivilegeSeparation=yes
605    and no fd passing support.
606  - (stevesk) HAVE_MMAP and HAVE_SYS_MMAN_H and use them in
607    monitor_mm.c
608  - (stevesk) remove configure support for poll.h; it was removed
609    from sshd.c a long time ago.
610  - (stevesk) --with-privsep-user; default sshd
611  - (stevesk) wrap munmap() with HAVE_MMAP also.
612
613 20020406
614  - (djm) Typo in Suse SPEC file. Fix from Carsten Grohmann 
615    <carsten.grohmann@dr-baldeweg.de>
616  - (bal) Added MAP_FAILED to allow AIX and Trusted HP to compile.
617  - (bal) OpenBSD CVS Sync
618    - djm@cvs.openbsd.org 2002/04/06 00:30:08
619      [sftp-client.c]
620      Fix occasional corruption on upload due to bad reuse of request 
621      id, spotted by chombier@mac.com; ok markus@
622    - mouring@cvs.openbsd.org 2002/04/06 18:24:09
623      [scp.c]
624      Fixes potental double // within path.
625      http://bugzilla.mindrot.org/show_bug.cgi?id=76
626  - (bal) Slight update to OpenSC support.  Better version checking. patch
627    by Juha Yrjölä <jyrjola@cc.hut.fi> 
628  - (bal) Revered out of runtime IRIX detection of joblimits.  Code is
629    incomplete.
630  - (bal) Quiet down configure.ac if /bin/test does not exist.
631  - (bal) We no longer use atexit()/xatexit()/on_exit()
632
633 20020405
634  - (bal) Patch for OpenSC SmartCard library; ok markus@; patch by
635    Juha Yrjölä <jyrjola@cc.hut.fi>
636  - (bal) Minor documentation update to reflect smartcard library
637    support changes.
638  - (bal) Too many <sys/queue.h> issues.  Remove all workarounds and
639    using internal version only.
640  - (bal) OpenBSD CVS Sync
641    - stevesk@cvs.openbsd.org 2002/04/05 20:56:21
642      [sshd.8]
643      clarify sshrc some and handle X11UseLocalhost=yes; ok markus@
644
645 20020404
646  - (stevesk) [auth-pam.c auth-pam.h auth-passwd.c auth-sia.c auth-sia.h
647     auth1.c auth2.c] PAM, OSF_SIA password auth cleanup; from djm.
648  - (bal) OpenBSD CVS Sync
649    - markus@cvs.openbsd.org 2002/04/03 09:26:11
650      [cipher.c myproposal.h]
651      re-add rijndael-cbc@lysator.liu.se for MacSSH; ash@lab.poc.net
652
653 20020402
654  - (bal) Hand Sync of scp.c (reverted to upstream code)
655    - deraadt@cvs.openbsd.org 2002/03/30 17:45:46
656      [scp.c]
657      stretch banners
658  - (bal) CVS ID sync of uidswap.c
659  - (bal) OpenBSD CVS Sync (now for the real sync)
660    - markus@cvs.openbsd.org 2002/03/27 22:21:45
661      [ssh-keygen.c]
662      try to import keys with extra trailing === (seen with ssh.com < 
663      2.0.12)
664    - markus@cvs.openbsd.org 2002/03/28 15:34:51
665      [session.c]
666      do not call record_login twice (for use_privsep)
667    - markus@cvs.openbsd.org 2002/03/29 18:59:32
668      [session.c session.h]
669      retrieve last login time before the pty is allocated, store per 
670      session
671    - stevesk@cvs.openbsd.org 2002/03/29 19:16:22
672      [sshd.8]
673      RSA key modulus size minimum 768; ok markus@
674    - stevesk@cvs.openbsd.org 2002/03/29 19:18:33
675      [auth-rsa.c ssh-rsa.c ssh.h]
676      make RSA modulus minimum #define; ok markus@
677    - markus@cvs.openbsd.org 2002/03/30 18:51:15
678      [monitor.c serverloop.c sftp-int.c sftp.c sshd.c]
679      check waitpid for EINTR; based on patch from peter@ifm.liu.se
680    - markus@cvs.openbsd.org 2002/04/01 22:02:16
681      [sftp-client.c]
682      20480 is an upper limit for older server
683    - markus@cvs.openbsd.org 2002/04/01 22:07:17
684      [sftp-client.c]
685      fallback to stat if server does not support lstat
686    - markus@cvs.openbsd.org 2002/04/02 11:49:39
687      [ssh-agent.c]
688      check $SHELL for -k and -d, too;
689      http://bugzilla.mindrot.org/show_bug.cgi?id=199
690    - markus@cvs.openbsd.org 2002/04/02 17:37:48
691      [sftp.c]
692      always call log_init()
693    - markus@cvs.openbsd.org 2002/04/02 20:11:38
694      [ssh-rsa.c]
695      ignore SSH_BUG_SIGBLOB for ssh-rsa; #187
696  - (bal) mispelling in uidswap.c (portable only)
697
698 20020401
699  - (stevesk) [monitor.c] PAM should work again; will *not* work with
700    UsePrivilegeSeparation=yes.
701  - (stevesk) [auth1.c] fix password auth for protocol 1 when
702    !USE_PAM && !HAVE_OSF_SIA; merge issue.
703
704 20020331
705  - (tim) [configure.ac] use /bin/test -L to work around broken builtin on
706    Solaris 8
707  - (tim) [sshconnect2.c] change uint32_t to u_int32_t
708
709 20020330
710  - (stevesk) [configure.ac] remove header check for sys/ttcompat.h
711    bug 167
712
713 20020327
714  - (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by 
715    kent@lysator.liu.se
716  - (bal) OpenBSD CVS Sync
717    - markus@cvs.openbsd.org 2002/03/26 11:34:49
718      [ssh.1 sshd.8]
719      update to recent drafts
720    - markus@cvs.openbsd.org 2002/03/26 11:37:05
721      [ssh.c]
722      update Copyright
723    - markus@cvs.openbsd.org 2002/03/26 15:23:40
724      [bufaux.c]
725      do not talk about packets in bufaux
726    - rees@cvs.openbsd.org 2002/03/26 18:46:59
727      [scard.c]
728      try_AUT0 in read_pubkey too, for those paranoid few who want to 
729      acl 'sh'
730    - markus@cvs.openbsd.org 2002/03/26 22:50:39
731      [channels.h]
732      CHANNEL_EFD_OUTPUT_ACTIVE is false for CHAN_CLOSE_RCVD, too
733    - markus@cvs.openbsd.org 2002/03/26 23:13:03
734      [auth-rsa.c]
735      disallow RSA keys < 768 for protocol 1, too (rhosts-rsa and rsa auth)
736    - markus@cvs.openbsd.org 2002/03/26 23:14:51
737      [kex.c]
738      generate a new cookie for each SSH2_MSG_KEXINIT message we send out
739    - mouring@cvs.openbsd.org 2002/03/27 11:45:42
740      [monitor.c]
741      monitor_allowed_key() returns int instead of pointer.  ok markus@
742   
743 20020325
744  - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h"
745  - (bal) OpenBSD CVS Sync
746    - stevesk@cvs.openbsd.org 2002/03/23 20:57:26
747      [sshd.c]
748      setproctitle() after preauth child; ok markus@
749    - markus@cvs.openbsd.org 2002/03/24 16:00:27
750      [serverloop.c]
751      remove unused debug
752    - markus@cvs.openbsd.org 2002/03/24 16:01:13
753      [packet.c]
754      debug->debug3 for extra padding
755    - stevesk@cvs.openbsd.org 2002/03/24 17:27:03
756      [kexgex.c]
757      typo; ok markus@
758    - stevesk@cvs.openbsd.org 2002/03/24 17:53:16
759      [monitor_fdpass.c]
760      minor cleanup and more error checking; ok markus@
761    - markus@cvs.openbsd.org 2002/03/24 18:05:29
762      [scard.c]
763      we need to figure out AUT0 for sc_private_encrypt, too
764    - stevesk@cvs.openbsd.org 2002/03/24 23:20:00
765      [monitor.c]
766      remove "\n" from fatal()
767    - markus@cvs.openbsd.org 2002/03/25 09:21:13
768      [auth-rsa.c]
769      return 0 (not NULL); tomh@po.crl.go.jp
770    - markus@cvs.openbsd.org 2002/03/25 09:25:06
771      [auth-rh-rsa.c]
772      rm bogus comment
773    - markus@cvs.openbsd.org 2002/03/25 17:34:27
774      [scard.c scard.h ssh-agent.c ssh-keygen.c ssh.c]
775      change sc_get_key to sc_get_keys and hide smartcard details in scard.c
776    - stevesk@cvs.openbsd.org 2002/03/25 20:12:10
777      [monitor_mm.c monitor_wrap.c]
778      ssize_t args use "%ld" and cast to (long)
779      size_t args use "%lu" and cast to (u_long)
780      ok markus@ and thanks millert@
781    - markus@cvs.openbsd.org 2002/03/25 21:04:02
782      [ssh.c]
783      simplify num_identity_files handling
784    - markus@cvs.openbsd.org 2002/03/25 21:13:51
785      [channels.c channels.h compat.c compat.h nchan.c]
786      don't send stderr data after EOF, accept this from older known 
787      (broken) sshd servers only, fixes
788      http://bugzilla.mindrot.org/show_bug.cgi?id=179
789    - stevesk@cvs.openbsd.org 2002/03/26 03:24:01
790      [monitor.h monitor_fdpass.h monitor_mm.h monitor_wrap.h]
791      $OpenBSD$
792
793 20020324
794  - (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
795    it can be removed. only used on solaris. will no longer compile with
796    privsep shuffling.
797
798 20020322
799  - (stevesk) HAVE_ACCRIGHTS_IN_MSGHDR configure support
800  - (stevesk) [monitor.c monitor_wrap.c] #ifdef HAVE_PW_CLASS_IN_PASSWD
801  - (stevesk) configure and cpp __FUNCTION__ gymnastics to handle nielsisms
802  - (stevesk) [monitor_fdpass.c] support for access rights style file
803    descriptor passing
804  - (stevesk) [auth2.c] merge cleanup/sync
805  - (stevesk) [defines.h] hp-ux 11 has ancillary data style fd passing, but
806    is missing CMSG_LEN() and CMSG_SPACE() macros.
807  - (stevesk) [defines.h] #define MAP_ANON MAP_ANONYMOUS for HP-UX; other
808    platforms may need this--I'm not sure.  mmap() issues will need to be
809    addressed further.
810  - (tim) [cipher.c] fix problem with OpenBSD sync
811  - (stevesk) [LICENCE] OpenBSD sync
812
813 20020321
814  - (bal) OpenBSD CVS Sync
815    - itojun@cvs.openbsd.org 2002/03/08 06:10:16
816      [sftp-client.c]
817      printf type mismatch
818    - itojun@cvs.openbsd.org 2002/03/11 03:18:49
819      [sftp-client.c]
820      correct type mismatches (u_int64_t != unsigned long long)
821    - itojun@cvs.openbsd.org 2002/03/11 03:19:53
822      [sftp-client.c]
823      indent
824    - markus@cvs.openbsd.org 2002/03/14 15:24:27
825      [sshconnect1.c]
826      don't trust size sent by (rogue) server; noted by 
827      s.esser@e-matters.de
828    - markus@cvs.openbsd.org 2002/03/14 16:38:26
829      [sshd.c]
830      split out ssh1 session key decryption; ok provos@
831    - markus@cvs.openbsd.org 2002/03/14 16:56:33
832      [auth-rh-rsa.c auth-rsa.c auth.h]
833      split auth_rsa() for better readability and privsep; ok provos@
834    - itojun@cvs.openbsd.org 2002/03/15 11:00:38
835      [auth.c]
836      fix file type checking (use S_ISREG).  ok by markus
837    - markus@cvs.openbsd.org 2002/03/16 11:24:53
838      [compress.c]
839      skip inflateEnd if inflate fails; ok provos@
840    - markus@cvs.openbsd.org 2002/03/16 17:22:09
841      [auth-rh-rsa.c auth.h]
842      split auth_rhosts_rsa(), ok provos@
843    - stevesk@cvs.openbsd.org 2002/03/16 17:41:25
844      [auth-krb5.c]
845      BSD license.  from Daniel Kouril via Dug Song.  ok markus@
846    - provos@cvs.openbsd.org 2002/03/17 20:25:56
847      [auth.c auth.h auth1.c auth2.c]
848      getpwnamallow returns struct passwd * only if user valid; 
849      okay markus@
850    - provos@cvs.openbsd.org 2002/03/18 01:12:14
851      [auth.h auth1.c auth2.c sshd.c]
852      have the authentication functions return the authentication context
853      and then do_authenticated; okay millert@
854    - dugsong@cvs.openbsd.org 2002/03/18 01:30:10
855      [auth-krb4.c]
856      set client to NULL after xfree(), from Rolf Braun 
857      <rbraun+ssh@andrew.cmu.edu>
858    - provos@cvs.openbsd.org 2002/03/18 03:41:08
859      [auth.c session.c]
860      move auth_approval into getpwnamallow with help from millert@
861    - markus@cvs.openbsd.org 2002/03/18 17:13:15
862      [cipher.c cipher.h]
863      export/import cipher states; needed by ssh-privsep
864    - markus@cvs.openbsd.org 2002/03/18 17:16:38
865      [packet.c packet.h]
866      export/import cipher state, iv and ssh2 seqnr; needed by ssh-privsep
867    - markus@cvs.openbsd.org 2002/03/18 17:23:31
868      [key.c key.h]
869      add key_demote() for ssh-privsep
870    - provos@cvs.openbsd.org 2002/03/18 17:25:29
871      [bufaux.c bufaux.h]
872      buffer_skip_string and extra sanity checking; needed by ssh-privsep
873    - provos@cvs.openbsd.org 2002/03/18 17:31:54
874      [compress.c]
875      export compression streams for ssh-privsep
876    - provos@cvs.openbsd.org 2002/03/18 17:50:31
877      [auth-bsdauth.c auth-options.c auth-rh-rsa.c auth-rsa.c]
878      [auth-skey.c auth.h auth1.c auth2-chall.c auth2.c kex.c kex.h kexdh.c]
879      [kexgex.c servconf.c]
880      [session.h servconf.h serverloop.c session.c sshd.c]
881      integrate privilege separated openssh; its turned off by default 
882      for now. work done by me and markus@
883    - provos@cvs.openbsd.org 2002/03/18 17:53:08
884      [sshd.8]
885      credits for privsep
886    - provos@cvs.openbsd.org 2002/03/18 17:59:09
887      [sshd.8]
888      document UsePrivilegeSeparation
889    - stevesk@cvs.openbsd.org 2002/03/18 23:52:51
890      [servconf.c]
891      UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
892      provos@
893    - stevesk@cvs.openbsd.org 2002/03/19 03:03:43
894      [pathnames.h servconf.c servconf.h sshd.c]
895      _PATH_PRIVSEP_CHROOT_DIR; ok provos@
896    - stevesk@cvs.openbsd.org 2002/03/19 05:23:08
897      [sshd.8]
898      Banner has no default.
899    - mpech@cvs.openbsd.org 2002/03/19 06:32:56
900      [sftp-int.c]
901      use xfree() after xstrdup().
902
903      markus@ ok
904    - markus@cvs.openbsd.org 2002/03/19 10:35:39
905      [auth-options.c auth.h session.c session.h sshd.c]
906      clean up prototypes
907    - markus@cvs.openbsd.org 2002/03/19 10:49:35
908      [auth-krb5.c auth-rh-rsa.c auth.c cipher.c key.c misc.h]
909      [packet.c session.c sftp-client.c sftp-glob.h sftp.c ssh-add.c ssh.c]
910      [sshconnect2.c sshd.c ttymodes.c]
911      KNF whitespace
912    - markus@cvs.openbsd.org 2002/03/19 14:27:39
913      [auth.c auth1.c auth2.c]
914      make getpwnamallow() allways call pwcopy()
915    - markus@cvs.openbsd.org 2002/03/19 15:31:47
916      [auth.c]
917      check for NULL; from provos@
918    - stevesk@cvs.openbsd.org 2002/03/20 19:12:25
919      [servconf.c servconf.h ssh.h sshd.c]
920      for unprivileged user, group do:
921      pw=getpwnam(SSH_PRIVSEP_USER); do_setusercontext(pw).  ok provos@
922    - stevesk@cvs.openbsd.org 2002/03/20 21:08:08
923      [sshd.c]
924      strerror() on chdir() fail; ok provos@
925    - markus@cvs.openbsd.org 2002/03/21 10:21:20
926      [ssh-add.c]
927      ignore errors for nonexisting default keys in ssh-add,
928      fixes http://bugzilla.mindrot.org/show_bug.cgi?id=158
929    - jakob@cvs.openbsd.org 2002/03/21 15:17:26
930      [clientloop.c ssh.1]
931      add built-in command line for adding new port forwardings on the fly.
932      based on a patch from brian wellington. ok markus@.
933    - markus@cvs.openbsd.org 2002/03/21 16:38:06
934      [scard.c]
935      make compile w/ openssl 0.9.7
936    - markus@cvs.openbsd.org 2002/03/21 16:54:53
937      [scard.c scard.h ssh-keygen.c]
938      move key upload to scard.[ch]
939    - markus@cvs.openbsd.org 2002/03/21 16:57:15
940      [scard.c]
941      remove const
942    - markus@cvs.openbsd.org 2002/03/21 16:58:13
943      [clientloop.c]
944      remove unused
945    - rees@cvs.openbsd.org 2002/03/21 18:08:15
946      [scard.c]
947      In sc_put_key(), sc_reader_id should be id.
948    - markus@cvs.openbsd.org 2002/03/21 20:51:12
949      [sshd_config]
950      add privsep (off)
951    - markus@cvs.openbsd.org 2002/03/21 21:23:34
952      [sshd.c]
953      add privsep_preauth() and remove 1 goto; ok provos@
954    - rees@cvs.openbsd.org 2002/03/21 21:54:34
955      [scard.c scard.h ssh-keygen.c]
956      Add PIN-protection for secret key.
957    - rees@cvs.openbsd.org 2002/03/21 22:44:05
958      [authfd.c authfd.h ssh-add.c ssh-agent.c ssh.c]
959      Add PIN-protection for secret key.
960    - markus@cvs.openbsd.org 2002/03/21 23:07:37
961      [clientloop.c]
962      remove unused, sync w/ cmdline patch in my tree.
963
964 20020317
965  - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is 
966    wanted, warn if directory does not exist. Put system directories in 
967    front of PATH for finding entorpy commands.
968  - (tim) [contrib/aix/buildbff.sh contrib/aix/inventory.sh] AIX package
969    build fixes.  Patch by Darren Tucker <dtucker@zip.com.au>
970    [contrib/solaris/buildpkg.sh] add missing dirs to SYSTEM_DIR. Have
971    postinstall check for $piddir and add if necessary.
972
973 20020311
974  - (tim) [contrib/solaris/buildpkg.sh, contrib/solaris/README] Updated to
975    build on all platforms that support SVR4 style package tools. Now runs
976    from build dir. Parts are based on patches from Antonio Navarro, and
977    Darren Tucker.
978
979 20020308
980  - (djm) Revert bits of Markus' OpenSSL compat patch which was 
981    accidentally committed.
982  - (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6. 
983    Known issue: Blowfish for SSH1 does not work
984  - (stevesk) entropy.c: typo in debug message
985  - (djm) ssh-keygen -i needs seeded RNG; report from markus@
986
987 $Id$
This page took 0.191827 seconds and 5 git commands to generate.