From: Amos Jeffries Date: Thu, 15 Oct 2009 12:15:32 +0000 (+1300) Subject: Fix bits uncovered in libeui by CentOS X-Git-Tag: SQUID_3_2_0_1~655 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55ae2269e26af3149bd05a2c4278fd194689f3fa;p=thirdparty%2Fsquid.git Fix bits uncovered in libeui by CentOS --- diff --git a/src/eui/Eui48.h b/src/eui/Eui48.h index 09cf2d4cb5..4e3b084574 100644 --- a/src/eui/Eui48.h +++ b/src/eui/Eui48.h @@ -30,7 +30,7 @@ public: return true; }; - void clear() { memset(eui, NULL, SZ_EUI48_BUF); }; + void clear() { memset(eui, 0, SZ_EUI48_BUF); }; /** * Decode an ascii representation of an EUI-48 ethernet address. diff --git a/test-suite/buildtests/layer-01-minimal.opts b/test-suite/buildtests/layer-01-minimal.opts index 076ae0666f..567c0678dc 100644 --- a/test-suite/buildtests/layer-01-minimal.opts +++ b/test-suite/buildtests/layer-01-minimal.opts @@ -49,7 +49,7 @@ OPTS=" \ --disable-kill-parent-hack \ --disable-snmp \ --disable-cachemgr-hostname \ - --disable-arp-acl \ + --disable-eui \ --disable-htcp \ --disable-ssl \ --disable-forw-via-db \