]> The Tcpdump Group git mirrors - tcpdump/blobdiff - netdissect.c
Fix spaces
[tcpdump] / netdissect.c
index 7360d8dcd77c4d0025d3458c509c94c8a59695ec..d32de4e97816f8f96acab65397345fe099f7204b 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 #ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
 #endif
 
 #include "netdissect-stdinc.h"
@@ -122,14 +122,14 @@ nd_load_smi_module(const char *module, char *errbuf, size_t errbuf_size)
 {
 #ifdef USE_LIBSMI
        if (smiLoadModule(module) == 0) {
-               snprintf(errbuf, errbuf_size, "could not load MIB module %s",
+               nd_snprintf(errbuf, errbuf_size, "could not load MIB module %s",
                    module);
                return (-1);
        }
        nd_smi_module_loaded = 1;
        return (0);
 #else
-       snprintf(errbuf, errbuf_size, "MIB module %s not loaded: no libsmi support",
+       nd_snprintf(errbuf, errbuf_size, "MIB module %s not loaded: no libsmi support",
            module);
        return (-1);
 #endif