Ignore:
Timestamp:
May 7, 2013, 5:42:54 AM (11 years ago)
Author:
Bruno Cornec
Message:

r5277@localhost: bruno | 2013-05-07 01:22:17 +0200

  • Fix a compiler issue with the new test-mrstresc and also most compiler warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mondo/src/mondorestore/mondo-rstr-tools.c

    r3076 r3116  
    281281char *mds = NULL;
    282282int retval = 0, i;
    283 bool already_mounted = FALSE;
    284283
    285284assert(bkpinfo != NULL);
     
    307306if (is_this_device_mounted(g_isodir_device)) {
    308307    log_to_screen("WARNING - isodir is already mounted");
    309     already_mounted = TRUE;
    310308} else {
    311309    mr_asprintf(&mount_isodir_command, "mount %s", g_isodir_device);
     
    10271025        "Filelist and biggielist already recovered from media. Yay!");
    10281026} else {
    1029     getcwd(tmp, MAX_STR_LEN);
     1027    if (getcwd(tmp, MAX_STR_LEN) == NULL) {
     1028        // FIXME
     1029    }
    10301030    if (chdir(bkpinfo->tmpdir)) {
    10311031        // FIXME
Note: See TracChangeset for help on using the changeset viewer.