diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-10-12 14:22:57 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-10-12 14:22:57 (GMT) |
commit | caaf4be9b6812f6b99b9773e9016619caa41dff4 (patch) | |
tree | f7af39609012e61e4b0027a95f33776d39877221 | |
parent | f9baef7ed0d40745a46ea82d08d85949bb48b8c9 (diff) | |
download | monitoring-plugins-caaf4be9b6812f6b99b9773e9016619caa41dff4.tar.gz |
Removed extraneous comma in perf data output
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1492 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/check_ntp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c index f9dc49a..29d2861 100644 --- a/plugins/check_ntp.c +++ b/plugins/check_ntp.c | |||
@@ -765,7 +765,7 @@ int main(int argc, char *argv[]){ | |||
765 | } | 765 | } |
766 | printf("Offset %.10g secs|offset=%.10g", offset, offset); | 766 | printf("Offset %.10g secs|offset=%.10g", offset, offset); |
767 | } | 767 | } |
768 | if (do_jitter) printf(", jitter=%f", jitter); | 768 | if (do_jitter) printf(" jitter=%f", jitter); |
769 | printf("\n"); | 769 | printf("\n"); |
770 | 770 | ||
771 | if(server_address!=NULL) free(server_address); | 771 | if(server_address!=NULL) free(server_address); |