]> git.sesse.net Git - vlc/commitdiff
Add SAP to the list of additionnal interfaces
authorClément Stenac <zorglub@videolan.org>
Sat, 10 Jan 2004 12:35:33 +0000 (12:35 +0000)
committerClément Stenac <zorglub@videolan.org>
Sat, 10 Jan 2004 12:35:33 +0000 (12:35 +0000)
src/interface/interface.c

index deefef32ba6bdff40a2259aedf19cb1e70c11766..0b44381bf8985b18d9746a01f34ee7023b1eb2de 100644 (file)
@@ -4,7 +4,7 @@
  * interface, such as command line.
  *****************************************************************************
  * Copyright (C) 1998-2004 VideoLAN
- * $Id: interface.c,v 1.109 2004/01/06 12:02:06 zorglub Exp $
+ * $Id: interface.c,v 1.110 2004/01/10 12:35:33 zorglub Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -284,6 +284,8 @@ static void RunInterface( intf_thread_t *p_intf )
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = "http"; text.psz_string = "HTTP remote control";
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
+    val.psz_string = "sap"; text.psz_string = "SAP interface";
+    var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
 
     var_AddCallback( p_intf, "intf-add", AddIntfCallback, NULL );