fiss-minit

A standalone service supervisor based on minit
Log | Files | Refs | README | LICENSE

commit d3418d81d555329ccd38dcab2150402948efd15e
parent ae86c263e4a8f6c8b23537e93f333898b7556d8b
Author: leitner <leitner>
Date:   Mon, 13 Aug 2012 15:21:54 +0000

fix comment skipping

Diffstat:
Mserdo.c | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/serdo.c b/serdo.c @@ -159,14 +159,21 @@ int execute(char* s) { start=s; while (*s && *s != '\n') ++s; + /* advance to the end of the line */ if (*s) { + /* not the last line in the file */ char* tmp; *s=0; ++s; + /* If it's the last command in the file, we do not fork+exec but + * we execve it directly. So we need to find out here if this is + * the last command in the file. For that we need to skip all the + * lines after it that are comments */ for (tmp=s; *tmp; ++tmp) if (!isspace(*tmp) && *tmp=='#') { - for (tmp=s+1; *tmp && *tmp!='\n'; ++tmp) ; - } else break; + for (++tmp; *tmp && *tmp!='\n'; ++tmp) ; + } else + break; last=(*tmp==0); } else last=1;