Changeset 435


Ignore:
Timestamp:
May 15, 2013, 11:16:25 PM (12 years ago)
Author:
katerina
Message:

Minor bugfixes.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r425 r435  
    1212dnl start
    1313dnl
    14 AM_INIT_AUTOMAKE(samhain, 3.0.11)
     14AM_INIT_AUTOMAKE(samhain, 3.0.12)
    1515AC_DEFINE([SAMHAIN], 1, [Application is samhain])
    1616AC_CANONICAL_HOST
     
    26912691        ],
    26922692        [
    2693         mylockfile="${localstatedir}/run/${install_name}.pid"
    2694         mylockdir="${localstatedir}/run"
     2693        if test -h /var/run && test -d /run; then
     2694                mylockfile="/run/${install_name}.pid"
     2695                mylockdir="/run"
     2696        else
     2697                mylockfile="${localstatedir}/run/${install_name}.pid"
     2698                mylockdir="${localstatedir}/run"
     2699        fi
    26952700        ]
    26962701)
  • trunk/docs/Changelog

    r434 r435  
    113.0.12:
     2        * Fix compiler warning in bignum.c (unused parameter)
     3        * Detect if /var/run is a symlink and /run exists
    24        * Fix for broken support for audit subsystem (reported
    35          by isquish)
  • trunk/src/bignum.c

    r249 r435  
    214214  if (!dp)
    215215    return;
     216  (void) count;
    216217  free((char *)dp);
    217218  dp = NULL;
    218   count = 0;
    219219}
    220220#endif
Note: See TracChangeset for help on using the changeset viewer.