[llvm-commits] [test-suite] r106435 - /test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_manager.c
Jakob Stoklund Olesen
stoklund at 2pi.dk
Mon Jun 21 11:22:05 PDT 2010
Author: stoklund
Date: Mon Jun 21 13:22:05 2010
New Revision: 106435
URL: http://llvm.org/viewvc/llvm-project?rev=106435&view=rev
Log:
Don't print excluded .svn directories in the output
Modified:
test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_manager.c
Modified: test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_manager.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_manager.c?rev=106435&r1=106434&r2=106435&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_manager.c (original)
+++ test-suite/trunk/MultiSource/Applications/ClamAV/clamscan_manager.c Mon Jun 21 13:22:05 2010
@@ -979,8 +979,10 @@
argument = opt_firstarg(opt, "exclude", &optnode);
while(argument) {
if(match_regex(filename, argument) == 1) {
+#if 0
if(!printinfected)
logg("%s: Excluded\n", filename);
+#endif
return 0;
}
argument = opt_nextarg(&optnode, "exclude");
More information about the llvm-commits
mailing list