diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-02-10 23:40:34 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-02-10 23:45:24 +0100 |
commit | f87a2bc5199104d87ccc48dcc2b0e18d345a9bb4 (patch) | |
tree | e883c1bb2d1e2769bdadf937def235756af95c3b /src/irmd | |
parent | a6309410ffb6b4531044c3b52cb6a79cfdcde231 (diff) | |
download | ouroboros-f87a2bc5199104d87ccc48dcc2b0e18d345a9bb4.tar.gz ouroboros-f87a2bc5199104d87ccc48dcc2b0e18d345a9bb4.zip |
ipcpd: Silent shutdown of normal
The acceptor will not log disconnects with IRMd. Unexpected
disconnects will be reported and handled by management components.
Diffstat (limited to 'src/irmd')
-rw-r--r-- | src/irmd/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/main.c b/src/irmd/main.c index 74cb8359..2454a9ca 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1888,7 +1888,7 @@ void * mainloop(void * o) (qoscube_t *) &ret_msg.qoscube); if (e == NULL) { ret_msg.has_result = true; - ret_msg.result = -1; + ret_msg.result = -EIRMD; break; } ret_msg.has_port_id = true; |