[llvm-commits] [test-suite] r108393 - /test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_treewalk.c
Daniel Dunbar
daniel at zuster.org
Wed Jul 14 18:18:55 PDT 2010
Author: ddunbar
Date: Wed Jul 14 20:18:55 2010
New Revision: 108393
URL: http://llvm.org/viewvc/llvm-project?rev=108393&view=rev
Log:
Don't print excluded .svn directories in the output (in another place), to match
reference output.
Modified:
test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_treewalk.c
Modified: test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_treewalk.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_treewalk.c?rev=108393&r1=108392&r2=108393&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_treewalk.c (original)
+++ test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_treewalk.c Wed Jul 14 20:18:55 2010
@@ -70,8 +70,10 @@
argument = opt_firstarg(opt, "exclude-dir", &optnode);
while(argument) {
if(match_regex(dirname, argument) == 1) {
+#if 0
if(!printinfected)
logg("%s: Excluded\n", dirname);
+#endif
return 0;
}
argument = opt_nextarg(&optnode, "exclude-dir");
More information about the llvm-commits
mailing list