Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/console.c

    rf9b2cb4c r6afc9d7  
    4949                return NULL;
    5050       
    51         ctrl->input_sess = fsession(ifile, INTERFACE_CONSOLE);
     51        ctrl->input_sess = vfs_fsession(ifile, INTERFACE_CONSOLE);
    5252        if (!ctrl->input_sess) {
    5353                free(ctrl);
     
    5555        }
    5656       
    57         ctrl->output_sess = fsession(ofile, INTERFACE_CONSOLE);
     57        ctrl->output_sess = vfs_fsession(ofile, INTERFACE_CONSOLE);
    5858        if (!ctrl->output_sess) {
    5959                free(ctrl);
Note: See TracChangeset for help on using the changeset viewer.