Changeset 805 in MondoRescue for branches


Ignore:
Timestamp:
Sep 22, 2006, 7:46:25 PM (18 years ago)
Author:
Bruno Cornec
Message:

Atempt to fix bug #14

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/mondo/mondoarchive/mondo-cli.c

    r681 r805  
    674674    }
    675675
    676 /* optional, popular */
     676    /* optional, popular */
    677677    if (flag_set['g']) {
    678678        g_text_mode = FALSE;
    679679    }
     680
    680681    if (flag_set['E']) {
    681682        if (bkpinfo->exclude_paths[0]) {
     
    691692            if (q != NULL) {
    692693                *q = '\0';
     694                /* Fix bug 14 where ending / cause a problem later
     695                 * so handled here for the moment */
     696                q--;
     697                if (*q = '/') {
     698                    *q = '\0';
     699                }
     700                q++;
     701                /* End of bug fix */
    693702                if (stat(p, &buf) != 0) {
    694703                    log_msg(1, "WARNING ! %s doesn't exist", p);
Note: See TracChangeset for help on using the changeset viewer.