Ignore:
Timestamp:
Aug 18, 2009, 3:20:42 PM (15 years ago)
Author:
Bruno Cornec
Message:

r3339@localhost: bruno | 2009-08-11 23:56:01 +0200
bkpinfo->kernel_path, bkpinfo->call_before_iso, bkpinfo->call_make_iso, bkpinfo->call_burn_iso, bkpinfo->call_after_iso and bkpinfo->postnuke_tarball are now dynamically allocated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mondo/src/common/mondostructures.h

    r2327 r2328  
    524524   * A command to call BEFORE making an ISO image.
    525525   */
    526     char call_before_iso[MAX_STR_LEN];
     526    char *call_before_iso;
    527527
    528528  /**
    529529   * A command to call to make an ISO image.
    530530   */
    531     char call_make_iso[MAX_STR_LEN];
     531    char *call_make_iso;
    532532
    533533  /**
    534534   * A command to call to burn the ISO image.
    535535   */
    536     char call_burn_iso[MAX_STR_LEN];
     536    char *call_burn_iso;
    537537
    538538  /**
    539539   * A command to call AFTER making an ISO image.
    540    */
    541     char call_after_iso[MAX_STR_LEN];
     540   * BERLIOS: Never initialized in code !!
     541   */
     542    char *call_after_iso;
    542543
    543544  /**
     
    545546   * included with Mindi.
    546547   */
    547     char kernel_path[MAX_STR_LEN];
     548    char *kernel_path;
    548549
    549550  /**
     
    570571   * after nuking the system. If "", do not use a post-nuke tarball.
    571572   */
    572     char postnuke_tarball[MAX_STR_LEN];
     573    char *postnuke_tarball;
    573574
    574575  /**
Note: See TracChangeset for help on using the changeset viewer.