summaryrefslogtreecommitdiffstats
path: root/plugins/check_hpjd.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2003-04-08 20:49:03 +0000
committerTon Voon <tonvoon@users.sourceforge.net>2003-04-08 20:49:03 +0000
commita4d8fd9bf597262e1e734c10b2f3222532704d85 (patch)
treedba13f62ff544364565ac7e24408e86016dd3073 /plugins/check_hpjd.c
parente7793eb31b7e81c05618a1b6648cad036bfde453 (diff)
downloadmonitoring-plugins-a4d8fd9bf597262e1e734c10b2f3222532704d85.tar.gz
Changed // to /* */ comments as some compilers do not like them
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/branches/release-1.3.0@480 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_hpjd.c')
-rw-r--r--plugins/check_hpjd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c
index 267de2e0..291a1f17 100644
--- a/plugins/check_hpjd.c
+++ b/plugins/check_hpjd.c
@@ -525,10 +525,10 @@ print_usage (void)
525 return STATE_UNKNOWN; 525 return STATE_UNKNOWN;
526 } 526 }
527 527
528 // get the IP address of the JetDirect device 528 /* get the IP address of the JetDirect device */
529 strcpy(address,argv[1]); 529 strcpy(address,argv[1]);
530 530
531 // get the community name to use for SNMP communication 531 /* get the community name to use for SNMP communication */
532 if(argc>=3) 532 if(argc>=3)
533 strcpy(community,argv[2]); 533 strcpy(community,argv[2]);
534 else 534 else