gtphub: fix a conditional for log output

Sponsored-by: On-Waves ehi
This commit is contained in:
Neels Hofmeyr 2015-11-30 12:19:11 +01:00
parent fc1be3a0c1
commit 005f175c3b
1 changed files with 1 additions and 1 deletions

View File

@ -1468,7 +1468,7 @@ static int gtphub_handle_pdp_ctx_ies(struct gtphub *hub,
if (p->type == GTP_CREATE_PDP_REQ) {
LOG(LOGL_DEBUG, "New tunnel, first half: %s\n",
gtphub_tunnel_str(tun));
} else if (p->type == GTP_CREATE_PDP_REQ) {
} else if (p->type == GTP_CREATE_PDP_RSP) {
LOG(LOGL_DEBUG, "New tunnel: %s\n",
gtphub_tunnel_str(tun));
}