Ignore:
Timestamp:
Jun 17, 2009, 2:45:52 PM (15 years ago)
Author:
Bruno Cornec
Message:

Remove the iamhere function (will hopefully suppress valgrind errors at restore time)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mondo/src/common/libmondo-filelist.c

    r2211 r2227  
    513513                "getfacl --all-effective -P %s 2>> %s | gzip -c1 > %s 2>> %s",
    514514                filelist, MONDO_LOGFILE, facl_fname, MONDO_LOGFILE);
    515         iamhere(command);
     515        log_it("%s",command);
    516516        retval = system(command);
    517517        paranoid_free(command);
     
    592592    pout = popen(syscall_pout, "w");
    593593    if (!pout) {
    594         iamhere("Unable to openout to syscall_pout");
     594        log_it("%s","Unable to openout to syscall_pout");
    595595        return (1);
    596596    }
     
    598598    if (!pin) {
    599599        pclose(pout);
    600         iamhere("Unable to openin from syscall");
     600        log_it("%s","Unable to openin from syscall");
    601601        return (1);
    602602    }
     
    605605        pclose(pin);
    606606        pclose(pout);
    607         iamhere("Unable to openin masklist");
     607        log_it("%s","Unable to openin masklist");
    608608        return (1);
    609609    }
     
    18811881    log_msg(3, "Adding %s to filelist", list_of_files_fname);
    18821882    if (!(fin = fopen(list_of_files_fname, "r"))) {
    1883         iamhere(list_of_files_fname);
     1883        log_it("%s",list_of_files_fname);
    18841884        return (1);
    18851885    }
Note: See TracChangeset for help on using the changeset viewer.