Ignore:
Timestamp:
Mar 12, 2007, 2:22:55 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • Fix a bug for tape mangement where block size was missing during extract (Michel Loiseleur)
  • Remove turn_wildcard_chars_into_literal_chars and use mr_stresc instead (based on an idea from Michel)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/mondorestore/mondo-rstr-tools.c

    r1219 r1241  
    11061106        if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
    11071107            mr_asprintf(&command,
    1108                     "tar -zxf %s %s %s %s %s %s",
     1108                    "tar -b %ld -zxf %s %s %s %s %s %s",
     1109                    bkpinfo->internal_tape_block_size,
    11091110                    bkpinfo->media_device,
    11101111                    MOUNTLIST_FNAME_STUB,
     
    11921193        log_to_screen(_("Pre-processing filelist"));
    11931194        if (!does_file_exist(g_biggielist_txt)) {
    1194             mr_asprintf(&command, "> %s", g_biggielist_txt);
     1195            mr_asprintf(&command, "echo -n > %s", g_biggielist_txt);
    11951196            paranoid_system(command);
    11961197            mr_free(command);
Note: See TracChangeset for help on using the changeset viewer.