瀏覽代碼

Merge branch 'maint-0.3.1'

Nick Mathewson 6 年之前
父節點
當前提交
68a2c75ab7
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/or/networkstatus.c

+ 2 - 1
src/or/networkstatus.c

@@ -2312,7 +2312,8 @@ networkstatus_dump_bridge_status_to_file(time_t now)
   char fingerprint[FINGERPRINT_LEN+1];
   char *fingerprint_line = NULL;
 
-  if (me && crypto_pk_get_fingerprint(me->identity_pkey, fingerprint, 0) >= 0) {
+  if (me && crypto_pk_get_fingerprint(me->identity_pkey,
+                                      fingerprint, 0) >= 0) {
     tor_asprintf(&fingerprint_line, "fingerprint %s\n", fingerprint);
   } else {
     log_warn(LD_BUG, "Error computing fingerprint for bridge status.");