Fixed indentation.

This commit is contained in:
Rolf Ahrenberg 2010-03-08 11:49:41 +02:00
parent 0720489995
commit 1a825f5636
1 changed files with 6 additions and 6 deletions

View File

@ -76,13 +76,13 @@ bool cIptvTransponderParameters::Parse(const char *s)
break; break;
case 'F': case 'F':
if (strstr(data, "UDP")) if (strstr(data, "UDP"))
protocol = eProtocolUDP; protocol = eProtocolUDP;
else if (strstr(data, "HTTP")) else if (strstr(data, "HTTP"))
protocol = eProtocolHTTP; protocol = eProtocolHTTP;
else if (strstr(data, "FILE")) else if (strstr(data, "FILE"))
protocol = eProtocolFILE; protocol = eProtocolFILE;
else if (strstr(data, "EXT")) else if (strstr(data, "EXT"))
protocol = eProtocolEXT; protocol = eProtocolEXT;
else else
found_u = false; found_u = false;
break; break;
@ -97,9 +97,9 @@ bool cIptvTransponderParameters::Parse(const char *s)
default: default:
break; break;
} }
} }
str = NULL; str = NULL;
} }
if (found_s && found_p && found_f && found_u && found_a) if (found_s && found_p && found_f && found_u && found_a)
return (true); return (true);