git-svn-id: http://ltt.polymtl.ca/svn@460 04897980-b3bd-0310-b5e0-8ef037075253
authoryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 30 Jan 2004 16:44:39 +0000 (16:44 +0000)
committeryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 30 Jan 2004 16:44:39 +0000 (16:44 +0000)
ltt/branches/poly/ltt/tracefile.c

index ee77b7af2188c82c0b08c288f76626cd6006c1dc..2d2bba390df0a3c86ac920e26362137c76624b4f 100644 (file)
@@ -349,7 +349,8 @@ void getCpuFileInfo(LttTrace *t, char* cpu)
 
   while((entry = readdir(dir)) != NULL){
     if(strcmp(entry->d_name,".") != 0 &&
-       strcmp(entry->d_name,"..") != 0 ){
+       strcmp(entry->d_name,"..") != 0 &&
+       strcmp(entry->d_name,".svn") != 0){      
       strcpy(name,cpu);
       strcat(name,entry->d_name);
       ltt_tracefile_open_cpu(t,name);
This page took 0.02417 seconds and 4 git commands to generate.