diff options
| author | Alexander Barton <alex@barton.de> | 2013-01-27 23:22:00 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2013-01-27 23:22:00 +0100 |
| commit | 999c11ad49ea1e9c2615e4668f23aae483e549dc (patch) | |
| tree | 7695468f48efdabd497d57415fd43748e0574ff9 /src | |
| parent | c891b5f250c71c1b8f94a002c13db6035ad28305 (diff) | |
| download | ngircd-999c11ad49ea1e9c2615e4668f23aae483e549dc.tar.gz ngircd-999c11ad49ea1e9c2615e4668f23aae483e549dc.zip | |
Exit message: use singular & plural :-)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/log.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ngircd/log.c b/src/ngircd/log.c index 51bd2a5d..375f4bc1 100644 --- a/src/ngircd/log.c +++ b/src/ngircd/log.c @@ -109,8 +109,9 @@ Log_ReInit(void) GLOBAL void Log_Exit( void ) { - Log(LOG_NOTICE, "%s done%s, served %lu connections.", PACKAGE_NAME, - NGIRCd_SignalRestart ? " (restarting)" : "", Conn_CountAccepted()); + Log(LOG_NOTICE, "%s done%s, served %lu connection%s.", PACKAGE_NAME, + NGIRCd_SignalRestart ? " (restarting)" : "", Conn_CountAccepted(), + Conn_CountAccepted() == 1 ? "" : "s"); #ifdef SYSLOG closelog(); #endif |