Changeset 3189 in MondoRescue
- Timestamp:
- Sep 25, 2013, 8:55:41 AM (12 years ago)
- Location:
- branches/3.0/mondo/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/mondo/src/include/my-stuff.h
r3138 r3189 77 77 * The location where mindi media images are stored. 78 78 */ 79 #define MINDI_CACHE "/var/cache/mindi" 79 #define MINDI_CACHE_REL "var/cache/mindi" /* Should be coherent with mindi */ 80 #define MINDI_CACHE "/"MINDI_CACHE_REL 80 81 81 82 /** … … 88 89 */ 89 90 #define MDSTAT_FILE "/proc/mdstat" 91 92 #ifdef __FreeBSD__ 93 #define CMDLINE "/tmp/cmdline" 94 #else 95 // Default Linux 96 #define CMDLINE "/proc/cmdline" 97 #endif 90 98 91 99 #undef assert -
branches/3.0/mondo/src/lib/mr_err.c
r1422 r3189 16 16 #include <stdio.h> 17 17 #include <stdlib.h> 18 #include "mr_msg.h" 18 19 19 20 /* Pointer to the right cleanup function provided by each main */ 20 extern void (*mr_cleanup)( void);21 extern void (*mr_cleanup)(int); 21 22 22 23 /* … … 26 27 27 28 if (mr_cleanup != NULL) { 28 mr_cleanup( );29 mr_cleanup(errorcode); 29 30 } 30 31 if (message != NULL) { 31 32 fprintf(stderr,"%s\n",message); 32 33 } 34 mr_msg_close(); 33 35 exit(errorcode); 34 36 }
Note:
See TracChangeset
for help on using the changeset viewer.