Be endianly-correct for rendezvous functionality

svn:r1565
This commit is contained in:
Nick Mathewson
2004-04-08 04:47:39 +00:00
parent 15de201041
commit bb46d782ab
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ rend_mid_establish_intro(circuit_t *circ, const char *request, int request_len)
if (request_len < 2+DIGEST_LEN)
goto truncated;
/* First 2 bytes: length of asn1-encoded key. */
asn1len = get_uint16(request);
asn1len = ntohs(get_uint16(request));
/* Next asn1len bytes: asn1-encoded key. */
if (request_len < 2+DIGEST_LEN+asn1len)