]> jfr.im git - irc/evilnet/x3.git/blobdiff - src/md5.c
quick fix for "Unable to find user SOME-SERVER whose mark is changing." errors, bette...
[irc/evilnet/x3.git] / src / md5.c
index 859c9d0dededf0acdbf09c75f068cffcd9ad67c9..e620be0c69c67801309cd1bfa6b6bd06cd48de21 100644 (file)
--- a/src/md5.c
+++ b/src/md5.c
@@ -439,6 +439,7 @@ void md5_process( md5_context *ctx, uint8 data[64] )
     C = ctx->state[2];
     D = ctx->state[3];
 
+#undef F
 #define F(x,y,z) (z ^ (x & (y ^ z)))
 
     P( A, B, C, D,  0,  7, 0xD76AA478 );
@@ -624,7 +625,7 @@ char* md5(const char* pass, char* output)
     {
         sprintf(output + j * 2, "%02x", md5sum[j]);
     }
-    printf("The hash of %s is %s\n\n", pass, output);
+    /* printf("The hash of %s is %s\n\n", pass, output); */
     return 0;
 }