Changeset 2632 in MondoRescue for branches/2.2.9/mondo/src/common
- Timestamp:
- May 13, 2010, 4:16:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mondo/src/common/libmondo-devices.c
r2628 r2632 1923 1923 while (DSFptr != NULL) { 1924 1924 if (DSFptr->check) { 1925 log_msg (4, "%s is mounted on %s and is on disk %s \n", DSFptr->device, DSFptr->mount_point, ndsf);1925 log_msg (4, "%s is mounted on %s and is on disk %s", DSFptr->device, DSFptr->mount_point, ndsf); 1926 1926 strcat(*included_dsf_list, DSFptr->mount_point); 1927 1927 strcat(*included_dsf_list, " "); 1928 1928 } else { 1929 log_msg (4, "%s is mounted on %s and is NOT on disk %s \n", DSFptr->device, DSFptr->mount_point, ndsf);1929 log_msg (4, "%s is mounted on %s and is NOT on disk %s", DSFptr->device, DSFptr->mount_point, ndsf); 1930 1930 strcat(*excluded_dsf_list, DSFptr->mount_point); 1931 1931 strcat(*excluded_dsf_list, " "); … … 1970 1970 if (mode == 'E') { 1971 1971 if (strlen(mounted_on_dsf)) { 1972 log_to_screen("Excluding the following file systems on %s: \n", token);1973 log_to_screen(" %s\n", mounted_on_dsf);1972 log_to_screen("Excluding the following file systems on %s:", token); 1973 log_to_screen("==> %s", mounted_on_dsf); 1974 1974 log_msg (5, "Adding to bkpinfo->exclude_paths due to -E option: %s", mounted_on_dsf); 1975 1975 strcat(bkpinfo->exclude_paths, " "); … … 1979 1979 } 1980 1980 } else { 1981 log_to_screen("Archiving only the following file systems on %s: \n", token);1982 log_to_screen(" 1981 log_to_screen("Archiving only the following file systems on %s:", token); 1982 log_to_screen("==> %s\n", mounted_on_dsf); 1983 1983 strcpy(bkpinfo->include_paths, "/"); 1984 1984 if (strlen(not_mounted_on_dsf)) { 1985 1985 log_msg (5, "Adding to bkpinfo->exclude_paths due to -I option: %s", not_mounted_on_dsf); 1986 log_to_screen("Not archiving the following file systems: \n");1987 log_to_screen(" %s\n", not_mounted_on_dsf);1986 log_to_screen("Not archiving the following file systems:"); 1987 log_to_screen("==> %s", not_mounted_on_dsf); 1988 1988 strcat(bkpinfo->exclude_paths, " "); 1989 1989 strcat(bkpinfo->exclude_paths, not_mounted_on_dsf); 1990 strcat(bkpinfo->exclude_paths, " ");1990 strcat(bkpinfo->exclude_paths, " "); 1991 1991 } 1992 1992 }
Note:
See TracChangeset
for help on using the changeset viewer.