From: Francesco Chemolli Date: Tue, 30 Dec 2014 21:47:57 +0000 (+0100) Subject: Fixed Eui::Eui64::encode stub X-Git-Tag: merge-candidate-3-v1~384^2~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5213135086f40e3de6b3d4fbc52aa0eacffc3bed;p=thirdparty%2Fsquid.git Fixed Eui::Eui64::encode stub --- diff --git a/src/tests/stub_libeui.cc b/src/tests/stub_libeui.cc index b5d5a330e2..6c8e586b10 100644 --- a/src/tests/stub_libeui.cc +++ b/src/tests/stub_libeui.cc @@ -26,7 +26,7 @@ bool Eui::Eui48::lookup(const Ip::Address &c) STUB_RETVAL(false) #if USE_SQUID_EUI const unsigned char *Eui::Eui64::get(void) STUB_RETVAL(NULL) bool Eui::Eui64::decode(const char *asc) STUB_RETVAL(false) -bool Eui::Eui64::encode(char *buf, const int len) STUB_RETVAL(false) +bool Eui::Eui64::encode(char *buf, const int len) const STUB_RETVAL(false) bool Eui::Eui64::lookup(const Ip::Address &c) STUB_RETVAL(false) bool Eui::Eui64::lookupNdp(const Ip::Address &c) STUB_RETVAL(false) bool Eui::Eui64::lookupSlaac(const Ip::Address &c) STUB_RETVAL(false)