Changeset 1384 in MondoRescue


Ignore:
Timestamp:
Apr 30, 2007, 7:19:08 PM (17 years ago)
Author:
Bruno Cornec
Message:

Typos again

Location:
branches/stable/mondo/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/common/libmondo-tools.h

    r1377 r1384  
    4545double get_kernel_version(void);
    4646char *get_architecture(void);
    47 char *get_uname_m();
    4847bool does_nonMS_partition_exist(void);
    4948void stop_magicdev_if_necessary(void);
  • branches/stable/mondo/src/mondoarchive/mondoarchive.c

    r1378 r1384  
    2020#include "mondostructures.h"
    2121#include "libmondo.h"
    22 #include "libmondo-tools.h"
    2322#include "mondo-cli-EXT.h"
    2423
     
    4948extern t_bkptype g_backup_media_type;
    5049extern int g_loglevel;
     50
     51extern char *get_uname_m();
    5152
    5253static char *g_cdrom_drive_is_here = NULL;
  • branches/stable/mondo/src/mondorestore/mondo-rstr-tools.c

    r1376 r1384  
    838838        if (bkpinfo->backup_media_type == cdstream) {
    839839            strcpy(bkpinfo->media_device, "/dev/cdrom");
    840             bkpinfo->media_size = (long)1999 * 1024;
     840            bkpinfo->media_size = (long)1999*1024;
    841841            bkpinfo->media_size = (long)650;    /* good guess */
    842842        } else if (bkpinfo->backup_media_type == tape
     
    852852        } else {
    853853            strcpy(bkpinfo->media_device, "/dev/cdrom");    /* we don't really need this var */
    854             bkpinfo->media_size = (long)1999 * 1024;    /* 650, probably, but we don't need this var anyway */
    855             bkpinfo->media_size = (long)1999 * 1024;    /* 650, probably, but we don't need this var anyway */
     854            bkpinfo->media_size = (long)1999*1024;  /* 650, probably, but we don't need this var anyway */
     855            bkpinfo->media_size = (long)1999*1024;  /* 650, probably, but we don't need this var anyway */
    856856            mr_msg(2, "Backup medium is CD-R[W]");
    857857        }
     
    14761476    if (res) {
    14771477        mvaddstr_and_log_it(g_currentY++, 74, _("Failed."));
    1478         log_to_screen
    1479             (_("GRUB ran w/error(s). See %s for more info."), MONDO_LOGFILE);
     1478        log_to_screen(_("GRUB ran w/error(s). See %s for more info."), MONDO_LOGFILE);
    14801479        mr_msg(1, "Type:-");
    14811480        mr_msg(1, "    mount-me");
     
    17441743    if (res) {
    17451744        mvaddstr_and_log_it(g_currentY++, 74, _("Failed."));
    1746         log_to_screen
    1747             (_("MBR+fstab processed w/error(s). See %s for more info."), MONDO_LOGFILE);
     1745        log_to_screen(_("MBR+fstab processed w/error(s). See %s for more info."), MONDO_LOGFILE);
    17481746    } else {
    17491747        mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
Note: See TracChangeset for help on using the changeset viewer.