summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2004-08-26 05:10:56 +0000
committerKevin E Martin <kem@kem.org>2004-08-26 05:10:56 +0000
commitf147e94b91751af67000a29ba59d7cd94f163df6 (patch)
tree9b69081b59ed1fa82961fe7c27a4baaf66d90341
parentb97ef364d7a38510efaa1fdd6f4b5aff4728173a (diff)
Fix i810 compilation without Xinerama (Bug #1180, Simon Schubert).
-rw-r--r--lndir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lndir.c b/lndir.c
index 2caa02b..3ce6a92 100644
--- a/lndir.c
+++ b/lndir.c
@@ -194,7 +194,7 @@ dodir (char *fn, /* name of "from" directory, either absolute or
strcpy (p, dp->d_name);
if (n_dirs > 0) {
- if (stat (buf, &sb) < 0) {
+ if (lstat (buf, &sb) < 0) {
mperror (buf);
continue;
}