Ignore:
Timestamp:
Jun 17, 2009, 10:53:23 PM (15 years ago)
Author:
Bruno Cornec
Message:
  • Simplify log_it calls when possible (with just a fixed string)
  • issue with truncate_to_drive_name reported by valgrind at restore time. Needs rewrite IMO
File:
1 edited

Legend:

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

    r2227 r2230  
    592592    pout = popen(syscall_pout, "w");
    593593    if (!pout) {
    594         log_it("%s","Unable to openout to syscall_pout");
     594        log_it("Unable to openout to syscall_pout");
    595595        return (1);
    596596    }
     
    598598    if (!pin) {
    599599        pclose(pout);
    600         log_it("%s","Unable to openin from syscall");
     600        log_it("Unable to openin from syscall");
    601601        return (1);
    602602    }
     
    605605        pclose(pin);
    606606        pclose(pout);
    607         log_it("%s","Unable to openin masklist");
     607        log_it("Unable to openin masklist");
    608608        return (1);
    609609    }
Note: See TracChangeset for help on using the changeset viewer.