Changeset 2381 in MondoRescue
- Timestamp:
- Sep 10, 2009, 2:05:55 AM (15 years ago)
- 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 117 117 */ 118 118 void mr_strcat_int(char **in, int line, const char *file, const char *fmt, ...) { 119 char *p = NULL; 119 120 120 char *fmt2 = NULL; 121 121 va_list args; -
branches/2.2.9/mondo/src/mondorestore/mondorestore.c
r2380 r2381 3129 3129 run_program_and_log_output("mkdir -p /tmp/isodir", 5); 3130 3130 if (strstr(bkpinfo->netfs_proto, "sshfs")) { 3131 sprintf(tmp, "sshfs -o ro /tmp/isodir",3131 sprintf(tmp, "sshfs -o ro %s /tmp/isodir", 3132 3132 bkpinfo->netfs_mount); 3133 3133 } else { 3134 3134 sprintf(tmp, "mount %s -o nolock,ro /tmp/isodir", 3135 3135 bkpinfo->netfs_mount); 3136 } 3136 3137 run_program_and_log_output(tmp, 1); 3137 3138 }
Note:
See TracChangeset
for help on using the changeset viewer.