# HG changeset patch # User Matthew Wild # Date 1265382339 0 # Node ID c940726e787e585e71cbdbe7b85c85fef8e13afd # Parent b2f367f16eb816f42e9194911b3c7ea8672cbbb1 prosody: Add a catch-all friendly message for when any port is in use we want to use diff -r b2f367f16eb8 -r c940726e787e prosody --- a/prosody Sun Jan 31 19:27:52 2010 +0000 +++ b/prosody Fri Feb 05 15:05:39 2010 +0000 @@ -215,6 +215,8 @@ elseif port == 5280 then friendly_message = "check that Prosody or a BOSH connection manager " .."is not already running"; + else + friendly_message = "this port is in use by another application"; end elseif err:match("permission") then friendly_message = "Prosody does not have sufficient privileges to use this port";