Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
2009-03-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
Browse files Browse the repository at this point in the history
	* main.cs: fix error when --master is passed.
	Bug #481597 fixed.


svn path=/branches/mono-2-4-0/xsp/; revision=129304
  • Loading branch information
gonzalop committed Mar 13, 2009
1 parent 54927ac commit 5d657f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2009-03-13 Gonzalo Paniagua Javier <gonzalo@novell.com>

* main.cs: fix error when --master is passed.
Bug #481597 fixed.

2009-03-03 Marek Habersack <mhabersack@novell.com>

* src/Mono.WebServer.Apache/ModMonoRequest.cs: removed a
Expand Down
3 changes: 2 additions & 1 deletion src/Mono.WebServer.Apache/main.cs
Expand Up @@ -361,7 +361,8 @@ public int RealMain (string [] args, bool root, IApplicationHost ext_apphost)
webSource.Dispose ();
return svr.RealMain (args, false, vh.AppHost);
}
server.AppHost = ext_apphost;
if (ext_apphost != null)
server.AppHost = ext_apphost;

if (!useTCP) {
Console.WriteLine ("Listening on: {0}", filename);
Expand Down

0 comments on commit 5d657f3

Please sign in to comment.