diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-07-09 16:45:48 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2010-07-09 16:45:48 +0200 |
commit | 2e4b408ab7dd76bfaefd6cb5ea69fdff381a4b76 (patch) | |
tree | f72d06990b53b926566affffcca5dfd45b27edd7 /src | |
parent | 5bec6c7dbc3bafd5befa60381d2e6b743b7b4b98 (diff) | |
download | conntrack-tools-2e4b408ab7dd76bfaefd6cb5ea69fdff381a4b76.tar.gz conntrack-tools-2e4b408ab7dd76bfaefd6cb5ea69fdff381a4b76.zip |
conntrackd: replace cryptic `mfrm' by `malformed' in `-s'
Looking at the output of `conntrackd -s`; I didn't know what 'mfrm'
meant under the 'message sequence tracking' section so I had to look
up the code for this. While doing so, I replaced 'mfrm' with
'malformed' in the output since I thought other users might be
confused as well as I was looking at that word.
Signed-off-by: Mohit Mehta <mohit.mehta@vyatta.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/sync-mode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sync-mode.c b/src/sync-mode.c index c12a34a..96379f6 100644 --- a/src/sync-mode.c +++ b/src/sync-mode.c @@ -414,9 +414,9 @@ static void dump_stats_sync(int fd) char buf[512]; int size; - size = sprintf(buf, "message sequence tracking:\n" - "%20llu Msgs mfrm " - "%20llu Msgs lost\n\n", + size = sprintf(buf, "message tracking:\n" + "%20llu Malformed msgs " + "%20llu Lost msgs\n\n", (unsigned long long)STATE_SYNC(error).msg_rcv_malformed, (unsigned long long)STATE_SYNC(error).msg_rcv_lost); |