Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't attempt to open IP addresses as files when the highest OSCam mo…
…de is used
  • Loading branch information
Sam Stenvall authored and perexg committed Jan 3, 2016
1 parent ead75d5 commit 1abd43e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/descrambler/capmt.c
Expand Up @@ -484,7 +484,9 @@ capmt_connect(capmt_t *capmt, int i)
if (!capmt->capmt_running)
return -1;

if (capmt->capmt_oscam == CAPMT_OSCAM_TCP || capmt->capmt_oscam == CAPMT_OSCAM_NET_PROTO) {
if (capmt->capmt_oscam == CAPMT_OSCAM_TCP ||
capmt->capmt_oscam == CAPMT_OSCAM_NET_PROTO ||
capmt->capmt_oscam == CAPMT_OSCAM_UNIX_SOCKET_NP) {

char errbuf[256];

Expand Down

0 comments on commit 1abd43e

Please sign in to comment.