=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/repository.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- src/usr.bin/cvs/repository.c 2007/01/25 18:56:33 1.9 +++ src/usr.bin/cvs/repository.c 2007/02/07 23:47:56 1.10 @@ -1,4 +1,4 @@ -/* $OpenBSD: repository.c,v 1.9 2007/01/25 18:56:33 otto Exp $ */ +/* $OpenBSD: repository.c,v 1.10 2007/02/07 23:47:56 todd Exp $ */ /* * Copyright (c) 2006 Joris Vink * @@ -119,10 +119,10 @@ /* * nfs and afs will show d_type as DT_UNKNOWN * for files and/or directories so when we encounter - * this we call stat() on the path to be sure. + * this we call lstat() on the path to be sure. */ if (dp->d_type == DT_UNKNOWN) { - if (stat(rpath, &st) == -1) + if (lstat(rpath, &st) == -1) fatal("'%s': %s", rpath, strerror(errno)); switch (st.st_mode & S_IFMT) {