summaryrefslogtreecommitdiff
path: root/src/input/input_http.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-09-25 13:47:17 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-09-25 13:47:17 +0000
commit0fa5208dc13e4dc3291b4db1d20972cdbf5940f1 (patch)
tree11baadeeb2708e65ebca036b9d7c04b5765f8c32 /src/input/input_http.c
parentf70bc36953d83daf54df12a7b83cd169ecaadd11 (diff)
downloadxine-lib-0fa5208dc13e4dc3291b4db1d20972cdbf5940f1.tar.gz
xine-lib-0fa5208dc13e4dc3291b4db1d20972cdbf5940f1.tar.bz2
replace C++ style comments
CVS patchset: 5414 CVS date: 2003/09/25 13:47:17
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r--src/input/input_http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index d785b52ac..71a1f9e2c 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -19,7 +19,7 @@
*
* input plugin for http network streams
*
- * $Id: input_http.c,v 1.64 2003/09/25 13:42:19 f1rmb Exp $
+ * $Id: input_http.c,v 1.65 2003/09/25 13:47:17 f1rmb Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -207,7 +207,7 @@ static int http_plugin_parse_url (char *urlbuf, char **user, char **password,
*host = start;
#ifdef ENABLE_IPV6
- // Add support for RFC 2732
+ /* Add support for RFC 2732 */
{
char *hostbracket, *hostendbracket;
@@ -221,7 +221,7 @@ static int http_plugin_parse_url (char *urlbuf, char **user, char **password,
*hostendbracket = '\0';
*host = (hostbracket + 1);
- // Might have a trailing port
+ /* Might have a trailing port */
if (*(hostendbracket+1) == ':') {
portcolon = (hostendbracket + 1);