]> git.sesse.net Git - vlc/commitdiff
* now spaces are allowed in SAP annouces.
authorMohammed Adnène Trojette <adn@videolan.org>
Mon, 7 Jul 2003 07:14:56 +0000 (07:14 +0000)
committerMohammed Adnène Trojette <adn@videolan.org>
Mon, 7 Jul 2003 07:14:56 +0000 (07:14 +0000)
modules/gui/wxwindows/streamout.cpp

index 695abf7173817b1e7565f9546c1f2f1e59e5b8dc..4aa575832d8dcf0ac4627efb0624135ce3a89038 100644 (file)
@@ -2,7 +2,7 @@
  * streamout.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: streamout.cpp,v 1.20 2003/07/06 16:13:11 gbazin Exp $
+ * $Id: streamout.cpp,v 1.21 2003/07/07 07:14:56 adn Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -327,8 +327,9 @@ void SoutDialog::UpdateMRL()
         /* SAP only if UDP */
         if( sap_checkbox->IsChecked() )
         {
-            dup_opts += wxT(",sap=");
+            dup_opts += wxT(",sap=\"");
             dup_opts += sap_addr->GetLineText(0);
+           dup_opts += wxT("\"");
         }
 
         dup_opts += wxT("}");