From: Ton Voon Date: Tue, 11 Mar 2003 22:34:11 +0000 (+0000) Subject: Fixed reading too many argv parameters and changed to asprintf X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8b2381c97634804bad7aa0b48345a9e1216b5512;p=nagiosplug.git Fixed reading too many argv parameters and changed to asprintf git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@397 f882894a-f735-0410-b71e-b25c423dba1c --- diff --git a/plugins/negate.c b/plugins/negate.c index e10c78d..1603342 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -259,8 +259,8 @@ process_arguments (int argc, char **argv) } } - command_line = strscpy (command_line, argv[optind]); - for (c = optind+1; c <= argc; c++) { + asprintf (&command_line, "%s", argv[optind]); + for (c = optind+1; c < argc; c++) { asprintf (&command_line, "%s %s", command_line, argv[c]); }