Changeset 127 in MondoRescue for trunk/mondo/mondo/mondorestore


Ignore:
Timestamp:
Nov 19, 2005, 2:27:31 AM (18 years ago)
Author:
bcornec
Message:

merge -r 125:126 $SVN_M/branches/2.05

Location:
trunk/mondo/mondo/mondorestore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/mondo/mondo/mondorestore/mondo-prep.c

    r115 r127  
    488488            if (lvmversion == 2) {
    489489                strcpy(tmp, call_program_and_get_last_line_of_output
    490                        ("cat /var/log/mondo-archive.log | tail -n5 | grep Insufficient | tail -n1"));
     490                       ("tail -n5 /var/log/mondo-archive.log | grep Insufficient | tail -n1"));
    491491            } else {
    492492                strcpy(tmp, call_program_and_get_last_line_of_output
    493                        ("cat /var/log/mondo-archive.log | tail -n5 | grep lvcreate | tail -n1"));
     493                       ("tail -n5 /var/log/mondo-archive.log | grep lvcreate | tail -n1"));
    494494            }
    495495            for (p = tmp; *p != '\0' && !isdigit(*p); p++);
  • trunk/mondo/mondo/mondorestore/mondo-rstr-newt.c

    r59 r127  
    23122312#else
    23132313
    2314     for (i = 0;
    2315          strcmp(raidlist->el[i].raid_device, device)
     2314    for (i = 0; strcmp(raidlist->el[i].raid_device, device)
    23162315         && i < raidlist->entries; i++);
    23172316#endif
     
    26252624 * @ingroup restoreUtilityGroup
    26262625 */
    2627 int
    2628 read_variableINT_and_remove_from_raidvars(struct
    2629                                           OSSWAP (raid_device_record,
    2630                                                   vinum_volume) * raidrec,
    2631                                           char *label)
     2626int read_variableINT_and_remove_from_raidvars(struct
     2627                                              OSSWAP (raid_device_record,
     2628                                                      vinum_volume) *
     2629                                              raidrec, char *label)
    26322630{
    26332631    /** int ***************************************************************/
  • trunk/mondo/mondo/mondorestore/mondo-rstr-tools.c

    r94 r127  
    745745#endif
    746746
    747     } else
    748      if (bkpinfo->backup_media_type == iso) {
     747    } else if (bkpinfo->backup_media_type == iso) {
    749748#ifdef __FreeBSD__
    750749        sprintf(mount_cmd, "%s/%d.iso", bkpinfo->isodir,
     
    19651964    int signals[] =
    19661965        { SIGKILL, SIGPIPE, SIGTERM, SIGHUP, SIGTRAP, SIGABRT, SIGINT,
    1967 SIGSTOP, 0 };
     1966        SIGSTOP, 0
     1967    };
    19681968    int i;
    19691969    for (i = 0; signals[i]; i++) {
  • trunk/mondo/mondo/mondorestore/mr-externs.h

    r59 r127  
    8585extern void resize_drive_proportionately_to_suit_new_drives(struct
    8686                                                            mountlist_itself
    87                                                             *mountlist,
    88                                                             char
     87                                                            *mountlist, char
    8988                                                            *drive_name);
    9089extern void resize_mountlist_proportionately_to_suit_new_drives(struct
Note: See TracChangeset for help on using the changeset viewer.