fix whitespace issues

svn:r4752
This commit is contained in:
Nick Mathewson
2005-08-08 21:59:48 +00:00
parent 249b72f53e
commit 943ef5256b
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -1395,7 +1395,7 @@ tor_check_dh_key(BIGNUM *bn)
log_fn(LOG_WARN, "Rejecting DH key < 0");
return -1;
}
if (BN_cmp(bn, dh_param_p)>=0){
if (BN_cmp(bn, dh_param_p)>=0) {
log_fn(LOG_WARN, "Rejecting DH key >= p");
return -1;
}
-3
View File
@@ -539,9 +539,6 @@ accounting_record_bandwidth_usage(time_t now)
tor_snprintf(fname, sizeof(fname), "%s/bw_accounting",
get_options()->DataDirectory);
return write_str_to_file(fname, buf, 0);
}