X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fdhcp.c;h=0345efe1509cb8802a09272ceaa3308be84a4078;hb=7fa710e43fdf2dbf7fe41877cf73e04ccc4a7166;hp=a8f024482b3a8a62eec3d3baf51a4a53730cf091;hpb=691556222cadce47c117134ac1584b75a294367e;p=openvswitch diff --git a/lib/dhcp.c b/lib/dhcp.c index a8f02448..0345efe1 100644 --- a/lib/dhcp.c +++ b/lib/dhcp.c @@ -24,10 +24,10 @@ #include #include "dynamic-string.h" #include "ofpbuf.h" - -#define THIS_MODULE VLM_dhcp #include "vlog.h" +VLOG_DEFINE_THIS_MODULE(dhcp); + /* Information about a DHCP argument type. */ struct arg_type { const char *name; /* Name. */ @@ -497,7 +497,7 @@ dhcp_option_equals(const struct dhcp_option *a, const struct dhcp_option *b) { return ((a->data != NULL) == (b->data != NULL) && a->n == b->n - && !memcmp(a->data, b->data, a->n)); + && (!a->data || !memcmp(a->data, b->data, a->n))); } /* Replaces 'ds' by a string representation of 'msg'. If 'multiline' is