Ignore:
Timestamp:
Apr 12, 2007, 1:56:35 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • evaluate_drive_within_mountlist is a private function
  • support UUID in mondorestore (Fix for #103)
  • Fix a bug in size computation for cciss and similar devices needing a p before their partition name
  • Fix 2 references to grep -x which are not working during a restore process due to busybox limits of grep command (Fix for #96)
File:
1 edited

Legend:

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

    r1113 r1297  
    4545   */
    4646    char label[256];
     47
     48    /**
     49     * This is the filesystem UUID (if there is one). If not, this should be "".
     50     */
     51    char uuid[64];
    4752};
    4853
     
    785790};
    786791
    787 
    788792/**
    789793 * A tape catalog, made of a list of @p s_tapecat_entry.
    790794 */
    791795struct s_tapecatalog {
    792         /**
    793     * The number of entries in the tape catalog.
    794     */
    795     int entries;
    796 
    797         /**
    798     * The entries themselves, all @p entries of them.
    799     */
    800     struct s_tapecat_entry el[MAX_TAPECATALOG_ENTRIES];
    801 };
     796               /**
     797        * The number of entries in the tape catalog.
     798        */
     799       int entries;
     800
     801               /**
     802        * The entries themselves, all @p entries of them.
     803        */
     804       struct s_tapecat_entry el[MAX_TAPECATALOG_ENTRIES];
     805};
Note: See TracChangeset for help on using the changeset viewer.