Removed support for relative paths (and in fact added testing for absolute paths) as relative paths are not re-applyable by their very nature.
diff --git a/contiki-apple2/apps/config.h b/contiki-apple2/apps/config.h
index cb6d9c0..ea7e1b3 100644
--- a/contiki-apple2/apps/config.h
+++ b/contiki-apple2/apps/config.h
@@ -32,7 +32,7 @@
  *
  * This file is part of the Contiki desktop environment 
  *
- * $Id: config.h,v 1.7 2006/05/28 20:50:13 oliverschmidt Exp $
+ * $Id: config.h,v 1.8 2006/06/28 23:10:44 oliverschmidt Exp $
  *
  */
 #ifndef __CONFIG_H__
@@ -53,12 +53,12 @@
 } config_t;
 
 extern unsigned char lanslot;
-extern unsigned char prefixlen;
+extern unsigned char prefixok;
 
-#define config_getlanslot()	    lanslot
-#define config_setlanslot(slot)	    lanslot = (slot)
+#define config_getlanslot()	lanslot
+#define config_setlanslot(slot)	lanslot = (slot)
 
-#define config_getprefixlen()	    prefixlen
-#define config_setprefixlen(len)    prefixlen = (len)
+#define config_getprefixok()	prefixok
+#define config_setprefixok(ok)  prefixok = (ok)
 
 #endif /* __CONFIG_H__ */