diff options
Diffstat (limited to 'src/sledjchisl')
-rw-r--r-- | src/sledjchisl/sledjchisl.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c index 87af137..3f420c6 100644 --- a/src/sledjchisl/sledjchisl.c +++ b/src/sledjchisl/sledjchisl.c | |||
@@ -1045,7 +1045,13 @@ int LuaToHash(reqData *Rd, char *file, char *var, qhashtbl_t *tnm, int ret, stru | |||
1045 | if (-1 == clock_gettime(CLOCK_REALTIME, &then)) | 1045 | if (-1 == clock_gettime(CLOCK_REALTIME, &then)) |
1046 | perror_msg("Unable to get the time."); | 1046 | perror_msg("Unable to get the time."); |
1047 | I("Reading %s file %s", type, file); | 1047 | I("Reading %s file %s", type, file); |
1048 | if (!Lua2hashtbl(file, tnm, var)) | 1048 | if (0 != stat(file, st)) // Don't delete this in future, the caller wants st filled. |
1049 | { | ||
1050 | D("No %s file.", file); | ||
1051 | perror_msg("Unable to stat %s", file); | ||
1052 | ret++; | ||
1053 | } | ||
1054 | else if (!Lua2hashtbl(file, tnm, var)) | ||
1049 | { | 1055 | { |
1050 | bitch(Rd, "Broken thing.", "Can't run file."); | 1056 | bitch(Rd, "Broken thing.", "Can't run file."); |
1051 | ret++; | 1057 | ret++; |