1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-01-12 16:51:07 +00:00

if ngircd doesn't run chrooted, it tries to chdir

to the users working directory (as returned by getpwuid()).
Failing to chdir to that directory isn't an error; so
log with LOG_INFO and prefix the message with "Notice".
This commit is contained in:
Florian Westphal 2007-11-15 01:03:01 +00:00
parent e47c9d750f
commit ad7361dfe0

View File

@ -12,7 +12,7 @@
#include "portab.h"
static char UNUSED id[] = "$Id: ngircd.c,v 1.115 2007/04/09 01:24:05 alex Exp $";
static char UNUSED id[] = "$Id: ngircd.c,v 1.116 2007/11/15 01:03:01 fw Exp $";
/**
* @file
@ -797,7 +797,7 @@ NGIRCd_Init( bool NGIRCd_NoDaemon )
if( chdir( pwd->pw_dir ) == 0 )
Log( LOG_DEBUG, "Changed working directory to \"%s\" ...", pwd->pw_dir );
else
Log( LOG_ERR, "Can't change working directory to \"%s\": %s",
Log( LOG_INFO, "Notice: Can't change working directory to \"%s\": %s",
pwd->pw_dir, strerror( errno ));
}
} else {