diff options
author | Jan Wagner <waja@cyconet.org> | 2016-11-30 17:38:36 +0100 |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2016-12-01 12:49:40 +0100 |
commit | dbb92c347e8a19b3fbe33a9160776b7a16ea588b (patch) | |
tree | 7cd127b2fb28044e7a6a638061841fb3931583a4 /plugins/check_ntp.c | |
parent | bc4842ab7d0a378a98ee6d37e42bb928c51f9e41 (diff) | |
download | monitoring-plugins-dbb92c347e8a19b3fbe33a9160776b7a16ea588b.tar.gz |
Spelling fixes suggested by lintian
Diffstat (limited to 'plugins/check_ntp.c')
-rw-r--r-- | plugins/check_ntp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c index 5ac6c65b..914b40ce 100644 --- a/plugins/check_ntp.c +++ b/plugins/check_ntp.c @@ -548,7 +548,7 @@ double jitter_request(const char *host, int *status){ DBG(print_ntp_control_message(&req)); /* Attempt to read the largest size packet possible */ req.count=htons(MAX_CM_SIZE); - DBG(printf("recieving READSTAT response")) + DBG(printf("receiving READSTAT response")) read(conn, &req, SIZEOF_NTPCM(req)); DBG(print_ntp_control_message(&req)); /* Each peer identifier is 4 bytes in the data section, which @@ -608,7 +608,7 @@ double jitter_request(const char *host, int *status){ DBG(print_ntp_control_message(&req)); req.count = htons(MAX_CM_SIZE); - DBG(printf("recieving READVAR response...\n")); + DBG(printf("receiving READVAR response...\n")); read(conn, &req, SIZEOF_NTPCM(req)); DBG(print_ntp_control_message(&req)); |