# HG changeset patch # User Matthew Wild # Date 1265382339 0 # Node ID ca6ee2dac8d6af14203ee3356a9133cc382a18a6 # Parent 48dfd5c9dc5d1591c6c64b69777d596dda227baf prosody: Add a catch-all friendly message for when any port is in use we want to use diff -r 48dfd5c9dc5d -r ca6ee2dac8d6 prosody --- a/prosody Fri Feb 05 16:01:21 2010 +0100 +++ b/prosody Fri Feb 05 15:05:39 2010 +0000 @@ -225,6 +225,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";