aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf.cpp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-16 10:07:20 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-16 10:07:20 +0100
commita0047996990214c72ab20d7a0614d8790f4b9634 (patch)
tree62b24d93c3eb001e056cb993854cb686fc8ac19e /src/tbf.cpp
parentb293043e2d7a8205959ddfc31a723427eeffaa55 (diff)
tbf: Use past-tense and call it created_ts
Diffstat (limited to 'src/tbf.cpp')
-rw-r--r--src/tbf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tbf.cpp b/src/tbf.cpp
index fa9d2638..cac807ce 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -508,7 +508,7 @@ struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_bts *bts,
if (!tbf)
return NULL;
- tbf->m_create_ts = time(NULL);
+ tbf->m_created_ts = time(NULL);
tbf->bts = bts->bts;
tbf->direction = dir;
tbf->m_tfi = tfi;
@@ -1765,7 +1765,7 @@ void tbf_print_vty_info(struct vty *vty, llist_head *ltbf)
tbf->imsi(), VTY_NEWLINE);
vty_out(vty, " created=%lu state=%08x 1st_TS=%d 1st_cTS=%d ctrl_TS=%d "
"MS_CLASS=%d%s",
- tbf->create_ts(), tbf->state_flags, tbf->first_ts,
+ tbf->created_ts(), tbf->state_flags, tbf->first_ts,
tbf->first_common_ts, tbf->control_ts, tbf->ms_class,
VTY_NEWLINE);
vty_out(vty, " TS_alloc=");