Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/driver.c

    r6afc9d7 rb19e892  
    3333#include <dirent.h>
    3434#include <errno.h>
    35 #include <fcntl.h>
    36 #include <sys/stat.h>
    3735#include <io/log.h>
     36#include <vfs/vfs.h>
    3837#include <loc.h>
    3938#include <str_error.h>
     
    142141        /* Check whether the driver's binary exists. */
    143142        struct stat s;
    144         if (stat(drv->binary_path, &s) != 0) {
     143        if (vfs_stat_path(drv->binary_path, &s) != EOK) {
    145144                log_msg(LOG_DEFAULT, LVL_ERROR, "Driver not found at path `%s'.",
    146145                    drv->binary_path);
Note: See TracChangeset for help on using the changeset viewer.