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

r3336@localhost: bruno | 2009-08-11 16:32:36 +0200

  • bkpinfo->media_device, bkpinfo->nfs_remote_dir, and bkpinfo->nfs_mount are now dynamically allocated
  • new interfaces for find_cdrom_device(), find_tape_device_and_size(), find_dvd_device(), find_cdrw_device(), set_dev_to_this_if_rx_OK() and read_cfg_var() which allocate the string now returned
  • Better differentiation between ISO and NFS iso file names construction
File:
1 edited

Legend:

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

    r2323 r2325  
    339339   * If backup_media_type is anything else, this should be blank.
    340340   */
    341     char media_device[MAX_STR_LEN / 4];
     341    char *media_device;
    342342
    343343  /**
     
    553553   * address form. (Domain names will be resolved in post_param_configuration().)
    554554   */
    555     char nfs_mount[MAX_STR_LEN];
     555    char *nfs_mount;
    556556
    557557  /**
     
    559559   * the backups in.
    560560   */
    561     char nfs_remote_dir[MAX_STR_LEN];
     561    char *nfs_remote_dir;
    562562
    563563  /**
Note: See TracChangeset for help on using the changeset viewer.