* doctool.c (scan_directory): Ignore "CVS" directories.

This commit is contained in:
Corinna Vinschen 2006-01-12 11:31:55 +00:00
parent 9287bcd534
commit d855cf1ec8
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-01-12 Igor Peshansky <pechtcha@cs.nyu.edu>
* doctool.c (scan_directory): Ignore "CVS" directories.
2005-12-30 Christopher Faylor <cgf@timesys.com>
* relnotes.texinfo: Remove entry about hyperthreaded processor.

View File

@ -1,6 +1,6 @@
/* doctool.c
Copyright 1998,1999,2000,2001 Red Hat, Inc.
Copyright 1998,1999,2000,2001,2006 Red Hat, Inc.
This file is part of Cygwin.
@ -157,7 +157,7 @@ scan_directory(dirname)
STAT(name, &st);
if (S_ISDIR(st.st_mode))
if (S_ISDIR(st.st_mode) && strcmp(de->d_name, "CVS") != 0)
{
scan_directory(name);
}