From 9a499a801006950bd44d30e8b136685c3a197d48 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 17 Oct 2004 22:04:15 +0000 Subject: r3025: don't warn about no path in a service, as some backends (like cifs) don't need a path (This used to be commit a8c49a0de3f806bddaf6bd594ec052cf9f4a3fab) --- source4/param/loadparm.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source4/param') diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 283a7f80ce..752f1d950e 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -1909,13 +1909,6 @@ static BOOL service_ok(int iService) ServicePtrs[iService]->bBrowseable = False; } - if (ServicePtrs[iService]->szPath[0] == '\0' && - strwicmp(ServicePtrs[iService]->szService, HOMES_NAME) != 0) { - DEBUG(0, ("No path in service %s - using %s\n", - ServicePtrs[iService]->szService, tmpdir())); - string_set(&ServicePtrs[iService]->szPath, tmpdir()); - } - /* If a service is flagged unavailable, log the fact at level 0. */ if (!ServicePtrs[iService]->bAvailable) DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n", -- cgit