Ignore:
Timestamp:
Sep 20, 2007, 10:20:45 PM (17 years ago)
Author:
Bruno Cornec
Message:

More conf file items handled

File:
1 edited

Legend:

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

    r1627 r1639  
    4141
    4242int mondo_makefilelist(char *logfile, char *tmpdir, char *scratchdir,
    43                        char *include_paths, char *excp, int differential,
     43                       char *include_paths, char *excp, bool differential,
    4444                       char *userdef_filelist);
    4545
     
    15121512 */
    15131513int mondo_makefilelist(char *logfile, char *tmpdir, char *scratchdir,
    1514                        char *include_paths, char *excp, int differential,
     1514                       char *include_paths, char *excp, bool differential,
    15151515                       char *userdef_filelist)
    15161516{
     
    15471547    make_hole_for_file(sz_filelist);
    15481548
    1549     if (differential == 0) {
     1549    if (! differential) {
    15501550        // restore last good datefile if it exists
    15511551        mr_asprintf(&command, "cp -f %s.aborted %s", sz_datefile,
     
    15681568        mr_msg(2,
    15691569                "Warning - unable to find date of previous backup. Full backup instead.");
    1570         differential = 0;
     1570        differential = FALSE;
    15711571        time_of_last_full_backup = 0;
    15721572    } else {
Note: See TracChangeset for help on using the changeset viewer.