X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=second%2Ffs_iso.c;h=50479a9a1249e041933f2be027241752d326d3cd;hp=9f52a3da5fd103541e928cc04102b84990e91015;hb=8d5a42062f8b88eaea91434e53973ce9f55589d9;hpb=f4ebbd9f7ea23e3f0fcbe098754580c220894628 diff --git a/second/fs_iso.c b/second/fs_iso.c index 9f52a3d..50479a9 100644 --- a/second/fs_iso.c +++ b/second/fs_iso.c @@ -24,7 +24,7 @@ #include "string.h" #include "partition.h" #include "fs.h" - +#include "errors.h" static int iso_open( struct boot_file_t* file, const char* dev_name, @@ -52,7 +52,7 @@ iso_open( struct boot_file_t* file, struct partition_t* part, const char* file_name) { - return FILE_ERR_NOTFOUND; + return FILE_ERR_BAD_FSYS; } static int @@ -60,14 +60,14 @@ iso_read( struct boot_file_t* file, unsigned int size, void* buffer) { - return FILE_ERR_NOTFOUND; + return FILE_ERR_BAD_FSYS; } static int iso_seek( struct boot_file_t* file, unsigned int newpos) { - return FILE_ERR_NOTFOUND; + return FILE_ERR_BAD_FSYS; } static int