andybee / php-radiodns

Automatically exported from code.google.com/p/php-radiodns
3 stars 1 forks source link

Mistake in error condition for DAB Service #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When providing an invalid value for SCIdS on a DAB Service object, the
error returned reads:

Invalid Service Component Identifer within the Service (SCIdS) value. Must
be a valid 3-character hexadecimal.

It should read:

Invalid Service Component Identifer within the Service (SCIdS) value. Must
be a valid 1 or 3-character hexadecimal.

Original issue reported on code.google.com by youtube%andybee.com@gtempaccount.com on 30 Aug 2009 at 1:49

GoogleCodeExporter commented 9 years ago
Further mistakes noted.

EId status check reads:

Invalid Ensembled Identifier (EId) value. Must be a valid 4-character 
hexadecimal

It should read:

Invalid Ensemble Identifier (EId) value. Must be a valid 4-character hexadecimal

SCIdS status check reads:

Invalid Service Component Identifer within the Service (SCIdS) value. Must be a 
valid
1 or 3-character hexadecimal

Should read:

Invalid Service Component Identifier within the Service (SCIdS) value. Must be a
valid 1 or 3-character hexadecimal

Data status check reads:

Invalid data value. Must be either a valid X-PAD Applicaton Type (AppTy) and 
User
Applicaton type (UAtype) hexadecimal or Packet Address integer

Should read:

Invalid data value. Must be either a valid X-PAD Applicaton Type (AppTy) and 
User
Application type (UAtype) hexadecimal or Packet Address integer

Original comment by youtube%andybee.com@gtempaccount.com on 31 Aug 2009 at 2:41

GoogleCodeExporter commented 9 years ago
r4 resolves this issue.

Original comment by ajbuckin...@gmail.com on 23 Jul 2010 at 3:08