diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-09 13:05:06 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-09 13:05:06 +0100 |
commit | d68e4e5e540720d9b02e2062e3982f1c438eb1e0 (patch) | |
tree | 663da5a36693ab0785c7c48e45bd5cc139c80a85 /src/lib/irm.c | |
parent | af8db503f46049fabaa793905f35bf0a2867744b (diff) | |
download | ouroboros-d68e4e5e540720d9b02e2062e3982f1c438eb1e0.tar.gz ouroboros-d68e4e5e540720d9b02e2062e3982f1c438eb1e0.zip |
irmd, lib: Replace stubs in irmd
This replaces the stubs in the irmd and calls the actual IPCP
operations from the library. It also calls the DIF Allocator API in
one of the operations.
Diffstat (limited to 'src/lib/irm.c')
-rw-r--r-- | src/lib/irm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/irm.c b/src/lib/irm.c index 519b4eb8..493cb71d 100644 --- a/src/lib/irm.c +++ b/src/lib/irm.c @@ -40,7 +40,7 @@ static int send_irm_msg(struct irm_msg * msg) buf = serialize_irm_msg(msg); if (buf == NULL) { close(sockfd); - return -1; + return -1; } if (write(sockfd, buf->data, buf->size) == -1) { |