Commit dcfb69ba authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Drop a _.ok file if we are all done.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2840 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent fc78dd91
...@@ -308,6 +308,7 @@ int ...@@ -308,6 +308,7 @@ int
main(int argc, char * const *argv) main(int argc, char * const *argv)
{ {
int ch; int ch;
FILE *fok;
setbuf(stdout, NULL); setbuf(stdout, NULL);
setbuf(stderr, NULL); setbuf(stderr, NULL);
...@@ -330,5 +331,8 @@ main(int argc, char * const *argv) ...@@ -330,5 +331,8 @@ main(int argc, char * const *argv)
argv += optind; argv += optind;
for (ch = 0; ch < argc; ch++) for (ch = 0; ch < argc; ch++)
exec_file(argv[ch]); exec_file(argv[ch]);
fok = fopen("_.ok", "w");
if (fok != NULL)
fclose(fok);
return (0); return (0);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment