summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
Diffstat (limited to 'src/input')
-rw-r--r--src/input/input_http.c6
-rw-r--r--src/input/input_net.c4
2 files changed, 5 insertions, 5 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);
diff --git a/src/input/input_net.c b/src/input/input_net.c
index 6d8cc6c39..de16aaccd 100644
--- a/src/input/input_net.c
+++ b/src/input/input_net.c
@@ -20,7 +20,7 @@
* Read from a tcp network stream over a lan (put a tweaked mp1e encoder the
* other end and you can watch tv anywhere in the house ..)
*
- * $Id: input_net.c,v 1.51 2003/09/25 13:42:19 f1rmb Exp $
+ * $Id: input_net.c,v 1.52 2003/09/25 13:47:17 f1rmb Exp $
*
* how to set up mp1e for use with this plugin:
*
@@ -222,7 +222,7 @@ static int host_connect(const char *host, int port, xine_t *xine) {
return -1;
}
- // We loop over all addresses and try to connect
+ /* We loop over all addresses and try to connect */
tmpaddr = res;
while (tmpaddr) {