src/dbfs/common.c
changeset 32 90e14e0df133
parent 31 7804cd7b5cd5
child 34 460f995d3769
--- a/src/dbfs/common.c	Fri Oct 17 02:04:03 2008 +0300
+++ b/src/dbfs/common.c	Fri Oct 17 16:09:35 2008 +0300
@@ -10,6 +10,9 @@
 
     if (!strcmp(type, "REG"))
         return S_IFREG;
+    
+    if (!strcmp(type, "LNK"))
+        return S_IFLNK;
 
     else {
         WARNING("[dbfs] weird mode-type: %s", type);