From: Guus Sliepen Date: Mon, 1 Nov 2004 15:18:22 +0000 (+0000) Subject: Don't let tinc service depend on NDIS component. X-Git-Tag: release-1.0.3~23 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=faff6498821555e6afb3dc5e4e3b61d448a4fef1 Don't let tinc service depend on NDIS component. --- diff --git a/src/process.c b/src/process.c index 9194bedf..a4e2548f 100644 --- a/src/process.c +++ b/src/process.c @@ -104,7 +104,7 @@ bool install_service(void) { service = CreateService(manager, identname, identname, SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL, - command, "NDIS", NULL, NULL, NULL, NULL); + command, NULL, NULL, NULL, NULL, NULL); if(!service) { logger(LOG_ERR, _("Could not create %s service: %s"), identname, winerror(GetLastError()));