diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-02-04 23:30:57 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-02-04 23:30:57 -0800 |
commit | 022ea8cfd80b97221abfbf2ba09110c0ecef3dc6 (patch) | |
tree | fb73620e086bd59134b41e9bc11d401df9219f4f /parser.c | |
parent | c554db7ce82378612673e33d905b29f2d820a1a5 (diff) | |
download | txr-022ea8cfd80b97221abfbf2ba09110c0ecef3dc6.tar.gz txr-022ea8cfd80b97221abfbf2ba09110c0ecef3dc6.tar.bz2 txr-022ea8cfd80b97221abfbf2ba09110c0ecef3dc6.zip |
fstat: turn into true alias.
We can get rid of fstat_wrap entirely and make
the lstat and fstat function bindings point to the same
function.
* parser.c (load_rcfile): Call stat_wrap instead of
fstat_wrap.
* sysif.c (stat_wrap): Static function becomes extern. Useless
forward declaration removed.
(fstat_wrap): Static function removed.
(sysif_init): Bind fstat and lstat to the same function
object.
* sysif.h (fstat_wrap): Declaration removed.
(stat_wrap): Declaration added.
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -798,7 +798,7 @@ static void load_rcfile(val name) open_txr_file(name, &lisp_p, &resolved_name, &stream); if (stream) { - if (!funcall1(path_private_to_me_p, fstat_wrap(stream))) { + if (!funcall1(path_private_to_me_p, stat_wrap(stream))) { format(std_output, lit("** possible security problem: ~a is writable to others\n"), name, nao); |