]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix wide lines from typo-fix patch.
authorNick Mathewson <nickm@torproject.org>
Wed, 7 Feb 2018 15:46:05 +0000 (10:46 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 7 Feb 2018 15:46:05 +0000 (10:46 -0500)
src/common/crypto_ed25519.c
src/or/hs_descriptor.c

index a5a61cba1c3eeb1a6e88aa31a68ff18777890588..b962a59de1db5069a5ff81b53ace4bd5a88faa78 100644 (file)
@@ -225,8 +225,8 @@ ed25519_public_key_is_zero(const ed25519_public_key_t *pubkey)
 
 /* Return a heap-allocated array that contains <b>msg</b> prefixed by the
  * string <b>prefix_str</b>. Set <b>final_msg_len_out</b> to the size of the
- * final array. If an error occurred, return NULL. It's the resonsibility of the
- * caller to free the returned array. */
+ * final array. If an error occurred, return NULL. It's the responsibility of
+ * the caller to free the returned array. */
 static uint8_t *
 get_prefixed_msg(const uint8_t *msg, size_t msg_len,
                  const char *prefix_str,
index 34c7b4a52e9a050200a1009d5b1cb48427b6552d..7388807bc5a20ff671c606d571ae02007f91d7b2 100644 (file)
@@ -745,8 +745,8 @@ get_fake_auth_client_lines(void)
 
 /* Create the inner layer of the descriptor (which includes the intro points,
  * etc.). Return a newly-allocated string with the layer plaintext, or NULL if
- * an error occurred. It's the responsibility of the caller to free the returned
- * string. */
+ * an error occurred. It's the responsibility of the caller to free the
+ * returned string. */
 static char *
 get_inner_encrypted_layer_plaintext(const hs_descriptor_t *desc)
 {
@@ -802,8 +802,8 @@ get_inner_encrypted_layer_plaintext(const hs_descriptor_t *desc)
 /* Create the middle layer of the descriptor, which includes the client auth
  * data and the encrypted inner layer (provided as a base64 string at
  * <b>layer2_b64_ciphertext</b>). Return a newly-allocated string with the
- * layer plaintext, or NULL if an error occurred. It's the responsibility of the
- * caller to free the returned string. */
+ * layer plaintext, or NULL if an error occurred. It's the responsibility of
+ * the caller to free the returned string. */
 static char *
 get_outer_encrypted_layer_plaintext(const hs_descriptor_t *desc,
                                     const char *layer2_b64_ciphertext)