Modified:
trunk/xsp/ChangeLog
trunk/xsp/src/Mono.WebServer.Apache/main.cs
Log:
2008-03-19 Marek Habersack <mhabe...@novell.com>
* src/Mono.WebServer.Apache/main.cs: Fix a CWL format typo, which
causes the apache backend to fail when --port is used. Fixes bug
#372220. Patch contributed by Daniel Cohen
<dco...@eduinnova.com>, thanks a lot!
Modified: trunk/xsp/ChangeLog
===================================================================
--- trunk/xsp/ChangeLog 2008-03-19 07:09:37 UTC (rev 98569)
+++ trunk/xsp/ChangeLog 2008-03-19 07:53:57 UTC (rev 98570)
@@ -1,8 +1,15 @@
-2008-02-26 Kornél Pál <korn...@gmail.com>
-
- * src/Mono.WebServer/XSPWorkerRequest.cs: Add a Date header because that's
- the responsibility of the web server rather than ASP.NET. Fixes bug #363404.
-
+2008-03-19 Marek Habersack <mhabe...@novell.com>
+
+ * src/Mono.WebServer.Apache/main.cs: Fix a CWL format typo, which
+ causes the apache backend to fail when --port is used. Fixes bug
+ #372220. Patch contributed by Daniel Cohen
+ <dco...@eduinnova.com>, thanks a lot!
+
+2008-02-26 Kornél Pál <korn...@gmail.com>
+
+ * src/Mono.WebServer/XSPWorkerRequest.cs: Add a Date header because that's
+ the responsibility of the web server rather than ASP.NET. Fixes bug #363404.
+
2008-02-08 Marek Habersack <mhabe...@novell.com>
* test/Web.sitemap: /1.1/asp.net/transfer2.aspx removed from the
Modified: trunk/xsp/src/Mono.WebServer.Apache/main.cs
===================================================================
--- trunk/xsp/src/Mono.WebServer.Apache/main.cs 2008-03-19 07:09:37 UTC (rev 98569)
+++ trunk/xsp/src/Mono.WebServer.Apache/main.cs 2008-03-19 07:53:57 UTC (rev 98570)
@@ -349,7 +349,7 @@
if (!useTCP) {
Console.WriteLine ("Listening on: {0}", filename);
} else {
- Console.WriteLine ("Listening on port: {0", port);
+ Console.WriteLine ("Listening on port: {0}", port);
Console.WriteLine ("Listening on address: {0}", ip);
}