Minor, sync variable name with FreeBSD

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
Joachim Nilsson 2019-10-28 20:42:40 +01:00
parent 4c6aa23dba
commit b66090ce4f

View File

@ -334,7 +334,8 @@ struct code FacNames[] = {
{ NULL, -1 }, { NULL, -1 },
}; };
int Debug; /* debug flag */ static int Debug; /* debug flag */
static int Foreground = 0; /* don't fork - don't run in daemon mode */
char LocalHostName[MAXHOSTNAMELEN + 1]; /* our hostname */ char LocalHostName[MAXHOSTNAMELEN + 1]; /* our hostname */
char *LocalDomain; /* our local domain name */ char *LocalDomain; /* our local domain name */
char *emptystring = ""; char *emptystring = "";
@ -467,7 +468,7 @@ int main(int argc, char *argv[])
break; break;
case 'n': /* don't fork */ case 'n': /* don't fork */
NoFork = 1; Foreground = 1;
break; break;
case 'p': /* path to regular log socket */ case 'p': /* path to regular log socket */
@ -505,7 +506,7 @@ int main(int argc, char *argv[])
usage(1); usage(1);
#ifndef TESTING #ifndef TESTING
if (!(Debug || NoFork)) { if ((!Foreground) && (!Debug)) {
logit("Checking pidfile.\n"); logit("Checking pidfile.\n");
if (!check_pid(PidFile)) { if (!check_pid(PidFile)) {
signal(SIGTERM, doexit); signal(SIGTERM, doexit);