]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/adouble/ad_size.c
Can't set Finder label on symlinked folder with "follow symlinks = yes"
[netatalk.git] / libatalk / adouble / ad_size.c
index 40f61906db220fb454eb0361c36254fd451879cf..6b4ed96d40a9fd09a8173becbce1d28dca3d43f6 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ *
  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
  * All rights reserved. See COPYRIGHT.
  *
@@ -7,25 +8,26 @@
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
-
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <syslog.h>
+#endif /* HAVE_CONFIG_H */
 
+#include <string.h>
+#include <atalk/logger.h>
 #include <atalk/adouble.h>
 
-off_t ad_size(const struct adouble *ad, const u_int32_t eid)
+off_t ad_size(const struct adouble *ad, const uint32_t eid)
 {
   if (eid == ADEID_DFORK) {
     struct stat st;
-    
-    if (fstat(ad_dfileno(ad), &st) < 0)
+
+    if (ad->ad_data_fork.adf_syml) 
+        return strlen(ad->ad_data_fork.adf_syml);
+
+    if (fstat(ad_data_fileno(ad), &st) < 0)
       return 0;
     return st.st_size;
   }  
-
+#if 0
   return ad_getentrylen(ad, eid);
+#endif
+  return ad->ad_rlen;  
 }