Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devmap/devmap.c

    rcb819f9 r991f645  
    10521052                        break;
    10531053                default:
    1054                         ipc_answer_0(callid, ENOENT);
     1054                        if (!(callid & IPC_CALLID_NOTIFICATION))
     1055                                ipc_answer_0(callid, ENOENT);
    10551056                }
    10561057        }
     
    11101111                        break;
    11111112                default:
    1112                         ipc_answer_0(callid, ENOENT);
     1113                        if (!(callid & IPC_CALLID_NOTIFICATION))
     1114                                ipc_answer_0(callid, ENOENT);
    11131115                }
    11141116        }
Note: See TracChangeset for help on using the changeset viewer.