Commit 5316fef5 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@2840 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 525a2228
......@@ -308,6 +308,7 @@ int
main(int argc, char * const *argv)
{
int ch;
FILE *fok;
setbuf(stdout, NULL);
setbuf(stderr, NULL);
......@@ -330,5 +331,8 @@ main(int argc, char * const *argv)
argv += optind;
for (ch = 0; ch < argc; ch++)
exec_file(argv[ch]);
fok = fopen("_.ok", "w");
if (fok != NULL)
fclose(fok);
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