diff options
author | delphij <delphij@FreeBSD.org> | 2008-01-30 22:11:59 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2008-01-30 22:11:59 +0000 |
commit | bf18e9a1d927e9bce1322e310e5d7c5a5df8768f (patch) | |
tree | c70faac6c0f969c8543d30b732f371e53b1c6eda /usr.sbin/newsyslog | |
parent | cdf5b4e4f4ac50da9caf07164d55049318aae62a (diff) | |
download | FreeBSD-src-bf18e9a1d927e9bce1322e310e5d7c5a5df8768f.zip FreeBSD-src-bf18e9a1d927e9bce1322e310e5d7c5a5df8768f.tar.gz |
Fix two typos.
Diffstat (limited to 'usr.sbin/newsyslog')
-rw-r--r-- | usr.sbin/newsyslog/newsyslog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/newsyslog/newsyslog.c b/usr.sbin/newsyslog/newsyslog.c index a357062..ef74f23 100644 --- a/usr.sbin/newsyslog/newsyslog.c +++ b/usr.sbin/newsyslog/newsyslog.c @@ -91,8 +91,8 @@ __FBSDID("$FreeBSD$"); /* * Bit-values for the 'flags' parsed from a config-file entry. */ -#define CE_COMPACT 0x0001 /* Compact the achived log files with gzip. */ -#define CE_BZCOMPACT 0x0002 /* Compact the achived log files with bzip2. */ +#define CE_COMPACT 0x0001 /* Compact the archived log files with gzip. */ +#define CE_BZCOMPACT 0x0002 /* Compact the archived log files with bzip2. */ #define CE_BINARY 0x0008 /* Logfile is in binary, do not add status */ /* messages to logfile(s) when rotating. */ #define CE_NOSIGNAL 0x0010 /* There is no process to signal when */ |