Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysinst/sysinst.c

    r6c4eedf ra6fc88a  
    3838#include <block.h>
    3939#include <byteorder.h>
    40 #include <cap.h>
    4140#include <errno.h>
    4241#include <fdisk.h>
     
    9089        fdisk_part_t *part;
    9190        fdisk_part_spec_t pspec;
    92         cap_spec_t cap;
     91        fdisk_cap_t cap;
    9392        service_id_t sid;
    9493        int rc;
     
    172171
    173172        printf("sysinst_fs_mount(): verify filesystem server result\n");
    174         if (texit != TASK_EXIT_NORMAL || trc != 0) {
    175                 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n");
    176         }
     173        if (texit != TASK_EXIT_NORMAL || trc != 0)
     174                return EIO;
    177175
    178176        rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY, NULL);
     
    211209
    212210        printf("sysinst_copy_boot_files(): verify filesystem server result\n");
    213         if (texit != TASK_EXIT_NORMAL || trc != 0) {
    214                 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n");
    215         }
     211        if (texit != TASK_EXIT_NORMAL || trc != 0)
     212                return EIO;
    216213
    217214        printf("sysinst_copy_boot_files(): create CD mount point\n");
Note: See TracChangeset for help on using the changeset viewer.