home *** CD-ROM | disk | FTP | other *** search
- --- Makefile.rtr Tue Feb 4 13:46:29 1997
- +++ Makefile Tue Feb 4 13:47:18 1997
- @@ -29,7 +29,7 @@
- COMPILE_ET= ../com_err/compile_et
- LINT= lint
- MALLOC=
- -DEFINES= $(MALLOC)
- +DEFINES= $(MALLOC) -DPOSIX
-
-
- # These variables apply only if you want this program to recognize
- --- directories.c.rtr Tue Feb 4 13:46:26 1997
- +++ directories.c Tue Feb 4 14:16:59 1997
- @@ -236,7 +236,7 @@
- specs->st_ino = realspecs.st_ino;
- specs->st_mode = realspecs.st_mode;
- specs->st_size = realspecs.st_size;
- - specs->st_ctime = realspecs.st_ctime;
- + specs->st_ctime_local = realspecs.st_ctime;
- #ifdef USE_BLOCKS
- specs->st_blocks = realspecs.st_blocks;
- #endif
- --- delete.c.rtr Tue Feb 4 13:46:26 1997
- +++ delete.c Tue Feb 4 13:58:42 1997
- @@ -16,6 +16,7 @@
-
- #include <sys/types.h>
- #include <stdio.h>
- +#include <unistd.h>
- #ifdef POSIX
- #include <dirent.h>
- #define direct dirent
- --- util.c.rtr Tue Feb 4 13:46:27 1997
- +++ util.c Tue Feb 4 14:17:20 1997
- @@ -244,7 +244,7 @@
- filerec *file_ent;
- time_t current_time, min_days;
- {
- - if ((current_time - file_ent->specs.st_ctime) / 86400 >= min_days)
- + if ((current_time - file_ent->specs.st_ctime_local) / 86400 >= min_days)
- return(1);
- else
- return(0);
- --- directories.h.rtr Tue Feb 4 13:46:21 1997
- +++ directories.h Tue Feb 4 14:16:13 1997
- @@ -39,7 +39,7 @@
- ino_t st_ino;
- unsigned short st_mode;
- off_t st_size;
- - time_t st_ctime;
- + time_t st_ctime_local;
- #ifdef USE_BLOCKS
- long st_blocks;
- #endif
-