aboutsummaryrefslogtreecommitdiffstats
path: root/tls.c
diff options
context:
space:
mode:
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/tls.c b/tls.c
index 89b64451..80d20c8b 100644
--- a/tls.c
+++ b/tls.c
@@ -65,8 +65,14 @@ static void list_file(const char *fname)
struct tm *mt;
char datebuf[50];
char linkbuf[4096];
-
- if (do_lstat(fname, &buf) == -1)
+ int ret;
+
+#if SUPPORT_LINKS
+ ret = do_lstat(fname, &buf);
+#else
+ ret = do_stat(fname, &buf);
+#endif
+ if (ret < 0)
failed("stat", fname);
/* The size of anything but a regular file is probably not