summaryrefslogtreecommitdiffstats
path: root/apps/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c
index fcdbb28fce..0bac986a6f 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -1387,7 +1387,7 @@ int split_string(char *str, const char split_char, char *vector[], const int vec
char sep[2] = {split_char, '\0'};
char *e, *p = strtok_r(str, sep, &e);
- /* *p in the condition takes care of trailing splitters */
+ /* strtok takes care of leading & trailing splitters */
for(i = 0; i < vector_length; i++)
{
vector[i] = p;