Mercurial > noffle
diff src/noffle.c @ 474:e63a3bc27a75 noffle
[svn] * src/noffle.c: Security warning message about config file being globally
readable was missing a parameter.
author | bears |
---|---|
date | Sat, 29 Nov 2003 23:53:31 +0000 |
parents | b540ecb6f218 |
children | 48be71391b9d |
line wrap: on
line diff
--- a/src/noffle.c Sat Nov 29 23:42:33 2003 +0000 +++ b/src/noffle.c Sat Nov 29 23:53:31 2003 +0000 @@ -10,7 +10,7 @@ received for some seconds (to allow multiple clients connect at the same time). - $Id: noffle.c 606 2003-07-23 07:53:42Z bears $ + $Id: noffle.c 621 2003-11-29 23:53:31Z bears $ */ #if HAVE_CONFIG_H @@ -636,7 +636,7 @@ if ( stat( confFile, &statBuf ) == 0 ) { if ( ( statBuf.st_mode & S_IROTH ) != 0 ) - Log_inf( "Security warning: %s is globally readable." ); + Log_inf( "Security warning: %s is globally readable.", confFile ); } return TRUE;