]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/adouble/ad_size.c
Test for EAs and ad_convert as root
[netatalk.git] / libatalk / adouble / ad_size.c
index 5773cae191a86baf7f8f863bd71f0a3bb95adc6c..337ff6ed3d5f07075ff286dfa58964488c9158f4 100644 (file)
@@ -1,27 +1,34 @@
 /*
+ * $Id: ad_size.c,v 1.8 2010-02-26 14:13:16 didg Exp $
+ *
  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
  * All rights reserved. See COPYRIGHT.
  *
  * if we could depend upon inline functions, this would be one.
  */
 
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <syslog.h>
+#ifdef HAVE_CONFIG_H
+#include "config.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;  
 }