Commit ffb72762 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

dtv: undo accidental code removal (fixes #9274 probably)

parent d6ee707b
...@@ -576,8 +576,8 @@ static int Control (access_t *access, int query, va_list args) ...@@ -576,8 +576,8 @@ static int Control (access_t *access, int query, va_list args)
break; break;
} }
case ACCESS_SET_PRIVATE_ID_CA:
#ifdef HAVE_DVBPSI #ifdef HAVE_DVBPSI
case ACCESS_SET_PRIVATE_ID_CA:
{ {
struct dvbpsi_pmt_s *pmt = va_arg (args, struct dvbpsi_pmt_s *); struct dvbpsi_pmt_s *pmt = va_arg (args, struct dvbpsi_pmt_s *);
...@@ -585,9 +585,10 @@ static int Control (access_t *access, int query, va_list args) ...@@ -585,9 +585,10 @@ static int Control (access_t *access, int query, va_list args)
break; break;
} }
#endif #endif
return VLC_EGENERIC;
/*case ACCESS_GET_PRIVATE_ID_STATE: TODO? */ /*case ACCESS_GET_PRIVATE_ID_STATE: TODO? */
default:
return VLC_EGENERIC;
} }
return VLC_SUCCESS; return VLC_SUCCESS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment