summaryrefslogtreecommitdiff
path: root/src/irmd/ipcp.c
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2019-07-25 12:50:46 +0200
committerSander Vrijders <sander@ouroboros.rocks>2019-07-29 19:36:45 +0200
commitdae15c284248d49079ad5f8a3d8ff30e217f419e (patch)
treeea7942e940396c0c78304fef8b43fb25c5aebba8 /src/irmd/ipcp.c
parentc9232acef855b51d1bc199a68c03c0695ac11192 (diff)
downloadouroboros-dae15c284248d49079ad5f8a3d8ff30e217f419e.tar.gz
ouroboros-dae15c284248d49079ad5f8a3d8ff30e217f419e.zip
build: Refactor normal to unicast
This completes the renaming of the normal IPCP to the unicast IPCP in the sources, to get everything consistent with the documentation. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd/ipcp.c')
-rw-r--r--src/irmd/ipcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irmd/ipcp.c b/src/irmd/ipcp.c
index f6aaaf59..c566a57c 100644
--- a/src/irmd/ipcp.c
+++ b/src/irmd/ipcp.c
@@ -137,8 +137,8 @@ pid_t ipcp_create(const char * name,
char * argv[5];
switch(ipcp_type) {
- case IPCP_NORMAL:
- exec_name = IPCP_NORMAL_EXEC;
+ case IPCP_UNICAST:
+ exec_name = IPCP_UNICAST_EXEC;
break;
case IPCP_BROADCAST:
exec_name = IPCP_BROADCAST_EXEC;