Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3624 → Rev 3625

/trunk/uspace/srv/fs/fat/fat_ops.c
223,7 → 223,7
static void fat_node_put(void *);
static void *fat_create_node(dev_handle_t, int);
static int fat_destroy_node(void *);
static bool fat_link(void *, void *, const char *);
static int fat_link(void *, void *, const char *);
static int fat_unlink(void *, void *);
static void *fat_match(void *, const char *);
static fs_index_t fat_index_get(void *);
341,9 → 341,9
return EOK;
}
 
bool fat_link(void *prnt, void *chld, const char *name)
int fat_link(void *prnt, void *chld, const char *name)
{
return false; /* not supported at the moment */
return ENOTSUP; /* not supported at the moment */
}
 
int fat_unlink(void *prnt, void *chld)
525,6 → 525,10
.is_file = fat_is_file
};
 
/*
* VFS operations.
*/
 
void fat_mounted(ipc_callid_t rid, ipc_call_t *request)
{
dev_handle_t dev_handle = (dev_handle_t) IPC_GET_ARG1(*request);