Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / sources / PXDirMonitor.c
index b6ec9827944837dac5b0b3cd64bc6465ab5c3881..49405e4200ccc0d18143e268daf2515de0489892 100644 (file)
@@ -39,7 +39,7 @@
 
 /* Help printing routine */
 void usage(void);
-/* computation function for DirScan */
+/* computation function for dir_scan */
 int ComputeValues(struct dirent * direntry);
 void HandSIGTERM(int signo);
 
@@ -124,13 +124,13 @@ int main(int argc, char *argv[])
     while (1) {
        MutexLock(mutex);                              /* lock shared memory */
        memset(shmptr, 0, sizeof(struct DirProp));    /* erase previous data */
-       DirScan(argv[1], ComputeValues);                     /* execute scan */
+       dir_scan(argv[1], ComputeValues);                    /* execute scan */
        MutexUnlock(mutex);                          /* unlock shared memory */
        sleep(pause);                              /* sleep until next watch */
     }
 }
 /*
- * Routine to compute directory properties inside DirScan
+ * Routine to compute directory properties inside dir_scan
  */
 int ComputeValues(struct dirent * direntry) 
 {