diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-28 16:35:40 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-28 16:35:40 +0200 |
commit | c45be0dcbd123881cc33ce61571578dcb22c3b54 (patch) | |
tree | 58c7c12665dc4e11d010fa89bfe11de239053fd2 /src/irmd/main.c | |
parent | b144406dbb9cbdf83354590746097a93d6e88bc4 (diff) | |
download | ouroboros-c45be0dcbd123881cc33ce61571578dcb22c3b54.tar.gz ouroboros-c45be0dcbd123881cc33ce61571578dcb22c3b54.zip |
lib: Add ipcp_messages proto file
This removes the custom ser/des methods for communicating with the
IPCP daemon and also uses GPB instead.
Diffstat (limited to 'src/irmd/main.c')
-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 d5e1fcd8..e4b6cebd 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -134,7 +134,7 @@ static void bootstrap_ipcp(struct irm * instance, return; } - if (ipcp_bootstrap(pid, *conf)) + if (ipcp_bootstrap(pid, conf)) LOG_ERR("Could not bootstrap IPCP"); } |