Browse Source

CA system is called CONAX not CONNAX.

Georgi Chorbadzhiyski 12 years ago
parent
commit
9bd81d834b
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      cat.c
  2. 1
    1
      tsdata.h

+ 2
- 2
cat.c View File

@@ -178,7 +178,7 @@ int ts_cat_is_same(struct ts_cat *cat1, struct ts_cat *cat2) {
178 178
 
179 179
 enum CA_system ts_get_CA_sys(uint16_t CA_id) {
180 180
 	if (CA_id >= 0x0600 && CA_id <= 0x06FF) return CA_IRDETO;
181
-	if (CA_id >= 0x0B00 && CA_id <= 0x0BFF) return CA_CONNAX;
181
+	if (CA_id >= 0x0B00 && CA_id <= 0x0BFF) return CA_CONAX;
182 182
 	if (CA_id >= 0x0D00 && CA_id <= 0x0DFF) return CA_CRYPTOWORKS;
183 183
 	return CA_UNKNOWN;
184 184
 }
@@ -186,7 +186,7 @@ enum CA_system ts_get_CA_sys(uint16_t CA_id) {
186 186
 char * ts_get_CA_sys_txt(enum CA_system CA_sys) {
187 187
 	switch (CA_sys) {
188 188
 		case CA_IRDETO:			return "IRDETO";
189
-		case CA_CONNAX:			return "CONNAX";
189
+		case CA_CONAX:			return "CONAX";
190 190
 		case CA_CRYPTOWORKS:	return "CRYPTOWORKS";
191 191
 		case CA_UNKNOWN:
192 192
 		default:				return "UNKNOWN";

+ 1
- 1
tsdata.h View File

@@ -87,7 +87,7 @@ struct ts_pat {
87 87
 
88 88
 enum CA_system {
89 89
 	CA_IRDETO,		// 0x0600 - 0x06FF Irdeto
90
-	CA_CONNAX,		// 0x0B00 - 0x0BFF Norwegian Telekom
90
+	CA_CONAX,		// 0x0B00 - 0x0BFF Norwegian Telekom
91 91
 	CA_CRYPTOWORKS,	// 0x0D00 - 0x0DFF CrytoWorks
92 92
 	CA_UNKNOWN,
93 93
 };

Loading…
Cancel
Save