X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/c499612a7f1024a183d0200ef5f1ea7fba63a3e4..afe133ecef9a8593ecf7fcbb557276c05f2bc7ab:/missing/getservent.c?ds=sidebyside diff --git a/missing/getservent.c b/missing/getservent.c index 198644f2..39cee068 100644 --- a/missing/getservent.c +++ b/missing/getservent.c @@ -65,9 +65,9 @@ const char *etc_path(const char *file) return (file); else #ifdef _WIN32 - nd_snprintf(path, sizeof(path), "%s%s%s", env, __PATH_ETC_INET, file); + snprintf(path, sizeof(path), "%s%s%s", env, __PATH_ETC_INET, file); #else - nd_snprintf(path, sizeof(path), "%s%s", env, file); + snprintf(path, sizeof(path), "%s%s", env, file); #endif return (path); }