Mercurial > dropbear
annotate CHANGES @ 468:706e234212d0
Mention 0.51-test2 changes
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 01 Mar 2008 02:01:35 +0000 |
parents | e430a26064ee |
children | ece7677359d6 |
rev | line source |
---|---|
468 | 1 0.51-test2 prerelease |
2 | |
3 - Make a copy of password fields rather erroneously relying on getwpnam() | |
4 to be safe to call multiple times | |
5 | |
6 - If $SSH_ASKPASS_ALWAYS environment variable is set (and $SSH_ASKPASS is | |
7 as well) always use that program, ignoring isatty() and $DISPLAY | |
8 | |
9 - Wait until a process exits before the server closes a connection, so | |
10 that an exit code can be sent. This fixes problems with scp failing | |
11 with exit code 255. | |
12 | |
455 | 13 0.50 - Wed 8 August 2007 |
14 | |
15 - Add DROPBEAR_PASSWORD environment variable to specify a dbclient password | |
16 | |
17 - Use /dev/urandom by default, since that's what everyone does anyway | |
18 | |
19 - Correct vfork() use for uClinux in scp | |
20 (thanks to Alex Landau) | |
21 | |
22 - Exit with an exit code of 1 if dropbear can't bind to any ports | |
23 (thanks to Nicolai Ehemann) | |
24 | |
25 - Improve network performance and add a -W <receive_window> argument for | |
26 adjusting the tradeoff between network performance and memory consumption. | |
27 | |
28 - Fix a problem where reply packets could be sent during key exchange, | |
29 in violation of the SSH spec. This could manifest itself with connections | |
30 being terminated after 8 hours with new TCP-forward connections being | |
31 established. | |
32 | |
33 - Add -K <keepalive_time> argument, ensuring that data is transmitted | |
34 over the connection at least every N seconds. | |
35 | |
457
e430a26064ee
Make dropbearkey only generate 1024 bit keys
Matt Johnston <matt@ucc.asn.au>
parents:
455
diff
changeset
|
36 - dropbearkey will no longer generate DSS keys of sizes other than 1024 |
e430a26064ee
Make dropbearkey only generate 1024 bit keys
Matt Johnston <matt@ucc.asn.au>
parents:
455
diff
changeset
|
37 bits, as required by the DSS specification. (Other sizes are still |
e430a26064ee
Make dropbearkey only generate 1024 bit keys
Matt Johnston <matt@ucc.asn.au>
parents:
455
diff
changeset
|
38 accepted for use to provide backwards compatibility). |
e430a26064ee
Make dropbearkey only generate 1024 bit keys
Matt Johnston <matt@ucc.asn.au>
parents:
455
diff
changeset
|
39 |
437 | 40 0.49 - Fri 23 February 2007 |
41 | |
42 - Security: dbclient previously would prompt to confirm a | |
43 mismatching hostkey but wouldn't warn loudly. It will now | |
44 exit upon a mismatch. | |
337 | 45 |
46 - Compile fixes, make sure that all variable definitions are at the start | |
47 of a scope. | |
48 | |
430 | 49 - Added -P pidfile argument to the server (from Swen Schillig) |
337 | 50 |
51 - Add -N dbclient option for "no command" | |
52 | |
53 - Add -f dbclient option for "background after auth" | |
54 | |
437 | 55 - Add ability to limit binding to particular addresses, use |
56 -p [address:]port, patch from Max-Gerd Retzlaff. | |
57 | |
430 | 58 - Try to finally fix ss_family compilation problems (for old |
59 glibc systems) | |
60 | |
61 - Fix finding relative-path server hostkeys when running daemonized | |
62 | |
63 - Use $HOME in preference to that from /etc/passwd, so that | |
64 dbclient can still work on broken systems. | |
65 | |
66 - Fix various issues found by Klocwork defect analysis, mostly memory leaks | |
67 and error-handling. Thanks to Klocwork for their service. | |
68 | |
69 - Improve building in a separate directory | |
70 | |
71 - Add compile-time LOG_COMMANDS option to log user commands | |
72 | |
73 - Add '-y' flag to dbclient to unconditionally accept host keys, | |
74 patch from Luciano Miguel Ferreira Rocha | |
75 | |
76 - Return immediately for "sleep 10 & echo foo", rather than waiting | |
77 for the sleep to return (pointed out by Rob Landley). | |
78 | |
79 - Avoid hanging after exit in certain cases (such as scp) | |
80 | |
81 - Various minor fixes, in particular various leaks reported by | |
82 Erik Hovland | |
83 | |
84 - Disable core dumps on startup | |
85 | |
86 - Don't erase over every single buffer, since it was a bottleneck. | |
87 On systems where it really matters, encrypted swap should be utilised. | |
88 | |
89 - Read /dev/[u]random only once at startup to conserve kernel entropy | |
90 | |
91 - Upgrade to LibTomCrypt 1.16 and LibTomMath 0.40 | |
92 | |
93 - Upgrade config.status and config.guess | |
337 | 94 |
295 | 95 0.48.1 - Sat 11 March 2006 |
96 | |
97 - Compile fix for scp | |
98 | |
291 | 99 0.48 - Thurs 9 March 2006 |
290 | 100 |
101 - Check that the circular buffer is properly empty before | |
102 closing a channel, which could cause truncated transfers | |
103 (thanks to Tomas Vanek for helping track it down) | |
104 | |
105 - Implement per-IP pre-authentication connection limits | |
106 (after some poking from Pablo Fernandez) | |
107 | |
108 - Exit gracefully if trying to connect to as SSH v1 server | |
109 (reported by Rushi Lala) | |
110 | |
111 - Only read /dev/random once at startup when in non-inetd mode | |
112 | |
113 - Allow ctrl-c to close a dbclient password prompt (may | |
114 still have to press enter on some platforms) | |
115 | |
116 - Merged in uClinux patch for inetd mode | |
117 | |
118 - Updated to scp from OpenSSH 4.3p2 - fixes a security issue | |
119 where use of system() could cause users to execute arbitrary | |
120 code through malformed filenames, ref CVE-2006-0225 | |
121 | |
265
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
122 0.47 - Thurs Dec 8 2005 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
123 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
124 - SECURITY: fix for buffer allocation error in server code, could potentially |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
125 allow authenticated users to gain elevated privileges. All multi-user systems |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
126 running the server should upgrade (or apply the patch available on the |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
127 Dropbear webpage). |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
128 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
129 - Fix channel handling code so that redirecting to /dev/null doesn't use |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
130 100% CPU. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
131 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
132 - Turn on zlib compression for dbclient. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
133 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
134 - Set "low delay" TOS bit, can significantly improve interactivity |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
135 over some links. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
136 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
137 - Added client keyboard-interactive mode support, allows operation with |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
138 newer OpenSSH servers in default config. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
139 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
140 - Log when pubkey auth fails because of bad ~/.ssh/authorized_keys permissions |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
141 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
142 - Improve logging of assertions |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
143 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
144 - Added aes-256 cipher and sha1-96 hmac. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
145 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
146 - Fix twofish so that it actually works. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
147 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
148 - Improve PAM prompt comparison. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
149 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
150 - Added -g (dbclient) and -a (dropbear server) options to allow |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
151 connections to listening forwarded ports from remote machines. |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
152 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
153 - Various other minor fixes |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
154 |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
155 - Compile fixes for glibc 2.1 (ss_family vs __ss_family) and NetBSD |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
156 (netinet/in_systm.h needs to be included). |
9b9664204b97
* Update changelogs for 0.47 release
Matt Johnston <matt@ucc.asn.au>
parents:
224
diff
changeset
|
157 |
223 | 158 0.46 - Sat July 9 2005 |
193 | 159 |
160 - Fix long-standing bug which caused connections to be closed if an ssh-agent | |
161 socket was no longer available | |
162 | |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
163 - Print a warning if we seem to be blocking on /dev/random |
193 | 164 (suggested by Paul Fox) |
165 | |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
166 - Fixed a memory leak in DSS code (thanks to Boris Berezovsky for the patch) |
193 | 167 |
168 - dbclient -L no longer segfaults, allocate correct buffer size (thanks | |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
169 to David Cook for reporting it, and Christopher Faylor for independently |
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
170 sending in a patch) |
193 | 171 |
223 | 172 - Added RSA blinding to signing code (suggested by Dan Kaminsky) |
193 | 173 |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
174 - Rearranged bignum reading/random generation code |
193 | 175 |
176 - Reset the non-blocking status on stderr and stdout as well as stdin, | |
177 fixes a problem where the shell running dbclient will exit (thanks to | |
178 Brent Roman for reporting it) | |
179 | |
223 | 180 - Fix so that all file descriptors are closed so the child shell doesn't |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
181 inherit descriptors (thanks to Linden May for the patch) |
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
182 |
223 | 183 - Change signkey.c to avoid gcc 4 generating incorrect code |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
184 |
224
1dbd2473482f
* ... and a bit more for the CHANGES
Matt Johnston <matt@ucc.asn.au>
parents:
223
diff
changeset
|
185 - After both sides of a file descriptor have been shutdown(), close() |
1dbd2473482f
* ... and a bit more for the CHANGES
Matt Johnston <matt@ucc.asn.au>
parents:
223
diff
changeset
|
186 it to avoid leaking descriptors (thanks to Ari Hyttinen for a patch) |
1dbd2473482f
* ... and a bit more for the CHANGES
Matt Johnston <matt@ucc.asn.au>
parents:
223
diff
changeset
|
187 |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
188 - Update to LibTomCrypt 1.05 and LibTomMath 0.35 |
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
193
diff
changeset
|
189 |
176 | 190 0.45 - Mon March 7 2005 |
191 | |
192 - Makefile no longer appends 'static' to statically linked binaries | |
193 | |
194 - Add optional SSH_ASKPASS support to the client | |
195 | |
196 - Respect HOST_LOOKUP option | |
197 | |
198 - Fix accidentally removed "return;" statement which was removed in 0.44 | |
199 (causing clients which sent an empty terminal-modes string to fail to | |
200 connect - including pssh, ssh.com, danger hiptop). (patches | |
201 independently from Paul Fox, David Horwitt and Sven-Ola Tuecke) | |
202 | |
170
a62cb364f615
Read "y/n" response for fingerprints from /dev/tty directly so that dbclient
Matt Johnston <matt@ucc.asn.au>
parents:
161
diff
changeset
|
203 - Read "y/n" response for fingerprints from /dev/tty directly so that dbclient |
a62cb364f615
Read "y/n" response for fingerprints from /dev/tty directly so that dbclient
Matt Johnston <matt@ucc.asn.au>
parents:
161
diff
changeset
|
204 will work with scp. |
a62cb364f615
Read "y/n" response for fingerprints from /dev/tty directly so that dbclient
Matt Johnston <matt@ucc.asn.au>
parents:
161
diff
changeset
|
205 |
161 | 206 0.44 - Mon Jan 3 2005 |
207 | |
208 - SECURITY: Fix for PAM auth so that usernames are logged and conversation | |
209 function responses are allocated correctly - all 0.44test4 users with PAM | |
210 compiled in (not default) are advised to upgrade. | |
211 | |
212 - Fix calls to getnameinfo() for compatibility with Solaris | |
213 | |
214 - Pristine compilation works (run 'configure' from a fresh dir and make it | |
215 there) | |
216 | |
217 - Fixes for compiling with most options disabled. | |
218 | |
219 - Upgraded to LibTomCrypt 0.99 and LibTomMath 0.32 | |
220 | |
221 - Make sure that zeroing out of values in LTM and LTC won't get optimised away | |
222 | |
223 - Removed unused functions from loginrec.c | |
224 | |
225 - /dev/random is now the default entropy source rather than /dev/urandom | |
226 | |
227 - Logging of IPs in auth success/failure messages for improved greppability | |
134 | 228 |
229 - Fix dbclient so that "scp -i keyfile" works. (It can handle "-ikeyfile | |
230 properly) | |
231 | |
232 - Avoid a race in server shell-handling code which prevents the exit-code | |
161 | 233 from being returned to the client in some circumstances. |
134 | 234 |
235 - Makefile modified so that install target works correctly (doesn't try | |
236 to install "all" binary) - patch from Juergen Daubert | |
237 | |
161 | 238 - Various minor fixes and compile warnings. |
239 | |
240 0.44test4 - Tue Sept 14 2004 21:15:54 +0800 | |
124 | 241 |
242 - Fix inetd mode so it actually loads the hostkeys (oops) | |
243 | |
244 - Changed DROPBEAR_DEFPORT properly everywhere | |
245 | |
246 - Fix a small memory leak in the auth code | |
247 | |
248 - WCOREDUMP is only used on systems which support it (ie not cygwin or AIX) | |
249 | |
250 - Check (and fail for) cases when we can't negotiate algorithms with the | |
251 remote side successfully (rather than bombing out ungracefully) | |
252 | |
253 - Handle authorized_keys files without a terminating newline | |
254 | |
255 - Fiddle the channel receive window size for possibly better performance | |
256 | |
257 - Added in the PAM authentication code (finally! thanks to Martin Carlsson) | |
258 | |
111
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
259 0.44test3 - Fri Aug 27 22:20:54 +0800 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
260 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
261 - Fixed a bunch of warnings. |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
262 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
263 - scp works correctly when passed a username (fix for the dbclient program |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
264 itself as well, "-lmatt" works as well as "-l matt"). |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
265 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
266 - Remove unrequired debian files |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
267 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
268 - Exit with the remote process's return code for dbclient |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
269 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
270 - Display stderr messages from the server in the client |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
271 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
272 - Add circular buffering to the channel code. This should dramatically reduce |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
273 the amount of backtraffic sent in response to traffic incoming to the |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
274 Dropbear end - improves high-latency performance (ie dialup). |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
275 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
276 - Various other related channel-handling fixups. |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
277 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
278 - Allow leading lines in the banner when connecting to servers |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
279 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
280 - Fixed printing out errors onto the network socket with stderr (for inetd |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
281 mode when using xinetd) |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
282 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
283 - Remove obselete documentation |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
284 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
285 - Fix a null-pointer exception when trying to free non-existant listeners |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
286 at cleanup. |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
287 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
288 - DEBUG_TRACE now only works if you add "-v" to the program commandline |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
289 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
290 - Don't leave stdin non-blocking on exit - this caused the parent shell |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
291 of dbclient to close when dbclient exited, for some shells in BusyBox |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
292 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
293 - Server connections no longer timeout after 5 minutes |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
294 |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
295 - Fixed stupid DSS hostkey typo (server couldn't load host keys) |
88e0a1ad951a
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
296 |
90
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
297 0.44test2 - Tues Aug 17 2004 17:43:54 +0800 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
298 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
299 - Fix up dropbearmulti targets in the Makefile - symlinks are now created |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
300 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
301 - Compile fake-rfc2553 even with dropbearconvert/dropbearkey - this |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
302 allows them to work on platforms without a native getaddrinfo() |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
303 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
304 - Create ~/.ssh/known_hosts properly if it doesn't exist |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
305 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
306 - Fix basename() function prototype |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
307 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
308 - Backport some local changes (more #ifdefs for termcodes.c, a fix for missing |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
309 defines on AIX). |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
310 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
311 - Let dbclient be run as "ssh" |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
312 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
313 - Initialise mp_ints by default |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
314 |
c2ac796b130e
merge of 00b67a11e33c3ed390556805ed6d1078528bee70
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
315 0.44test1 - Sun Aug 16 2005 17:43:54 +0800 |
78 | 316 |
317 - TESTING RELEASE - this is the first public release of the client codebase, | |
318 so there are sure to be bugs to be found. In addition, if you're just using | |
319 the server portion, the final binary size probably will increase - I'll | |
320 be trying to get it back down in future releases. | |
321 | |
322 - Dropbear client added - lots of changes to the server code as well to | |
323 generalise things | |
324 | |
325 - IPv6 support added for client, server, and forwarding | |
326 | |
327 - New makefile with more generic support for multiple-program binaries | |
328 | |
69 | 329 0.43 - Fri Jul 16 2004 17:44:54 +0800 |
330 | |
331 - SECURITY: Don't try to free() uninitialised variables in DSS verification | |
332 code. Thanks to Arne Bernin for pointing out this bug. This is possibly | |
333 exploitable, all users with DSS and pubkey-auth compiled in are advised to | |
334 upgrade. | |
335 | |
336 - Clean up agent forwarding socket files correctly, patch from Gerrit Pape. | |
337 | |
338 - Don't go into an infinite loop when portforwarding to servers which don't | |
339 send any initial data/banner. Patch from Nikola Vladov | |
340 | |
341 - Fix for network vs. host byte order in logging remote TCP ports, also | |
342 from Gerrit Pape. | |
343 | |
344 - Initialise many pointers to NULL, for general safety. Also checked cleanup | |
345 code for mp_ints (related to security issues above). | |
346 | |
347 0.42 - Wed Jun 16 2004 12:44:54 +0800 | |
348 | |
349 - Updated to Gerrit Pape's official Debian subdirectory | |
350 | |
351 - Fixed bad check when opening /dev/urandom - thanks to Danny Sung. | |
352 | |
353 - Added -i inetd mode flag, and associated options in options.h . Dropbear | |
354 can be compiled with either normal mode, inetd, or both modes. Thanks | |
355 to Gerrit Pape for basic patch and motivation. | |
356 | |
357 - Use <dirent.h> rather than <sys/dir.h> for POSIX compliance. Thanks to Bill | |
358 Sommerfield. | |
359 | |
360 - Fixed a TCP forwarding (client-local, -L style) bug which caused the whole | |
361 session to close if the TCP connection failed. Thanks to Andrew Braund for | |
362 reporting it and helping track it down. | |
363 | |
364 - Re-enable sigpipe for child processes. Thanks to Gerrit Pape for some | |
365 suggestions, and BSD manpages for a clearer explanation of the behaviour. | |
366 | |
367 - Added manpages, thanks to Gerrit Pape. | |
368 | |
369 - Changed license text for LibTomCrypt and LibTomMath. | |
370 | |
371 - Added strip-static target | |
372 | |
373 - Fixed a bug in agent-forwarding cleanup handler - would segfault | |
374 (dereferencing a null pointer) if agent forwarding had failed. | |
375 | |
376 - Fix behaviour of authorized_keys parsing, so larger (>1024 bit) DSA keys will | |
377 work. Thanks to Dr. Markus Waldeck for the report. | |
378 | |
379 - Fixed local port forwarding code so that the "-j" option will make forwarding | |
380 attempts fail more gracefully. | |
381 | |
382 - Allow repeated requests in a single session if previous ones fail - this fixes PuTTY and some other SCP clients, which try SFTP, then fall-back to SCP if it | |
383 isn't available. Thanks to Stirling Westrup for the report. | |
384 | |
385 - Updated to LibTomCrypt 0.96 and LibTomMath 0.30. The AES code now uses | |
386 smaller non-precomputed tables if DROPBEAR_SMALL_CODE is defined in | |
387 options.h, leading to a significant reduction in the binary size. | |
388 | |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
389 0.41 - Mon Jan 19 2004 22:40:19 +0800 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
390 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
391 - Fix in configure so that cross-compiling works, thanks to numerous people for |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
392 reporting and testing |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
393 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
394 - Terminal mode parsing now handles empty terminal mode strings (sent by |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
395 Windows ssh.com clients), thanks to Ricardo Derbes for the report |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
396 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
397 - Handling is improved for users with no shell specified in /etc/passwd, |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
398 thanks again to Ricardo Derbes |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
399 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
400 - Fix for compiling with --disable-syslog, thanks to gordonfh |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
401 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
402 - Various minor fixes allow scp to work with irix, thanks to Paul Marinceu for |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
403 fixing it up |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
404 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
405 - Use <stropts.h> not <sys/stropts.h>, since the former seems more common |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
406 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
407 0.40 - Tue Jan 13 2004 21:05:19 +0800 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
408 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
409 - Remote TCP forwarding (-R) style implemented |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
410 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
411 - Local and remote TCP forwarding can each be disabled at runtime (-k and -j |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
412 switches) |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
413 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
414 - Fix for problems detecting openpty() with uClibc - many thanks to various |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
415 people for reporting and testing fixes, including (in random order) Cristian |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
416 Ionescu-Idbohrn, James Ewing, Steve Dover, Thomas Lundquist and Frederic |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
417 Lavernhe |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
418 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
419 - Improved portability for IRIX, thanks to Paul Marinceu |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
420 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
421 - AIX and HPUX portability fixes, thanks to Darren Tucker for patches |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
422 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
423 - prngd should now work correctly, thanks to Darren Tucker for the patch |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
424 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
425 - scp compilation on systems without strlcpy() is fixed, thanks to Peter |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
426 Jannesen and David Muse for reporting it (independently and simultaneously :) |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
427 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
428 - Merged in new LibTomCrypt 0.92 and LibTomMath 0.28 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
429 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
430 0.39 - Tue Dec 16 2003 15:19:19 +0800 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
431 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
432 - Better checking of key lengths and parameters for DSS and RSA auth |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
433 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
434 - Print fingerprint of keys used for pubkey auth |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
435 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
436 - More consistent logging of usernames and IPs |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
437 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
438 - Added option to disable password auth (or just for root) at runtime |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
439 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
440 - Avoid including bignum functions which don't give much speed benefit but |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
441 take up binary size |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
442 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
443 - Added a stripped down version of OpenSSH's scp binary |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
444 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
445 - Added additional supporting functions for Irix, thanks to Paul Marinceu |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
446 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
447 - Don't check for unused libraries in configure script |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
448 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
449 - Removed trailing comma in algorithm lists (thanks to Mihnea Stoenescu) |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
450 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
451 - Fixed up channel close handling, always send close packet in response |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
452 (also thanks to Mihnea Stoenescu) |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
453 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
454 - Various makefile improvements for cross-compiling, thanks to Friedrich |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
455 Lobenstock and Mihnea Stoenescu |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
456 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
457 - Use daemon() function if available (or our own copy) rather than separate |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
458 code (thanks to Fr�d�ric Lavernhe for the report and debugging, and Bernard |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
459 Blackham for his suggestion on what to look at) |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
460 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
461 - Fixed up support for first_kex_packet_follows, required to talk to ssh.com |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
462 clients. Thanks to Marian Stagarescu for the bug report. |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
463 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
464 - Avoid using MAXPATHLEN, pointer from Ian Morris |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
465 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
466 - Improved input sanity checking |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
467 |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
468 0.38 - Sat Oct 11 2003 16:28:13 +0800 |
fe6bca95afa7
Makefile.in contains updated files required |