Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Thu, 16 May 2013 02:46:52 -0700
From: Jeremi Gosney <epixoip@...dshell.nl>
To: john-dev@...ts.openwall.com
Subject: missing parentheses in dynamic_fmt.c

dynamic_fmt.c is missing a right parentheses on line 697 that prevents
it from compiling on big endian.

#if !ARCH_LITTLE_ENDIAN
-    memset(input_buf_X86, 0, FLAT_INP_BUF_SZ;
+    memset(input_buf_X86, 0, FLAT_INP_BUF_SZ);
#endif

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.