Changeset 492 for trunk/src/sh_hash.c
- Timestamp:
- Nov 1, 2015, 12:55:04 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_hash.c
r488 r492 1880 1880 char * linkComp; 1881 1881 int maxcomp; 1882 volatile int checksum_flag = 0; 1882 1883 1883 1884 char change_code[16]; … … 1963 1964 (theFile->check_flags & MODI_CHK) != 0) 1964 1965 { 1966 checksum_flag = 1; 1967 1965 1968 if ((theFile->check_flags & MODI_SGROW) == 0) 1966 1969 { … … 2053 2056 (theFile->check_flags & MODI_INO) != 0) 2054 2057 { 2055 modi_mask |= MODI_INO; 2056 change_code[3] = 'I'; 2057 TPT ((0, FIL__, __LINE__, _("mod=<inode>"))); 2058 if ((theFile->check_flags & MODI_SGROW) == 0) 2059 { 2060 modi_mask |= MODI_INO; 2061 change_code[3] = 'I'; 2062 TPT ((0, FIL__, __LINE__, _("mod=<inode>"))); 2063 } 2064 else 2065 { 2066 /* growing log, checksum ok but inode changed 2067 */ 2068 if (checksum_flag == 0) 2069 { 2070 if (S_FALSE == sh_check_rotated_log (theFile->fullpath, (UINT64) p->theFile.size, 2071 (UINT64) p->theFile.ino, p->theFile.checksum, 2072 p->theFile.checkflags)) 2073 { 2074 modi_mask |= MODI_INO; 2075 change_code[3] = 'I'; 2076 TPT ((0, FIL__, __LINE__, _("mod=<inode>"))); 2077 } 2078 else 2079 { 2080 /* logfile has been rotated */ 2081 p->theFile.size = theFile->size; 2082 p->theFile.ino = theFile->ino; 2083 sl_strlcpy(p->theFile.checksum, fileHash, KEY_LEN+1); 2084 } 2085 } 2086 else 2087 { 2088 modi_mask |= MODI_INO; 2089 change_code[3] = 'I'; 2090 TPT ((0, FIL__, __LINE__, _("mod=<inode>"))); 2091 } 2092 } 2058 2093 } 2059 2094
Note:
See TracChangeset
for help on using the changeset viewer.