--- projects/cms/source/server/uk/org/iscream/cms/server/filter/UDPReader.java 2002/03/20 12:56:37 1.20 +++ projects/cms/source/server/uk/org/iscream/cms/server/filter/UDPReader.java 2002/03/20 13:05:50 1.21 @@ -15,7 +15,7 @@ import uk.org.iscream.cms.server.util.*; * the filterd. It harvests UDP traffic, and queues it. * * @author $Author: tdb $ - * @version $Id: UDPReader.java,v 1.20 2002/03/20 12:56:37 tdb Exp $ + * @version $Id: UDPReader.java,v 1.21 2002/03/20 13:05:50 tdb Exp $ */ public class UDPReader extends Thread{ @@ -24,7 +24,7 @@ public class UDPReader extends Thread{ /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.20 $"; + public final String REVISION = "$Revision: 1.21 $"; /** * The maximum size of a packet @@ -60,7 +60,7 @@ public class UDPReader extends Thread{ // get our ACL from the configuration ACL acl = null; try { - String stringACL = ConfigurationProxy.getInstance().getProperty(FilterMain.NAME, "Filter.UDPACL"); + String stringACL = ConfigurationProxy.getInstance().getProperty("Filter." + FilterMain.NAME, "Filter.UDPACL"); acl = new ACL(stringACL); } catch(PropertyNotFoundException e) {