Changeset 419 for trunk/src/sh_audit.c


Ignore:
Timestamp:
Nov 16, 2012, 7:51:35 PM (12 years ago)
Author:
katerina
Message:

Fix for ticket #323 (build error with Linux audit).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_audit.c

    r415 r419  
    278278{
    279279  struct aud_list * this = SH_ALLOC(sizeof(struct aud_list));
    280   this->file = sh_utils_strdup(file);
     280  this->file = sh_util_strdup(file);
    281281  this->next = mark_these;
    282282  return;
     
    312312             {
    313313               SH_FREE(this->file);
    314                this->file = sh_utils_strdup(file);
     314               this->file = sh_util_strdup(file);
    315315               ret = 0;
    316316             }
     
    325325void sh_audit_mark (char * file)
    326326{
    327   struct aud_list * all  = mark_these;
    328327  struct aud_list * this = mark_these;
    329328
Note: See TracChangeset for help on using the changeset viewer.