kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit d39246e0e2988d6febed49d2291790fc707710e6
parent 3bb77bbb9fc7f1f5419afb302480aca96ad32a20
Author: Joris Vink <joris@coders.se>
Date:   Sun,  3 Aug 2014 18:22:12 +0200

static.h -> assets.h

Diffstat:
src/cli.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cli.c b/src/cli.c @@ -168,7 +168,7 @@ static const char *config_data = "\tstatic\t/\tpage\n" "}\n"; -static const char *gitignore_data = "*.o\n.objs\n%s.so\nstatic.h\ncert\n"; +static const char *gitignore_data = "*.o\n.objs\n%s.so\nassets.h\ncert\n"; static int s_fd = -1; static char *appl = NULL; @@ -616,7 +616,7 @@ cli_build_asset(char *fpath, struct dirent *dp) cli_file_writef(out, "time_t asset_mtime_%s_%s = %" PRI_TIME_T ";\n", dp->d_name, ext, st.st_mtime); - /* Write the file symbols into static.h so they can be used. */ + /* Write the file symbols into assets.h so they can be used. */ cli_write_asset(dp->d_name, ext); /* Cleanup static file source. */