From 89a4dc6cf9175d5fcdd827d90e4fed26576a4570 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 17 Mar 1998 00:32:34 +0000 Subject: show full path in ps by setting it in argv[0] --- source/web/startstop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/web/startstop.c b/source/web/startstop.c index 5f7d2e62062..7ac66f21800 100644 --- a/source/web/startstop.c +++ b/source/web/startstop.c @@ -41,7 +41,7 @@ void start_smbd(void) become_daemon(); - execl(binfile, "smbd", "-D", NULL); + execl(binfile, binfile, "-D", NULL); exit(0); } @@ -62,7 +62,7 @@ void start_nmbd(void) become_daemon(); - execl(binfile, "nmbd", "-D", NULL); + execl(binfile, binfile, "-D", NULL); exit(0); } -- cgit