summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--THANKS.in1
-rw-r--r--plugins/check_procs.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/THANKS.in b/THANKS.in
index 01fc458..9624911 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -205,3 +205,4 @@ Duncan Ferguson
205Dick van den Burg 205Dick van den Burg
206Matthias Eble 206Matthias Eble
207Sebastian Schubert 207Sebastian Schubert
208Jason Hoos
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 2c8c379..87f0024 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -193,7 +193,7 @@ main (int argc, char **argv)
193 strip (procargs); 193 strip (procargs);
194 194
195 /* Some ps return full pathname for command. This removes path */ 195 /* Some ps return full pathname for command. This removes path */
196 procprog = base_name(procprog); 196 strcpy(procprog, base_name(procprog));
197 197
198 /* we need to convert the elapsed time to seconds */ 198 /* we need to convert the elapsed time to seconds */
199 procseconds = convert_to_seconds(procetime); 199 procseconds = convert_to_seconds(procetime);