Changeset 2381 in MondoRescue for branches/2.2.9/mondo


Ignore:
Timestamp:
Sep 10, 2009, 2:05:55 AM (15 years ago)
Author:
Bruno Cornec
Message:

Fix a missing param for sshfs call

Location:
branches/2.2.9/mondo/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mondo/src/lib/mr_mem.c

    r2308 r2381  
    117117 */
    118118void mr_strcat_int(char **in, int line, const char *file, const char *fmt, ...) {
    119     char *p = NULL;
     119
    120120    char *fmt2 = NULL;
    121121    va_list args;
  • branches/2.2.9/mondo/src/mondorestore/mondorestore.c

    r2380 r2381  
    31293129                run_program_and_log_output("mkdir -p /tmp/isodir", 5);
    31303130                if (strstr(bkpinfo->netfs_proto, "sshfs")) {
    3131                     sprintf(tmp, "sshfs -o ro /tmp/isodir",
     3131                    sprintf(tmp, "sshfs -o ro %s /tmp/isodir",
    31323132                        bkpinfo->netfs_mount);
    31333133                } else {
    31343134                    sprintf(tmp, "mount %s -o nolock,ro /tmp/isodir",
    31353135                        bkpinfo->netfs_mount);
     3136                }
    31363137                run_program_and_log_output(tmp, 1);
    31373138            }
Note: See TracChangeset for help on using the changeset viewer.