Parcourir la source

fix (harmless) bug

svn:r299
Roger Dingledine il y a 23 ans
Parent
commit
54c57def0b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/or/connection_or.c

+ 1 - 1
src/or/connection_or.c

@@ -523,7 +523,7 @@ int or_handshake_server_process_auth(connection_t *conn) {
     }
     log(LOG_DEBUG,"or_handshake_server_process_auth(): Nonce generated.");
 
-    memmove(buf, buf+2, 46);
+    memmove(buf, buf+2, 44);
     *(uint32_t *)(buf+44) = htonl(conn->bandwidth); /* send max link utilisation */
     memcpy(buf+48,conn->nonce,8); /* append the nonce to the end of the message */