diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-08 21:16:37 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-08 21:16:37 -0300 |
commit | 845493306279f446dbac9568a0a1e0f442e615dd (patch) | |
tree | dbf0a36e50a268b456760ce881a802d28979cc5f /dpi/https.c | |
parent | 283a7960e615b14c21b7ce757b0fcbe5c945bb95 (diff) |
's/if(/if (/g' 's/for(/for (/g' 's/while(/while (/g', and indentation.
Diffstat (limited to 'dpi/https.c')
-rw-r--r-- | dpi/https.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dpi/https.c b/dpi/https.c index c90c4a40..961fc2d6 100644 --- a/dpi/https.c +++ b/dpi/https.c @@ -589,7 +589,7 @@ static int save_certificate_home(X509 * cert) snprintf(buf,4096,"%s/.dillo/certs/", dGethomedir()); mkdir(buf, 01777); - do{ + do { snprintf(buf, 4096, "%s/.dillo/certs/%lx.%u", dGethomedir(), X509_subject_name_hash(cert), i); @@ -612,7 +612,7 @@ static int save_certificate_home(X509 * cert) } i++; /*Don't loop too many times - just give up*/ - } while( i < 1024 ); + } while (i < 1024); return retval; } |