diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2004-02-20 03:00:19 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2004-02-20 03:00:19 (GMT) |
commit | 55f8f712fb2808ff9e4c478d75aaf7895aa55c84 (patch) | |
tree | 8647a96a3a1803b63644890e579b275395f90d85 /plugins | |
parent | f2bfb2f7913b25952499bbfc4bfcfa837288d617 (diff) | |
download | monitoring-plugins-55f8f712fb2808ff9e4c478d75aaf7895aa55c84.tar.gz |
- compiler warning removed (but usage2 messages badly broken)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@812 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_procs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 64e62dd..782a9a1 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -376,7 +376,7 @@ process_arguments (int argc, char **argv) | |||
376 | pw = getpwuid ((uid_t) uid); | 376 | pw = getpwuid ((uid_t) uid); |
377 | /* check to be sure user exists */ | 377 | /* check to be sure user exists */ |
378 | if (pw == NULL) | 378 | if (pw == NULL) |
379 | usage2 (_("UID %d was not found\n"), uid); | 379 | usage2 (_("UID %s was not found\n"), optarg); |
380 | } | 380 | } |
381 | else { | 381 | else { |
382 | pw = getpwnam (optarg); | 382 | pw = getpwnam (optarg); |