Remove some commented out code in libcrypto
[oweals/openssl.git] / crypto / lhash / lhash.c
index adde832cc45c637016064aaabb00c392e2b6abe8..82de2235997935d8963630c6fb0dd45a8c8a21f8 100644 (file)
@@ -309,11 +309,6 @@ unsigned long OPENSSL_LH_strhash(const char *c)
 
     if ((c == NULL) || (*c == '\0'))
         return (ret);
-/*-
-    unsigned char b[16];
-    MD5(c,strlen(c),b);
-    return(b[0]|(b[1]<<8)|(b[2]<<16)|(b[3]<<24));
-*/
 
     n = 0x100;
     while (*c) {