libctrl: adopt to recent ipaccess/ipa naming change

This commit is contained in:
Harald Welte 2014-08-20 22:51:25 +02:00
parent 3ff81b1a6b
commit acbb4c91b6
1 changed files with 3 additions and 2 deletions

View File

@ -49,6 +49,7 @@
#include <osmocom/core/socket.h>
#include <osmocom/gsm/protocol/ipaccess.h>
#include <osmocom/gsm/ipa.h>
#include <osmocom/vty/command.h>
#include <osmocom/vty/vector.h>
@ -81,8 +82,8 @@ int ctrl_cmd_send(struct osmo_wqueue *queue, struct ctrl_cmd *cmd)
return -1;
}
ipaccess_prepend_header_ext(msg, IPAC_PROTO_EXT_CTRL);
ipaccess_prepend_header(msg, IPAC_PROTO_OSMO);
ipa_prepend_header_ext(msg, IPAC_PROTO_EXT_CTRL);
ipa_prepend_header(msg, IPAC_PROTO_OSMO);
ret = osmo_wqueue_enqueue(queue, msg);
if (ret != 0) {