Skip to content

Commit

Permalink
fixed CAMD33 EXIT
Browse files Browse the repository at this point in the history
FIXED camd33 exit .
  • Loading branch information
sangood committed Apr 1, 2015
1 parent 84023dd commit 63ad760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions module-camd33.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ static int32_t camd33_recv(struct s_client * client, uchar *buf, int32_t l)
if (client->crypted)
aes_encrypt_idx(&cur_client()->aes_keys, buf, n);
}
if (n<=0) cs_disconnect_client(client);
cs_ddump_mask(D_CLIENT, buf, n, "received %d bytes from client", n);
return(n);
}
Expand Down
2 changes: 1 addition & 1 deletion module-webif.c
Original file line number Diff line number Diff line change
Expand Up @@ -2621,7 +2621,7 @@ static char *get_cardsystem_desc_by_caid(uint16_t caid) {
if (caid >= 0x1700 && caid <= 0x17FF) return "betacrypt";
if (caid >= 0x1800 && caid <= 0x18FF) return "nagra";
if (caid >= 0x4B00 && caid <= 0x4BFF) return "tongfang";
if (caid >= 0x4A00 && caid <= 0x4ADF) return "streamguard";
if (caid >= 0x4AD2 && caid <= 0x4AD2) return "streamguard";
if (caid >= 0x4AE0 && caid <= 0x4AE1) return "drecrypt";
if (caid == 0x5581 || caid == 0x4AEE) return "bulcrypt";
if (caid == 0x5501 || caid == 0x5504 || caid == 0x5511) return "griffin";
Expand Down

0 comments on commit 63ad760

Please sign in to comment.