Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
David Somers wrote: > I just realized that > if(!strcmp(optarg,"@")) > should be > if(strcmp(optarg,"@")) > shouldn't it? (since you want ignore_cvsignore set when the argument IS > matched against "@") strcmp returns 0 when the strings match. > - if (ign_name (dp->d_name)) > + if (ignore_cvsignore==0 && ign_name (dp->d_name)) > { > add_log ('I', dp->d_name); Not sure about this one.. it's quite legitimate to do: -I @ -I *.exe -I *.dll Tony