]> arthur.barton.de Git - netatalk.git/blobdiff - include/atalk/volume.h
Fix EA support detection. New ea option values none and auto
[netatalk.git] / include / atalk / volume.h
index 2184816ccfad910b1702c0555f87a4cfcab4a2e8..b03020f031475f22067cd68eafc5ae12cf79c0a0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: volume.h,v 1.6 2009-11-13 00:27:38 didg Exp $
+ * $Id: volume.h,v 1.9 2009-12-18 19:18:40 franklahm Exp $
  *
  * Copyright (c) 1990,1994 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
@@ -157,8 +157,10 @@ this is going away. */
 #define AFPVOL_ACLS      (1 << 25)   /* Volume supports ACLS */
 
 /* Extended Attributes vfs indirection  */
-#define AFPVOL_EA_AD             0   /* Store them in adouble files. Default. */
-#define AFPVOL_EA_SOLARIS        1   /* Store them in native Solaris EAs */
+#define AFPVOL_EA_NONE           0   /* No EAs */
+#define AFPVOL_EA_AUTO           1   /* try sys, fallback to ad (default) */
+#define AFPVOL_EA_SYS            2   /* Store them in native EAs */
+#define AFPVOL_EA_AD             3   /* Store them in adouble files */
 
 /* FPGetSrvrParms options */
 #define AFPSRVR_CONFIGINFO     (1 << 0)