From 6beda1bcee4396ceced99b8a8c5627940f507ace Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 20 Dec 2020 23:09:31 +0000 Subject: internals: error tracing: record the not-found path upon ENOENT as needed. --- src/internal/slibtool_lconf_impl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/internal/slibtool_lconf_impl.c') diff --git a/src/internal/slibtool_lconf_impl.c b/src/internal/slibtool_lconf_impl.c index 6b55c9f..ad335f1 100644 --- a/src/internal/slibtool_lconf_impl.c +++ b/src/internal/slibtool_lconf_impl.c @@ -51,7 +51,7 @@ static int slbt_lconf_open( : fdlconf; if (fstatat(fdlconfdir,".",&stcwd,0) < 0) - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,0); lconf = lconf ? lconf : "libtool"; fdlconf = openat(fdlconfdir,lconf,O_RDONLY,0); @@ -62,11 +62,11 @@ static int slbt_lconf_open( slbt_lconf_close(fdcwd,fdlconfdir); if (fdparent < 0) - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,0); if (fstat(fdparent,&stparent) < 0) { close(fdparent); - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,0); } if (stparent.st_dev != stcwd.st_dev) { @@ -115,7 +115,7 @@ int slbt_get_lconf_flags( /* map relative libtool script */ if (fstat(fdlconf,&st) < 0) - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,0); addr = mmap( 0,st.st_size, -- cgit v1.2.3