Changeset 1190 in MondoRescue for branches/stable
- Timestamp:
- Feb 20, 2007, 11:11:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/mondoarchive/mondoarchive.c
r1187 r1190 18 18 19 19 #include "my-stuff.h" 20 #include " ../common/mondostructures.h"21 #include " ../common/libmondo.h"20 #include "mondostructures.h" 21 #include "libmondo.h" 22 22 #include "mondo-cli-EXT.h" 23 23 … … 152 152 int retval = 0; 153 153 char *say_at_end = NULL; 154 char *say_at_end2 = NULL; 154 155 155 156 #ifdef ENABLE_NLS … … 365 366 res = verify_data(bkpinfo); 366 367 if (res < 0) { 367 mr_ strcat(say_at_end, _("%d difference%c found."), -res,368 mr_asprintf(&say_at_end2, _("%d difference%c found."), -res, 368 369 (-res != 1) ? 's' : ' '); 369 370 res = 0; … … 409 410 log_to_screen(say_at_end); 410 411 mr_free(say_at_end); 412 if (say_at_end2 != NULL) { 413 log_to_screen(say_at_end2); 414 mr_free(say_at_end2); 415 } 411 416 412 417 mr_asprintf(&tmp, "umount %s/tmpfs", bkpinfo->tmpdir);
Note:
See TracChangeset
for help on using the changeset viewer.