Changeset 808 in MondoRescue for trunk/mondo/mondo/mondoarchive/mondo-cli.c


Ignore:
Timestamp:
Sep 22, 2006, 11:12:37 PM (18 years ago)
Author:
Bruno Cornec
Message:

merge -r793:807 $SVN_M/branches/stable
src => common for the moment it's easier to manage merges

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mondo/mondo/mondoarchive/mondo-cli.c

    r783 r808  
    512512            if (q != NULL) {
    513513                *q = '\0';
     514                /* Fix bug 14 where ending / cause a problem later
     515                 * so handled here for the moment */
     516                q--;
     517                if (*q = '/') {
     518                    *q = '\0';
     519                }
     520                q++;
     521                /* End of bug fix */
    514522                if (stat(p, &buf) != 0) {
    515523                    log_msg(1, "WARNING ! %s doesn't exist", p);
Note: See TracChangeset for help on using the changeset viewer.