Kaynağa Gözat

when clients do --list-fingerprint, it's misleading to
give them one, because it will never be the same again


svn:r2800

Roger Dingledine 20 yıl önce
ebeveyn
işleme
fde595feb7
1 değiştirilmiş dosya ile 6 ekleme ve 1 silme
  1. 6 1
      src/or/main.c

+ 6 - 1
src/or/main.c

@@ -1040,6 +1040,11 @@ static void do_list_fingerprint(void)
   char buf[FINGERPRINT_LEN+1];
   crypto_pk_env_t *k;
   const char *nickname = get_options()->Nickname;
+  if(!server_mode(get_options())) {
+    printf("Clients don't have long-term identity keys. Exiting.");
+    return;
+  }
+  tor_assert(nickname);
   if (init_keys() < 0) {
     log_fn(LOG_ERR,"Error initializing keys; exiting");
     return;
@@ -1052,7 +1057,7 @@ static void do_list_fingerprint(void)
     log_fn(LOG_ERR, "Error computing fingerprint");
     return;
   }
-  printf("%s %s\n", nickname?nickname:"client", buf);
+  printf("%s %s\n", nickname, buf);
 }
 
 /** Entry point for password hashing: take the desired password from