]> git.sesse.net Git - vlc/commitdiff
* modules/control/http.c: strings for the address and the port variable were switched.
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 22 May 2003 15:34:02 +0000 (15:34 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 22 May 2003 15:34:02 +0000 (15:34 +0000)
modules/control/http.c

index ffaa9f109d264a00d55e4e64ff142fa8b916c477..b7542af308f26325b26154354f280a1a5703a5fc 100644 (file)
@@ -2,7 +2,7 @@
  * http.c :  http remote control plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: http.c,v 1.6 2003/05/15 22:27:37 massiot Exp $
+ * $Id: http.c,v 1.7 2003/05/22 15:34:02 hartman Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -80,8 +80,8 @@ struct intf_sys_t
 
 vlc_module_begin();
     add_category_hint( N_("HTTP remote control"), NULL, VLC_TRUE );
-    add_string( "http-addr", NULL, NULL, PORT_TEXT, PORT_LONGTEXT, VLC_TRUE );
-    add_integer( "http-port", 8080, NULL, ADDR_TEXT, ADDR_LONGTEXT, VLC_TRUE );
+    add_string( "http-addr", NULL, NULL, ADDR_TEXT, ADDR_LONGTEXT, VLC_TRUE );
+    add_integer( "http-port", 8080, NULL, PORT_TEXT, PORT_LONGTEXT, VLC_TRUE );
     set_description( _("HTTP remote control interface") );
     set_capability( "interface", 10 );
     set_callbacks( Activate, Close );