aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2011-09-08 13:22:26 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2011-09-09 02:35:38 +0200
commit8fc277b77765d8cdff0c08e5581bc8621a192d33 (patch)
treea1b049569f8ebeed4058e58a084b978a7a4aabc7
parentf099567ae3328166f45c5a9e60a74b04093a0a0d (diff)
tests: remove reference to internal headers in ipa_proxy_test
This example has to compile out of the tree, including internal.h is not required and using PACKAGE_VERSION here, which is internal to the library, does not seem to me like a good idea.
-rw-r--r--tests/ipa_proxy_test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/ipa_proxy_test.c b/tests/ipa_proxy_test.c
index 6288a3a..2ed30ff 100644
--- a/tests/ipa_proxy_test.c
+++ b/tests/ipa_proxy_test.c
@@ -8,8 +8,6 @@
#include <osmocom/vty/vty.h>
#include <osmocom/vty/command.h>
#include <osmocom/vty/telnet_interface.h>
-#include "internal.h"
-#include "config.h"
static void *tall_test;
@@ -52,7 +50,7 @@ static enum node_type bsc_vty_go_parent(struct vty *vty)
static struct vty_app_info vty_info = {
.name = "ipa-proxy-test",
- .version = PACKAGE_VERSION,
+ .version = "1.0",
.go_parent_cb = bsc_vty_go_parent,
.is_config_node = bsc_vty_is_config_node,
};