Changeset 889cdb1 in mainline for uspace/srv/logger


Ignore:
Timestamp:
2018-10-28T21:36:49Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
184f2f8a
Parents:
bf05c74
Message:

Always answer the IPC_M_PHONE_HUNGUP message

Location:
uspace/srv/logger
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/logger/ctl.c

    rbf05c74 r889cdb1  
    7575                async_get_call(&call);
    7676
    77                 if (!IPC_GET_IMETHOD(call))
     77                if (!IPC_GET_IMETHOD(call)) {
     78                        async_answer_0(&call, EOK);
    7879                        break;
     80                }
    7981
    8082                switch (IPC_GET_IMETHOD(call)) {
  • uspace/srv/logger/writer.c

    rbf05c74 r889cdb1  
    109109                async_get_call(&call);
    110110
    111                 if (!IPC_GET_IMETHOD(call))
     111                if (!IPC_GET_IMETHOD(call)) {
     112                        async_answer_0(&call, EOK);
    112113                        break;
     114                }
    113115
    114116                switch (IPC_GET_IMETHOD(call)) {
Note: See TracChangeset for help on using the changeset viewer.