diff options
author | Harald Welte <laforge@gnumonks.org> | 2019-02-19 11:07:50 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2019-02-19 12:29:14 +0000 |
commit | 6a469e13e3415bc5cee01e160d470df99c8b2ebe (patch) | |
tree | 136dd2feb73d16ac6e253febf5ff47b40944dcc6 /src/gb | |
parent | 10f07da804cd1691d326c78184dae7d38dfcb0b4 (diff) |
bssgp_tx_bvc_unblock(): Fix log message
We're transmitting a BVC-UNBLOCK but the log states the opposite:
BVC-BLOCK. Let's fix that.
Change-Id: I70fa7336402d193513f89fcf3068b0b21925702d
Diffstat (limited to 'src/gb')
-rw-r--r-- | src/gb/gprs_bssgp_bss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gb/gprs_bssgp_bss.c b/src/gb/gprs_bssgp_bss.c index bef9bb11..f06c403f 100644 --- a/src/gb/gprs_bssgp_bss.c +++ b/src/gb/gprs_bssgp_bss.c @@ -277,7 +277,7 @@ int bssgp_tx_bvc_unblock(struct bssgp_bvc_ctx *bctx) (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph)); uint16_t _bvci = osmo_htons(bctx->bvci); - LOGP(DBSSGP, LOGL_NOTICE, "BSSGP (BVCI=%u) Tx BVC-BLOCK\n", bctx->bvci); + LOGP(DBSSGP, LOGL_NOTICE, "BSSGP (BVCI=%u) Tx BVC-UNBLOCK\n", bctx->bvci); msgb_nsei(msg) = bctx->nsei; msgb_bvci(msg) = 0; /* Signalling */ |