Browse Source

Fix a typo in the getting passphrase prompt for the ed25519 identity key

Peter Palfrader 8 years ago
parent
commit
54c3066c72
2 changed files with 4 additions and 1 deletions
  1. 3 0
      changes/bug19503
  2. 1 1
      src/or/routerkeys.c

+ 3 - 0
changes/bug19503

@@ -0,0 +1,3 @@
+  o Minor bugfixes (user interface):
+    - Fix a typo in the getting passphrase prompt for the ed25519
+      identity key.

+ 1 - 1
src/or/routerkeys.c

@@ -115,7 +115,7 @@ read_encrypted_secret_key(ed25519_secret_key_t *out,
 
   while (1) {
     ssize_t pwlen =
-      do_getpass("Enter pasphrase for master key:", pwbuf, sizeof(pwbuf), 0,
+      do_getpass("Enter passphrase for master key:", pwbuf, sizeof(pwbuf), 0,
                  get_options());
     if (pwlen < 0) {
       saved_errno = EINVAL;