tbf: Use past-tense and call it created_ts
diff --git a/src/tbf.cpp b/src/tbf.cpp
index fa9d263..cac807c 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -508,7 +508,7 @@
 	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 @@
 			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=");
diff --git a/src/tbf.h b/src/tbf.h
index 5c8ec62..c301960 100644
--- a/src/tbf.h
+++ b/src/tbf.h
@@ -138,7 +138,7 @@
 
 	uint16_t sns() const;
 
-	time_t create_ts() const;
+	time_t created_ts() const;
 
 	/* attempt to make things a bit more fair */
 	void rotate_in_list();
@@ -227,7 +227,7 @@
 	uint32_t m_tlli;
 	uint8_t m_tlli_valid;
 	uint8_t m_tfi;
-	time_t m_create_ts;
+	time_t m_created_ts;
 
 	/* store IMSI for look-up and PCH retransmission */
 	char m_imsi[16];
@@ -314,9 +314,9 @@
 
 const char *tbf_name(gprs_rlcmac_tbf *tbf);
 
-inline time_t gprs_rlcmac_tbf::create_ts() const
+inline time_t gprs_rlcmac_tbf::created_ts() const
 {
-	return m_create_ts;
+	return m_created_ts;
 }
 
 #endif