Changeset 588 in MondoRescue for trunk/mondo/mondo/common


Ignore:
Timestamp:
May 29, 2006, 11:47:20 AM (18 years ago)
Author:
bcornec
Message:

merge -r 560:587 $SVN_M/branches/stable

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

Legend:

Unmodified
Added
Removed
  • trunk/mondo/mondo/common/libmondo-raid.c

    r561 r588  
    993993    paranoid_free(token);
    994994    // skip ':' and status
    995     token = strtok (string, delims, &lastpos);
     995    token = mr_strtok (string, delims, &lastpos);
    996996    paranoid_free(token);
    997     token = strtok (string, delims, &lastpos);
     997    token = mr_strtok (string, delims, &lastpos);
    998998    if (!strcmp(token, "inactive")) {
    999999      log_msg(1, "RAID device '%s' inactive.\n",
     
    10061006
    10071007    // get RAID level
    1008     token = strtok (string, delims, &lastpos);
     1008    token = mr_strtok (string, delims, &lastpos);
    10091009    if (!strcmp(token, "multipath")) {
    10101010      raidlist->el[raidlist->entries].raid_level = -2;
     
    10361036    raidlist->el[raidlist->entries].spare_disks.entries = 0;
    10371037    raidlist->el[raidlist->entries].failed_disks.entries = 0;
    1038     while((token = strtok (string, delims, &lastpos))) {
     1038    while((token = mr_strtok (string, delims, &lastpos))) {
    10391039      if ((pos = strstr(token, "("))) {
    10401040        type = *(pos+1);
  • trunk/mondo/mondo/common/libmondo-string-EXT.h

    r59 r588  
    4444extern inline void turn_wildcard_chars_into_literal_chars(char *out,
    4545                                                          char *in);
     46/* Valid external functions */
     47extern char *mr_strtok(char *instr, const char *delims, int *lastpos);
  • trunk/mondo/mondo/common/libmondo-string.h

    r561 r588  
    3636
    3737/* Valid external functions */
    38 char *mr_strtok(char *instr, const char *delims, int *lastpos)
     38char *mr_strtok(char *instr, const char *delims, int *lastpos);
  • trunk/mondo/mondo/common/newt-specific.c

    r507 r588  
    869869            newtCls();
    870870            newtPushHelpLine
    871                 (_("Welcome to Mondo Rescue, by Hugo Rabson and the Internet. All rights reversed."));
     871                (_("Welcome to Mondo Rescue, by Dev Team and the Internet. All rights reversed."));
    872872            /*  newtDrawRootText(28,0,"Welcome to Mondo Rescue"); */
    873873            newtDrawRootText(18, 0, WELCOME_STRING);
Note: See TracChangeset for help on using the changeset viewer.