Mercurial > dropbear
comparison svr-runopts.c @ 165:0cfba3034be5
Fixed DEBUG_TRACE macro so that we don't get semicolons left about the place
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 02 Jan 2005 20:25:56 +0000 |
parents | 9337c9f9a607 |
children | 306499676384 |
comparison
equal
deleted
inserted
replaced
161:b9d3f725e00b | 165:0cfba3034be5 |
---|---|
268 void loadhostkeys() { | 268 void loadhostkeys() { |
269 | 269 |
270 int ret; | 270 int ret; |
271 int type; | 271 int type; |
272 | 272 |
273 TRACE(("enter loadhostkeys")); | 273 TRACE(("enter loadhostkeys")) |
274 | 274 |
275 svr_opts.hostkey = new_sign_key(); | 275 svr_opts.hostkey = new_sign_key(); |
276 | 276 |
277 #ifdef DROPBEAR_RSA | 277 #ifdef DROPBEAR_RSA |
278 type = DROPBEAR_SIGNKEY_RSA; | 278 type = DROPBEAR_SIGNKEY_RSA; |
298 #endif | 298 #endif |
299 ) { | 299 ) { |
300 dropbear_exit("No hostkeys available"); | 300 dropbear_exit("No hostkeys available"); |
301 } | 301 } |
302 | 302 |
303 TRACE(("leave loadhostkeys")); | 303 TRACE(("leave loadhostkeys")) |
304 } | 304 } |