Changeset 1316 in MondoRescue
- Timestamp:
- Apr 16, 2007, 4:50:28 PM (18 years ago)
- Location:
- branches/2.2.2/mondo/src
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.2/mondo/src/common/libmondo-archive.c
r1315 r1316 173 173 */ 174 174 175 #include " ../common/my-stuff.h"176 #include " ../common/mondostructures.h"175 #include "my-stuff.h" 176 #include "mondostructures.h" 177 177 #include "libmondo-string-EXT.h" 178 178 #include "libmondo-stream-EXT.h" … … 187 187 #include "libmondo-archive.h" 188 188 #include "lib-common-externs.h" 189 #include "mondoarchive.h" 189 190 #include <sys/sem.h> 190 191 #include <sys/types.h> … … 237 238 extern char *g_getfacl; 238 239 extern char *g_getfattr; 240 extern char *MONDO_LOGFILE; 239 241 240 242 -
branches/2.2.2/mondo/src/common/libmondo-devices.c
r1303 r1316 261 261 extern char *g_erase_tmpdir_and_scratchdir; 262 262 extern char *g_selfmounted_isodir; 263 extern char *MONDO_LOGFILE; 263 264 264 265 static char g_cdrw_drive_is_here[MAX_STR_LEN / 4] = ""; -
branches/2.2.2/mondo/src/common/libmondo-fifo.c
r941 r1316 138 138 extern char *ps_options; 139 139 extern char *ps_proc_id; 140 extern char *MONDO_LOGFILE; 140 141 141 142 /** -
branches/2.2.2/mondo/src/common/libmondo-filelist.c
r1260 r1316 136 136 137 137 extern ssize_t getline(char **lineptr, size_t * n, FILE * stream); 138 extern char *MONDO_LOGFILE; 138 139 139 140 -
branches/2.2.2/mondo/src/common/libmondo-fork.c
r1236 r1316 117 117 extern t_bkptype g_backup_media_type; 118 118 extern bool g_text_mode; 119 extern char *MONDO_LOGFILE; 119 120 pid_t g_buffer_pid = 0; 120 121 -
branches/2.2.2/mondo/src/common/libmondo-stream.c
r955 r1316 118 118 extern char *g_getfacl; 119 119 extern char *g_getfattr; 120 extern char *MONDO_LOGFILE; 120 121 121 122 /** -
branches/2.2.2/mondo/src/common/libmondo-tools.c
r1279 r1316 194 194 extern int g_currentY; 195 195 extern int g_current_media_number; 196 extern char *MONDO_LOGFILE; 196 197 197 198 /** -
branches/2.2.2/mondo/src/common/libmondo-verify.c
r1262 r1316 126 126 extern char *g_getfacl; 127 127 extern char *g_getfattr; 128 extern char *MONDO_LOGFILE; 128 129 129 130 /** -
branches/2.2.2/mondo/src/common/newt-specific.c
r1315 r1316 120 120 #include "libmondo-gui-EXT.h" 121 121 #include "lib-common-externs.h" 122 123 extern char *MONDO_LOGFILE; 122 124 123 125 /*@unused@*/ -
branches/2.2.2/mondo/src/mondoarchive/main.c
r1315 r1316 141 141 bool g_skip_floppies; 142 142 long diffs; 143 char *ps_options = "auxww";144 char *ps_proc_id = "$2";145 143 146 144 extern t_bkptype g_backup_media_type; -
branches/2.2.2/mondo/src/mondoarchive/mondoarchive.h
r1315 r1316 8 8 * Compatibility #define to ease the transition to logfile-in-a-variable. 9 9 */ 10 #define MONDO_LOGFILE "/var/log/mondoarchive.log" 10 char *MONDO_LOGFILE = "/var/log/mondoarchive.log" 11 12 /* No restriction on ps options */ 13 char *ps_options = "auxww"; 14 char *ps_proc_id = "$2"; -
branches/2.2.2/mondo/src/mondorestore/mondo-prep.c
r1315 r1316 189 189 190 190 extern void pause_for_N_seconds(int, char *); 191 extern char *MONDO_LOGFILE; 191 192 192 193 -
branches/2.2.2/mondo/src/mondorestore/mondo-restore.c
r1315 r1316 120 120 */ 121 121 char *g_mondo_home; 122 123 /* Busybox ps has no option and PID in first pos */124 char *ps_options = "";125 char *ps_proc_id = "$1";126 122 127 123 extern char *g_getfacl; -
branches/2.2.2/mondo/src/mondorestore/mondo-rstr-compare.c
r1315 r1316 64 64 #include "mondo-restore-EXT.h" 65 65 #include "mondo-rstr-tools-EXT.h" 66 67 extern char *MONDO_LOGFILE; 66 68 67 69 //static char cvsid[] = "$Id$"; -
branches/2.2.2/mondo/src/mondorestore/mondo-rstr-tools.c
r1315 r1316 160 160 161 161 extern int g_partition_table_locked_up; 162 extern char *MONDO_LOGFILE; 162 163 163 164 /* Should we use or not extended attributes and acl when restoring */ -
branches/2.2.2/mondo/src/mondorestore/mondorestore.h
r1315 r1316 8 8 * Compatibility #define to ease the transition to logfile-in-a-variable. 9 9 */ 10 #define MONDO_LOGFILE "/tmp/mondorestore.log" 10 char *MONDO_LOGFILE = "/tmp/mondorestore.log" 11 12 /* Busybox ps has no option and PID in first pos */ 13 char *ps_options = ""; 14 char *ps_proc_id = "$1";
Note:
See TracChangeset
for help on using the changeset viewer.