diff options
| author | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-03-09 15:48:53 +0000 |
|---|---|---|
| committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-03-09 15:48:53 +0000 |
| commit | 212e103f2fae56530be0e0a885a7a676cc31e126 (patch) | |
| tree | caf0e895ae10441f83323a1fff0afc738897d081 | |
| parent | 98085bae8cc0aaef80c781691eb679d93bc69c25 (diff) | |
Notes
| -rw-r--r-- | stand/liblua/lstd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/liblua/lstd.c b/stand/liblua/lstd.c index 8efdaf7256be..12675842f65d 100644 --- a/stand/liblua/lstd.c +++ b/stand/liblua/lstd.c @@ -83,7 +83,7 @@ fopen(const char *filename, const char *mode) #ifdef LOADER_VERIEXEC /* only regular files and only reading makes sense */ if (S_ISREG(st.st_mode) && !(m & O_WRONLY)) { - if (verify_file(fd, filename, 0, VE_GUESS) < 0) { + if (verify_file(fd, filename, 0, VE_GUESS, __func__) < 0) { free(f); close(fd); return (NULL); |
