Changeset 2772 in MondoRescue
- Timestamp:
- Apr 22, 2011, 2:00:07 AM (14 years ago)
- Location:
- branches/2.2.9/mondo/src/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mondo/src/common/libmondo-cli.c
r2713 r2772 45 45 46 46 /* Do we use extended attributes and acl ? 47 * By default no, use - -acl & --attr optionsto force their usage */47 * By default no, use -z option to force their usage */ 48 48 extern char *g_getfacl; 49 49 extern char *g_getfattr; -
branches/2.2.9/mondo/src/common/libmondo-devices.c
r2771 r2772 38 38 39 39 extern char *which_compression_type(); 40 /* Do we use extended attributes and acl ? */ 41 extern char *g_getfacl; 42 extern char *g_getfattr; 40 43 41 44 extern int g_current_media_number; … … 2745 2748 finish(1); 2746 2749 } 2750 if (ask_me_yes_or_no("Do you want to backup extended attributes?")) { 2751 if (find_home_of_exe("getfattr")) { 2752 mr_asprintf(&g_getfattr,"getfattr"); 2753 } 2754 if (find_home_of_exe("getfacl")) { 2755 mr_asprintf(&g_getfacl,"getfacl"); 2756 } 2757 } 2747 2758 // Interactive mode: 2748 2759 #ifdef __IA64__
Note:
See TracChangeset
for help on using the changeset viewer.