From: Martin Storsjo Date: Sun, 30 Dec 2012 20:52:04 +0000 (+0200) Subject: Remove a useless leftover comment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df6c51884243ef2bd12931e6c617b2be7520ca26;p=rtmpdump Remove a useless leftover comment The variable is any random challenge, thus the byte order doesn't matter at all. --- diff --git a/librtmp/rtmp.c b/librtmp/rtmp.c index 7f1c7ff..9c32bac 100644 --- a/librtmp/rtmp.c +++ b/librtmp/rtmp.c @@ -2598,7 +2598,6 @@ PublisherAuth(RTMP *r, AVal *description) b64enc(md5sum_val, MD5_DIGEST_LENGTH, salted2, SALTED2_LEN); RTMP_Log(RTMP_LOGDEBUG, "%s, b64(md5_1) = %s", __FUNCTION__, salted2); - /* FIXME: what byte order does this depend on? */ challenge2_data = rand(); b64enc((unsigned char *) &challenge2_data, sizeof(int), challenge2, CHALLENGE2_LEN);