Changeset 436 for trunk


Ignore:
Timestamp:
Jun 5, 2013, 8:42:43 PM (11 years ago)
Author:
katerina
Message:

Fix for ticket #340 (spurious reports with growing log files).

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/Changelog

    r435 r436  
     13.0.13:
     2        * Fix race condition in GrowingLogfiles policy that
     3          causes spurious reports (problem noticed by J. Daubert)
     4
    153.0.12:
    26        * Fix compiler warning in bignum.c (unused parameter)
  • trunk/src/sh_unix.c

    r428 r436  
    40024002              if ((theFile->check_mask & MODI_SGROW) != 0)
    40034003                {
     4004                  /* Update size so it matches the one for which the checksum
     4005                     has been computed */
     4006                  fbuf.st_size = length_current;
    40044007                  buf.st_size  = fbuf.st_size;
    40054008                  sl_rewind(rval_open);
     
    40564059              if ((theFile->check_mask & MODI_SGROW) != 0)
    40574060                {
     4061                  /* Update size so it matches the one for which the checksum
     4062                     has been computed */
     4063                  fbuf.st_size = length_current;
    40584064                  buf.st_size  = fbuf.st_size;
    40594065                  sl_rewind(rval_open);
Note: See TracChangeset for help on using the changeset viewer.