diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-21 13:21:52 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-21 13:21:52 +0100 |
commit | 015da9826919e388682ae891436220ca9e790d7b (patch) | |
tree | 7031882a168f6333e53287310ec9af9ef8c62dc3 /util-src | |
parent | 0372326fb1dd34e49ef2c614ef9d6a9e048328da (diff) | |
download | prosody-015da9826919e388682ae891436220ca9e790d7b.tar.gz prosody-015da9826919e388682ae891436220ca9e790d7b.zip |
pposix: Change LOG_EMERG -> LOG_CRIT, which makes more sense, thanks to intosi for reporting and an initial patch
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/pposix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index d26639b2..70c15281 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -173,7 +173,7 @@ int level_constants[] = { LOG_INFO, LOG_NOTICE, LOG_WARNING, - LOG_EMERG, + LOG_CRIT, -1 }; int lc_syslog_log(lua_State* L) |