Update TS 04.60 references to new TS 44.060

Change-Id: Ib7c3a74b502b2251da2f7b9d6d711f3e32133bc3
diff --git a/src/encoding.cpp b/src/encoding.cpp
index ce38950..a5e7f8a 100644
--- a/src/encoding.cpp
+++ b/src/encoding.cpp
@@ -850,7 +850,7 @@
 
 	// RECEIVE_BLOCK_BITMAP
 	for (int i = 0; i < 64; i++) {
-		/* Set bit at the appropriate position (see 3GPP TS 04.60 9.1.8.1) */
+		/* Set bit at the appropriate position (see 3GPP TS 44.060 9.1.8.1) */
 		if (show_rbb[i] == 'R')
 			rbb_byte |= 1<< (7-(i%8));
 
@@ -877,7 +877,7 @@
 	bitvec_write_field(dest, &wp, window->ssn(), 7); // STARTING_SEQUENCE_NUMBER
 
 	for (int i = 0; i < 64; i++) {
-		/* Set bit at the appropriate position (see 3GPP TS 04.60 9.1.8.1) */
+		/* Set bit at the appropriate position (see 3GPP TS 44.060 9.1.8.1) */
 		bool is_ack = (rbb[i] == 'R');
 		bitvec_write_field(dest, &wp, is_ack, 1);
 	}
@@ -1053,7 +1053,7 @@
 		bow ? ", BOW" : "", eow ? ", EOW" : "");
 
 	for (i = urbb_len; i > 0; i--) {
-		/* Set bit at the appropriate position (see 3GPP TS 04.60 12.3.1) */
+		/* Set bit at the appropriate position (see 3GPP TS 44.060 12.3.1) */
 		bool is_ack = window->m_v_n.is_received(esn_crbb + i);
 		bitvec_write_field(dest, &wp, is_ack, 1);
 	}