- Timestamp:
- Dec 10, 2013, 8:49:44 AM (11 years ago)
- Location:
- branches/3.2/mondo/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mondo/src/common/libmondo-archive.c
r3205 r3207 3163 3163 } 3164 3164 3165 if (bkpinfo->netfs_remote_dir ) {3165 if (bkpinfo->netfs_remote_dir != NULL) { 3166 3166 // NETFS 3167 3167 mr_asprintf(isofile, "%s/%s/%s-%d.iso", bkpinfo->isodir, bkpinfo->netfs_remote_dir, bkpinfo->prefix, g_current_media_number); -
branches/3.2/mondo/src/common/libmondo-devices.c
r3205 r3207 1340 1340 } 1341 1341 #ifdef __FreeBSD__ 1342 if (bkpinfo->netfs_remote_dir ) {1342 if (bkpinfo->netfs_remote_dir != NULL) { 1343 1343 // NETFS 1344 1344 mr_asprintf(mount_cmd, "/mnt/isodir/%s/%s/%s-%d.iso", bkpinfo->isodir, bkpinfo->netfs_remote_dir, bkpinfo->prefix, g_current_media_number); … … 1352 1352 mr_asprintf(mount_cmd, "mount_cd9660 -r %s " MNT_CDROM, mddev); 1353 1353 #else 1354 if (bkpinfo->netfs_remote_dir ) {1354 if (bkpinfo->netfs_remote_dir != NULL) { 1355 1355 // NETFS 1356 1356 mr_asprintf(mount_cmd, "mount %s/%s/%s-%d.iso -t iso9660 -o loop,ro %s", bkpinfo->isodir, bkpinfo->netfs_remote_dir, bkpinfo->prefix, g_current_media_number, MNT_CDROM); -
branches/3.2/mondo/src/common/libmondo-verify.c
r3194 r3207 1038 1038 fatal_error("No iso filename preparation possible"); 1039 1039 } 1040 if (bkpinfo->netfs_remote_dir ) {1040 if (bkpinfo->netfs_remote_dir != NULL) { 1041 1041 // NETFS 1042 1042 mr_asprintf(fname, "%s/%s/%s-%d.iso", bkpinfo->isodir, bkpinfo->netfs_remote_dir, bkpinfo->prefix, g_current_media_number); -
branches/3.2/mondo/src/common/newt-specific.c
r3205 r3207 1251 1251 /** 1252 1252 * Ask the user which compression type they would like to use. 1253 * The choices are "bzip2", "gzip", "lzo" . NULL for exit1253 * The choices are "bzip2", "gzip", "lzo", "lzma". NULL for exit 1254 1254 */ 1255 1255 char *which_compression_type() { … … 1279 1279 b5 = newtButton(4, 9, " Exit "); 1280 1280 myForm = newtForm(NULL, NULL, 0); 1281 newtFormAddComponents(myForm, b1, b3, b2, b 5, NULL);1281 newtFormAddComponents(myForm, b1, b3, b2, b4, b5, NULL); 1282 1282 b_res = newtRunForm(myForm); 1283 1283 newtFormDestroy(myForm); -
branches/3.2/mondo/src/mondorestore/mondo-rstr-tools.c
r3205 r3207 859 859 log_msg(2, "netfs_mount remains %s", bkpinfo->netfs_mount); 860 860 } 861 if (bkpinfo->netfs_remote_dir ) {861 if (bkpinfo->netfs_remote_dir != NULL) { 862 862 log_msg(2, "netfs_remote_dir remains %s", bkpinfo->netfs_remote_dir); 863 863 }
Note:
See TracChangeset
for help on using the changeset viewer.