Changeset 3413 in MondoRescue
- Timestamp:
- Aug 9, 2015, 6:15:26 AM (9 years ago)
- Location:
- branches/3.2/mondo/src/common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mondo/src/common/libmondo-cli.c
r3380 r3413 45 45 extern pid_t g_main_pid; 46 46 extern char *resolve_softlinks_to_get_to_actual_device_file(char *); 47 extern t_boot mr_boot_type(void); 47 48 48 49 /* Do we use extended attributes and acl ? -
branches/3.2/mondo/src/common/libmondo-devices.c
r3398 r3413 56 56 extern void setup_tmpdir(char *path); 57 57 extern void setup_scratchdir(char *path); 58 extern char *mr_popup_and_get_string(char *title, char *b, char *input); 58 59 59 60 static char g_cdrw_drive_is_here[MAX_STR_LEN / 4] = ""; … … 2114 2115 * Return the type of boot of the system (UEFI, EFI or BIOS) 2115 2116 */ 2116 t_boot mr_boot_type( ) {2117 t_boot mr_boot_type(void) { 2117 2118 2118 2119 t_boot ret = BIOS; -
branches/3.2/mondo/src/common/libmondo-string.c
r3377 r3413 9 9 #include "my-stuff.h" 10 10 #include "mr_mem.h" 11 #include "mr_str.h" 11 12 #include "mondostructures.h" 12 13 #include "libmondo-string.h" … … 97 98 x = mid - len / 2; 98 99 for (i = 0; i < x; i++) { 99 mr_strcat(out, ' ');100 mr_strcat(out," "); 100 101 } 101 102 mr_strcat(out, scratch); 102 103 mr_free(scratch); 103 104 for (i = x + len ; i < width - 1; i++) { 104 mr_strcat(out, ' ');105 mr_strcat(out," "); 105 106 } 106 107 return(out); -
branches/3.2/mondo/src/common/newt-specific.c
r3377 r3413 34 34 35 35 extern struct s_bkpinfo *bkpinfo; 36 37 extern char *mr_center_string(char *in, int width); 36 38 37 39 /*@unused@*/
Note:
See TracChangeset
for help on using the changeset viewer.