Package: squid3 Severity: important Tags: patch Hi,
The squid3 currently fails to build on m68k and the problem is simply a missing pair of parentheses. The attached patch fixes the issue, so it will build fine on m68k. bye, Roman -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: m68k Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.18-m68k-amiga Locale: LANG=de_DE.UTF-8, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
diff -ur squid3-3.0.PRE4.org/helpers/ntlm_auth/SMB/ntlm_auth.c squid3-3.0.PRE4/helpers/ntlm_auth/SMB/ntlm_auth.c --- squid3-3.0.PRE4.org/helpers/ntlm_auth/SMB/ntlm_auth.c 2006-04-23 20:21:56.000000000 +0200 +++ squid3-3.0.PRE4/helpers/ntlm_auth/SMB/ntlm_auth.c 2006-10-20 11:51:33.000000000 +0200 @@ -308,7 +308,7 @@ SEND("NA Broken authentication packet"); return; } - switch le32toh(fast_header->type) { + switch (le32toh(fast_header->type)) { case NTLM_NEGOTIATE: SEND("NA Invalid negotiation request received"); return;