From 266d9e013f55f623384a008c42338a6a8e5e4e4f Mon Sep 17 00:00:00 2001 From: Martin Baulig Date: Thu, 17 Dec 1998 15:01:02 +0000 Subject: [PATCH] Don't include . (program_invocation_name, 1998-12-17 Martin Baulig * gnuserv.c: Don't include . (program_invocation_name, program_invocation_short_name): Define this here. --- src/daemon/ChangeLog | 6 ++++++ src/daemon/gnuserv.c | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/daemon/ChangeLog b/src/daemon/ChangeLog index eaef21a2..d0c42dec 100644 --- a/src/daemon/ChangeLog +++ b/src/daemon/ChangeLog @@ -1,3 +1,9 @@ +1998-12-17 Martin Baulig + + * gnuserv.c: Don't include . + (program_invocation_name, program_invocation_short_name): Define + this here. + 1998-12-09 Martin Baulig Larger changes to the daemon: diff --git a/src/daemon/gnuserv.c b/src/daemon/gnuserv.c index cc6873f1..f924b090 100644 --- a/src/daemon/gnuserv.c +++ b/src/daemon/gnuserv.c @@ -41,7 +41,6 @@ #include -#include #include #include "daemon.h" @@ -50,6 +49,14 @@ #include #endif +#ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME +char *program_invocation_short_name; +#endif + +#ifndef HAVE_PROGRAM_INVOCATION_NAME +char *program_invocation_name; +#endif + extern void handle_parent_connection __P ((int)); extern void handle_slave_connection __P ((int, int)); extern void handle_ipc_connection __P ((int));