source: MondoRescue/branches/stable/mondo/src/mondorestore/mondo-rstr-compare.c@ 1555

Last change on this file since 1555 was 1555, checked in by Bruno Cornec, 17 years ago

mr_gettext.h added again + locale.h

  • Property svn:keywords set to Id
File size: 19.9 KB
Line 
1/***************************************************************************
2* compares mondoarchive data
3* $Id: mondo-rstr-compare.c 1555 2007-07-24 21:16:18Z bruno $
4*/
5
6#include <pthread.h>
7#include "my-stuff.h"
8#include "../common/mondostructures.h"
9#include "../common/libmondo.h"
10#include "mr_msg.h"
11#include "mr_mem.h"
12#include "mr_gettext.h"
13
14#include "mr-externs.h"
15#include "mondo-rstr-compare.h"
16#include "mondo-restore-EXT.h"
17#include "mondo-rstr-tools-EXT.h"
18
19extern char *MONDO_LOGFILE;
20
21//static char cvsid[] = "$Id: mondo-rstr-compare.c 1555 2007-07-24 21:16:18Z bruno $";
22
23void popup_changelist_from_file(char *);
24
25
26/**
27 * @addtogroup LLcompareGroup
28 * @{
29 */
30/**
31 * Compare biggiefile number @p bigfileno with the filesystem mounted on @p MNT_RESTORING.
32 * @param bkpinfo The backup information structure. Only used in insist_on_this_cd_number().
33 * @param bigfileno The biggiefile number (starting from 0) to compare.
34 * @note This function uses an MD5 checksum.
35 */
36int compare_a_biggiefile(struct s_bkpinfo *bkpinfo, long bigfileno)
37{
38
39 FILE *fin = NULL;
40 FILE *fout = NULL;
41
42 /** needs malloc *******/
43 char *checksum = NULL;
44 char *original_cksum = NULL;
45 char *bigfile_fname = NULL;
46 char *tmp = NULL;
47 char *command = NULL;
48
49 char *p = NULL;
50 int i = 0;
51 size_t n = 0;
52 int retval = 0;
53
54 struct s_filename_and_lstat_info biggiestruct;
55
56 assert(bkpinfo != NULL);
57
58 if (!does_file_exist(slice_fname(bigfileno, 0, ARCHIVES_PATH, ""))) {
59 if (does_file_exist(MNT_CDROM "/archives/NOT-THE-LAST")) {
60 insist_on_this_cd_number(bkpinfo, (++g_current_media_number));
61 } else {
62 mr_msg(2, "No CD's left. No biggiefiles left. No problem.");
63 return (0);
64 }
65 }
66 if (!(fin = fopen(slice_fname(bigfileno, 0, ARCHIVES_PATH, ""), "r"))) {
67 log_to_screen(_("Cannot open bigfile %ld (%s)'s info file"),
68 bigfileno + 1, slice_fname(bigfileno, 0, ARCHIVES_PATH, ""));
69 return (1);
70 }
71 fread((void *) &biggiestruct, 1, sizeof(biggiestruct), fin);
72 paranoid_fclose(fin);
73
74 mr_asprintf(&bigfile_fname, biggiestruct.filename);
75 mr_msg(2, "biggiestruct.filename = %s", bigfile_fname);
76 if (!biggiestruct.checksum[0]) {
77 mr_msg(2, "Warning - %s has no checksum", bigfile_fname);
78 } else {
79 mr_asprintf(&checksum, biggiestruct.checksum);
80 mr_msg(2, "biggiestruct.checksum = %s", checksum);
81 }
82
83 if (!g_text_mode) {
84 mr_asprintf(&tmp, _("Comparing %s"), bigfile_fname);
85 newtDrawRootText(0, 22, tmp);
86 newtRefresh();
87 mr_free(tmp);
88 }
89
90 if (!strncmp(bigfile_fname, "/dev/", 5)) {
91 mr_msg(2, _("Ignoring device %s"), bigfile_fname);
92 mr_free(bigfile_fname);
93 return(0);
94 }
95 mr_asprintf(&command,
96 "md5sum \"%s%s\" > /tmp/md5sum.txt 2> /tmp/errors",
97 MNT_RESTORING, bigfile_fname);
98 mr_msg(2, command);
99 if (system(command)) {
100 log_OS_error("Warning - command failed");
101 mr_asprintf(&tmp, "cat /tmp/errors >> %s 2> /dev/null", MONDO_LOGFILE);
102 paranoid_system(tmp);
103 mr_free(tmp);
104 mr_free(command);
105 mr_free(bigfile_fname);
106 return (1);
107 } else {
108 mr_free(command);
109 if (!(fin = fopen("/tmp/md5sum.txt", "r"))) {
110 mr_msg(2, "Unable to open /tmp/md5sum.txt; can't get live checksum");
111 mr_free(bigfile_fname);
112 return (1);
113 } else {
114 mr_getline(&original_cksum, &n, fin);
115 paranoid_fclose(fin);
116 for (i = strlen(original_cksum);
117 i > 0 && original_cksum[i - 1] < 32; i--);
118 original_cksum[i] = '\0';
119 p = (char *) strchr(original_cksum, ' ');
120 if (p) {
121 *p = '\0';
122 }
123 }
124 }
125 if (!strcmp(checksum, original_cksum) != 0) {
126 mr_msg(1, "bigfile #%ld ('%s') ... OK", bigfileno + 1, bigfile_fname);
127 } else {
128 mr_msg(1, "bigfile #%ld ('%s') ... changed", bigfileno + 1, bigfile_fname);
129 retval++;
130 }
131 mr_free(original_cksum);
132 mr_free(checksum);
133
134 if (retval) {
135 if (!(fout = fopen("/tmp/changed.txt", "a"))) {
136 fatal_error("Cannot openout changed.txt");
137 }
138 fprintf(fout, "%s\n", bigfile_fname);
139 paranoid_fclose(fout);
140 }
141 mr_free(bigfile_fname);
142
143 return (retval);
144}
145
146/**************************************************************************
147 *END_COMPARE_A_BIGGIEFILE *
148 **************************************************************************/
149
150
151/**
152 * Compare all biggiefiles in the backup.
153 * @param bkpinfo The backup information structure. Used only in compare_a_biggiefile().
154 * @return 0 for success, nonzero for failure.
155 */
156int compare_all_biggiefiles(struct s_bkpinfo *bkpinfo)
157{
158 int retval = 0;
159 int res = 0;
160 long noof_biggiefiles = 0L, bigfileno = 0L;
161 char *tmp = NULL;
162
163 assert(bkpinfo != NULL);
164 mr_msg(1, "Comparing biggiefiles");
165
166 if (length_of_file(BIGGIELIST) < 6) {
167 mr_msg(1,
168 "OK, really teeny-tiny biggielist; not comparing biggiefiles");
169 return (0);
170 }
171 noof_biggiefiles = count_lines_in_file(BIGGIELIST);
172 if (noof_biggiefiles <= 0) {
173 mr_msg(1, "OK, no biggiefiles; not comparing biggiefiles");
174 return (0);
175 }
176 mvaddstr_and_log_it(g_currentY, 0,
177 _
178 ("Comparing large files "));
179 open_progress_form(_("Comparing large files"),
180 _("I am now comparing the large files"),
181 _("against the filesystem. Please wait."), "",
182 noof_biggiefiles);
183 for (bigfileno = 0; bigfileno < noof_biggiefiles; bigfileno++) {
184 mr_asprintf(&tmp, "Comparing big file #%ld", bigfileno + 1);
185 mr_msg(1, tmp);
186 update_progress_form(tmp);
187 mr_free(tmp);
188
189 res = compare_a_biggiefile(bkpinfo, bigfileno);
190 retval += res;
191 g_current_progress++;
192 }
193 close_progress_form();
194 /* BERLIOS: useless ?
195 return (0);
196 */
197 if (retval) {
198 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
199 } else {
200 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
201 }
202 return (retval);
203}
204
205/**************************************************************************
206 *END_COMPARE_ALL_BIGGIEFILES *
207 **************************************************************************/
208
209
210/**
211 * Compare afioball @p tarball_fname against the filesystem.
212 * You must be chdir()ed to the directory where the filesystem is mounted
213 * before you call this function.
214 * @param tarball_fname The filename of the tarball to compare.
215 * @param current_tarball_number The fileset number contained in @p tarball_fname.
216 * @return 0 for success, nonzero for failure.
217 */
218int compare_a_tarball(char *tarball_fname, int current_tarball_number)
219{
220 int retval = 0;
221 int res = 0;
222 long noof_lines = 0L;
223 long archiver_errors = 0L;
224 bool use_star = FALSE;
225
226 char *command = NULL;
227 char *tmp = NULL;
228 char *filelist_name = NULL;
229 char *logfile = NULL;
230 char *archiver_exe = NULL;
231 char *compressor_exe = NULL;
232
233 use_star = (strstr(tarball_fname, ".star")) ? TRUE : FALSE;
234 assert_string_is_neither_NULL_nor_zerolength(tarball_fname);
235 mr_asprintf(&filelist_name, MNT_CDROM "/archives/filelist.%d",
236 current_tarball_number);
237
238 noof_lines = count_lines_in_file(filelist_name);
239 mr_free(filelist_name);
240
241 if (strstr(tarball_fname, ".bz2")) {
242 mr_asprintf(&compressor_exe, "bzip2");
243 } else if (strstr(tarball_fname, ".gz")) {
244 mr_asprintf(&compressor_exe, "gzip");
245 } else if (strstr(tarball_fname, ".lzo")) {
246 mr_asprintf(&compressor_exe, "lzop");
247 } else {
248 compressor_exe = NULL;
249 }
250
251 if (use_star) {
252 mr_asprintf(&archiver_exe, "star -bz");
253 } else {
254 mr_asprintf(&archiver_exe, "afio");
255 }
256
257 if (compressor_exe != NULL) {
258 if (!find_home_of_exe(compressor_exe)) {
259 fatal_error("(compare_a_tarball) Compression program missing");
260 }
261 if (use_star) {
262 if (strcmp(compressor_exe, "bzip2")) {
263 fatal_error
264 ("(compare_a_tarball) Please use only bzip2 with star");
265 }
266 } else {
267 tmp = compressor_exe;
268 mr_asprintf(&compressor_exe, "-P %s -Z", tmp);
269 mr_free(tmp);
270 }
271 }
272
273#ifdef __FreeBSD__
274#define BUFSIZE 512L
275#else
276#define BUFSIZE (1024L*1024L)/TAPE_BLOCK_SIZE
277#endif
278
279 mr_asprintf(&logfile, "/tmp/afio.log.%d", current_tarball_number);
280 if (use_star) // doesn't use compressor_exe
281 {
282 mr_asprintf(&command,
283 "%s -diff H=star file=%s >> %s 2>> %s",
284 archiver_exe, tarball_fname, logfile, logfile);
285 } else {
286 mr_asprintf(&command,
287 "%s -r -b %ld -M 16m -c %ld %s %s >> %s 2>> %s",
288 archiver_exe,
289 TAPE_BLOCK_SIZE,
290 BUFSIZE, compressor_exe, tarball_fname, logfile, logfile);
291 }
292#undef BUFSIZE
293 mr_free(archiver_exe);
294 mr_free(compressor_exe);
295
296 res = system(command);
297 retval += res;
298 if (res) {
299 log_OS_error(command);
300 }
301 mr_free(command);
302
303 if (length_of_file(logfile) > 5) {
304 mr_asprintf(&command,
305 "sed s/': \\\"'/\\|/ %s | sed s/'\\\": '/\\|/ | cut -d'|' -f2 | sort -u | grep -vE \"^dev/.*\" >> /tmp/changed.txt",
306 logfile);
307 system(command);
308 mr_free(command);
309 archiver_errors = count_lines_in_file(logfile);
310 } else {
311 archiver_errors = 0;
312 }
313 if (archiver_errors) {
314 mr_msg(1, "Differences found while processing fileset #%d ",
315 current_tarball_number);
316 }
317 unlink(logfile);
318 mr_free(logfile);
319 return (retval);
320}
321
322/**************************************************************************
323 *END_COMPARE_A_TARBALL *
324 **************************************************************************/
325
326
327/**
328 * Compare all afioballs in this backup.
329 * @param bkpinfo The backup media structure. Passed to other functions.
330 * @return 0 for success, nonzero for failure.
331 */
332int compare_all_tarballs(struct s_bkpinfo *bkpinfo)
333{
334 int retval = 0;
335 int res = 0;
336 int current_tarball_number = 0;
337
338 char *tarball_fname = NULL;
339 char *progress_str = NULL;
340 char *tmp = NULL;
341 long max_val = 0L;
342
343 assert(bkpinfo != NULL);
344 mvaddstr_and_log_it(g_currentY, 0, _("Comparing archives"));
345 malloc_string(tmp);
346 read_cfg_var(g_mondo_cfg_file, "last-filelist-number", tmp);
347
348 max_val = atol(tmp);
349 mr_free(tmp);
350
351 mr_asprintf(&progress_str, _("Comparing with %s #%d "),
352 bkpinfo->backup_media_string,
353 g_current_media_number);
354
355 open_progress_form(_("Comparing files"),
356 _("Comparing tarballs against filesystem."),
357 _("Please wait. This may take some time."),
358 progress_str, max_val);
359
360 log_to_screen(progress_str);
361
362 for (;;) {
363 insist_on_this_cd_number(bkpinfo, g_current_media_number);
364 update_progress_form(progress_str);
365 mr_asprintf(&tarball_fname,
366 MNT_CDROM "/archives/%d.afio.bz2", current_tarball_number);
367
368 if (!does_file_exist(tarball_fname)) {
369 mr_free(tarball_fname);
370 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.afio.lzo",
371 current_tarball_number);
372 }
373 if (!does_file_exist(tarball_fname)) {
374 mr_free(tarball_fname);
375 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.afio.",
376 current_tarball_number);
377 }
378 if (!does_file_exist(tarball_fname)) {
379 mr_free(tarball_fname);
380 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.star.bz2",
381 current_tarball_number);
382 }
383 if (!does_file_exist(tarball_fname)) {
384 mr_free(tarball_fname);
385 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.star.",
386 current_tarball_number);
387 }
388 if (!does_file_exist(tarball_fname)) {
389 if (!does_file_exist(MNT_CDROM "/archives/NOT-THE-LAST") ||
390 system("find " MNT_CDROM
391 "/archives/slice* > /dev/null 2> /dev/null")
392 == 0) {
393 mr_msg(2, "OK, I think I'm done with tarballs...");
394 mr_free(tarball_fname);
395 break;
396 }
397 mr_msg(2, "OK, I think it's time for another CD...");
398 g_current_media_number++;
399 mr_free(progress_str);
400 mr_asprintf(&progress_str, _("Comparing with %s #%d "),
401 bkpinfo->backup_media_string,
402 g_current_media_number);
403 log_to_screen(progress_str);
404 } else {
405 res = compare_a_tarball(tarball_fname, current_tarball_number);
406 g_current_progress++;
407 current_tarball_number++;
408 }
409 mr_free(tarball_fname);
410 }
411 mr_free(progress_str);
412 close_progress_form();
413
414 if (retval) {
415 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
416 } else {
417 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
418 }
419 return (retval);
420}
421
422/**************************************************************************
423 *END_COMPARE_ALL_TARBALLS *
424 **************************************************************************/
425
426/* @} - end LLcompareGroup */
427
428
429/**
430 * @addtogroup compareGroup
431 * @{
432 */
433/**
434 * Compare all data on a CD-R/CD-RW/DVD/ISO/NFS-based backup.
435 * @param bkpinfo The backup information structure. Passed to other functions.
436 * @return 0 for success, nonzero for failure.
437 */
438int compare_to_CD(struct s_bkpinfo *bkpinfo)
439{
440 /** needs malloc *********/
441 char *tmp = NULL;
442 char *cwd = NULL;
443 char *new = NULL;
444 char *command = NULL;
445 int resA = 0;
446 int resB = 0;
447 long noof_changed_files = 0L;
448
449 malloc_string(cwd);
450 malloc_string(new);
451
452 assert(bkpinfo != NULL);
453
454 getcwd(cwd, MAX_STR_LEN - 1);
455 chdir(bkpinfo->restore_path);
456 getcwd(new, MAX_STR_LEN - 1);
457 insist_on_this_cd_number(bkpinfo, g_current_media_number);
458 unlink("/tmp/changed.txt");
459
460 resA = compare_all_tarballs(bkpinfo);
461 resB = compare_all_biggiefiles(bkpinfo);
462 chdir(cwd);
463 noof_changed_files = count_lines_in_file("/tmp/changed.txt");
464 if (noof_changed_files) {
465 log_to_screen(_("%ld files do not match the backup "),
466 noof_changed_files);
467 mr_asprintf(&command, "cat /tmp/changed.txt >> %s", MONDO_LOGFILE);
468 paranoid_system(command);
469 mr_free(command);
470 } else {
471 mr_asprintf(&tmp, _("All files match the backup "));
472 mvaddstr_and_log_it(g_currentY++, 0, tmp);
473 log_to_screen(tmp);
474 mr_free(tmp);
475 }
476
477 mr_free(cwd);
478 mr_free(new);
479
480 return (resA + resB);
481}
482
483/**************************************************************************
484 *END_COMPARE_TO_CD *
485 **************************************************************************/
486
487
488/**
489 * Compare all data in the user's backup.
490 * This function will mount filesystems, compare afioballs and biggiefiles,
491 * and show the user the differences.
492 * @param bkpinfo The backup information structure. Passed to other functions.
493 * @param mountlist The mountlist containing partitions to mount.
494 * @param raidlist The raidlist containing the user's RAID devices.
495 * @return The number of errors/differences found.
496 */
497int
498compare_mode(struct s_bkpinfo *bkpinfo,
499 struct mountlist_itself *mountlist,
500 struct raidlist_itself *raidlist)
501{
502 int retval = 0;
503 long q = 0L;
504 char *tmp = NULL;
505
506 /**************************************************************************
507 * also deletes tmp/filelist.full & tmp/biggielist.txt _and_ tries to *
508 * restore them from start of tape, if available *
509 **************************************************************************/
510 assert(bkpinfo != NULL);
511 assert(mountlist != NULL);
512 assert(raidlist != NULL);
513
514 while (get_cfg_file_from_archive(bkpinfo)) {
515 if (!ask_me_yes_or_no
516 (_
517 ("Failed to find config file/archives. Choose another source?")))
518 {
519 fatal_error("Unable to find config file/archives. Aborting.");
520 }
521 interactively_obtain_media_parameters_from_user(bkpinfo, FALSE);
522 }
523
524 read_cfg_file_into_bkpinfo(g_mondo_cfg_file, bkpinfo);
525 g_current_media_number = 1;
526 mvaddstr_and_log_it(1, 30, _("Comparing Automatically"));
527 iamhere("Pre-MAD");
528 retval = mount_all_devices(mountlist, FALSE);
529 iamhere("Post-MAD");
530 if (retval) {
531 unmount_all_devices(mountlist);
532 return (retval);
533 }
534 if (bkpinfo->backup_media_type == tape
535 || bkpinfo->backup_media_type == udev) {
536 retval += compare_to_tape(bkpinfo);
537 } else if (bkpinfo->backup_media_type == cdstream) {
538 retval += compare_to_cdstream(bkpinfo);
539 } else {
540 retval += compare_to_CD(bkpinfo);
541 }
542 if (retval) {
543 mvaddstr_and_log_it(g_currentY++,
544 0,
545 _
546 ("Warning - differences found during the compare phase"));
547 }
548
549 retval += unmount_all_devices(mountlist);
550
551 if (count_lines_in_file("/tmp/changed.txt") > 0) {
552 mvaddstr_and_log_it(g_currentY++, 0,
553 _
554 ("Differences found while files were being compared."));
555 streamline_changes_file("/tmp/changed.files", "/tmp/changed.txt");
556 if (count_lines_in_file("/tmp/changed.files") <= 0) {
557 mvaddstr_and_log_it(g_currentY++, 0,
558 _
559 ("...but they were logfiles and temporary files. Your archives are fine."));
560 log_to_screen(_
561 ("The differences were logfiles and temporary files. Your archives are fine."));
562 } else {
563 q = count_lines_in_file("/tmp/changed.files");
564 mr_asprintf(&tmp, _("%ld significant difference%s found."), q,
565 (q != 1) ? "s" : "");
566 mvaddstr_and_log_it(g_currentY++, 0, tmp);
567 log_to_screen(tmp);
568 mr_free(tmp);
569
570 mr_asprintf(&tmp,
571 _("Type 'less /tmp/changed.files' for a list of non-matching files"));
572 mvaddstr_and_log_it(g_currentY++, 0, tmp);
573 log_to_screen(tmp);
574 mr_free(tmp);
575
576 mr_msg(2, "calling popup_changelist_from_file()");
577 popup_changelist_from_file("/tmp/changed.files");
578 mr_msg(2, "Returning from popup_changelist_from_file()");
579 }
580 } else {
581 log_to_screen
582 (_
583 ("No significant differences were found. Your backup is perfect."));
584 }
585 kill_petris();
586 return (retval);
587}
588
589/**************************************************************************
590 *END_COMPARE_MODE *
591 **************************************************************************/
592
593
594/**
595 * Compare all data on a cdstream-based backup.
596 * @param bkpinfo The backup information structure. Fields used:
597 * - @c bkpinfo->disaster_recovery
598 * - @c bkpinfo->media_device
599 * - @c bkpinfo->restore_path
600 * @return 0 for success, nonzero for failure.
601 */
602int compare_to_cdstream(struct s_bkpinfo *bkpinfo)
603{
604 int res;
605
606 char *dir = NULL;
607 char *command = NULL;
608
609 assert(bkpinfo != NULL);
610 /** needs malloc **/
611 malloc_string(dir);
612 getcwd(dir, MAX_STR_LEN);
613 chdir(bkpinfo->restore_path);
614
615 mr_asprintf(&command, "cp -f /tmp/LAST-FILELIST-NUMBER %s/tmp",
616 bkpinfo->restore_path);
617 run_program_and_log_output(command, FALSE);
618 mr_free(command);
619
620 mvaddstr_and_log_it(g_currentY,
621 0, _("Verifying archives against filesystem"));
622
623 if (bkpinfo->disaster_recovery
624 && does_file_exist("/tmp/CDROM-LIVES-HERE")) {
625 strcpy(bkpinfo->media_device,
626 last_line_of_file("/tmp/CDROM-LIVES-HERE"));
627 } else {
628 find_cdrom_device(bkpinfo->media_device, FALSE);
629 }
630 res = verify_tape_backups(bkpinfo);
631 chdir(dir);
632 if (length_of_file("/tmp/changed.txt") > 2
633 && length_of_file("/tmp/changed.files") > 2) {
634 mr_msg(0,
635 "Type 'less /tmp/changed.files' to see which files don't match the archives");
636 mr_msg(2, "Calling popup_changelist_from_file()");
637 popup_changelist_from_file("/tmp/changed.files");
638 mr_msg(2, "Returned from popup_changelist_from_file()");
639 }
640
641 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
642 mr_free(dir);
643 return (res);
644}
645
646/**************************************************************************
647 *END_COMPARE_CD_STREAM *
648 **************************************************************************/
649
650
651/**
652 * Compare all data on a tape-based backup.
653 * @param bkpinfo The backup information structure. Field used: @c bkpinfo->restore_path.
654 * @return 0 for success, nonzero for failure.
655 */
656/**************************************************************************
657 * F@COMPARE_TO_TAPE() *
658 * compare_to_tape() - gots me?? *
659 * *
660 * returns: int *
661 **************************************************************************/
662int compare_to_tape(struct s_bkpinfo *bkpinfo)
663{
664 int res = 0;
665 char *dir = NULL;
666 char *command = NULL;
667
668 assert(bkpinfo != NULL);
669 malloc_string(dir);
670
671 getcwd(dir, MAX_STR_LEN);
672 chdir(bkpinfo->restore_path);
673 mr_asprintf(&command, "cp -f /tmp/LAST-FILELIST-NUMBER %s/tmp",
674 bkpinfo->restore_path);
675 run_program_and_log_output(command, FALSE);
676 mr_free(command);
677
678 mvaddstr_and_log_it(g_currentY,
679 0, _("Verifying archives against filesystem"));
680 res = verify_tape_backups(bkpinfo);
681 chdir(dir);
682 if (res) {
683 mvaddstr_and_log_it(g_currentY++, 74, _("Failed."));
684 } else {
685 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
686 }
687 mr_free(dir);
688 return (res);
689}
690
691/**************************************************************************
692 *END_COMPARE_TO_TAPE *
693 **************************************************************************/
694
695/* @} - end compareGroup */
Note: See TracBrowser for help on using the repository browser.