server.class line 190
Brought to you by:
manfred_andres
187 public static void main (String args[]) {
188 for (int i = 0; i < args.length; i++) {
189 if (args[i].startsWith ("-b=")) {
190 BASE_PATH=args[0].substring(3);
line 190 has to be changed to:
190 BASE_PATH=args[i].substring(3);
Fixed at CVS