On 05/25/2012 10:43 PM, Eric Blake wrote:
On 05/25/2012 05:56 AM, Stefan Berger wrote:
> ---
> src/util/virmacaddr.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> Index: libvirt/src/util/virmacaddr.h
> ===================================================================
> --- libvirt.orig/src/util/virmacaddr.h
> +++ libvirt/src/util/virmacaddr.h
> @@ -30,6 +30,8 @@
> # define VIR_MAC_PREFIX_BUFLEN 3
> # define VIR_MAC_STRING_BUFLEN VIR_MAC_BUFLEN * 3
Not your fault, but this line is broken. It should be:
# define VIR_MAC_STRING_BUFLEN (VIR_MAC_BUFLEN * 3)
>
> +typedef unsigned char virMacAddr[VIR_MAC_BUFLEN];
> +
> int virMacAddrCompare(const char *mac1, const char *mac2);
> void virMacAddrFormat(const unsigned char *addr,
> char *str);
Simple enough. ACK with the additional fix.
Pushed this one with the additional fix.
Stefan