summaryrefslogtreecommitdiffstats
path: root/plugins/runcmd.c
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2023-09-19 09:06:39 (GMT)
committerGitHub <noreply@github.com>2023-09-19 09:06:39 (GMT)
commit220455a11e8f1dd3a86ac4725cf0c799c8e3b21b (patch)
treefffe9429dbf796841a1d2699d49c921f3bf369d1 /plugins/runcmd.c
parent2f0119ef1d4c009f1ed7fc10f5a6a1e0b224c3d2 (diff)
parentfe239bf1c458f62499f3cdaf66d9d48957375a73 (diff)
downloadmonitoring-plugins-220455a11e8f1dd3a86ac4725cf0c799c8e3b21b.tar.gz
Merge pull request #1870 from RincewindsHat/compiler_warning_part_5
Compiler warning part 5
Diffstat (limited to 'plugins/runcmd.c')
-rw-r--r--plugins/runcmd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/runcmd.c b/plugins/runcmd.c
index c1d675d..102191e 100644
--- a/plugins/runcmd.c
+++ b/plugins/runcmd.c
@@ -116,10 +116,6 @@ np_runcmd_open(const char *cmdstring, int *pfd, int *pfderr)
116 env[0] = strdup("LC_ALL=C"); 116 env[0] = strdup("LC_ALL=C");
117 env[1] = '\0'; 117 env[1] = '\0';
118 118
119 /* if no command was passed, return with no error */
120 if (cmdstring == NULL)
121 return -1;
122
123 /* make copy of command string so strtok() doesn't silently modify it */ 119 /* make copy of command string so strtok() doesn't silently modify it */
124 /* (the calling program may want to access it later) */ 120 /* (the calling program may want to access it later) */
125 cmdlen = strlen(cmdstring); 121 cmdlen = strlen(cmdstring);