]> arthur.barton.de Git - netatalk.git/commitdiff
Remove unused option
authorFrank Lahm <franklahm@googlemail.com>
Sat, 31 Mar 2012 13:02:46 +0000 (15:02 +0200)
committerFrank Lahm <franklahm@googlemail.com>
Sat, 31 Mar 2012 13:02:46 +0000 (15:02 +0200)
include/atalk/volume.h
libatalk/util/netatalk_conf.c

index f5e995d28319c2be8665d2896f422c70eab35342..7a27c644daa864297d939dc6fa50f96549e69cc7 100644 (file)
@@ -112,7 +112,6 @@ struct vol {
   Keep in sync with libatalk/util/volinfo.c
 */
 #define AFPVOL_NOV2TOEACONV (1 << 5) /* no adouble:v2 to adouble:ea conversion */
-#define AFPVOL_UNIX_CTXT (1 << 6)   /* volume created by getvolbypath ie UNIX access, not afpd AFP user session */
 #define AFPVOL_RO        (1 << 8)   /* read-only volume */
 #define AFPVOL_NOSTAT    (1 << 16)  /* advertise the volume even if we can't stat() it
                                      * maybe because it will be mounted later in preexec */
index d06be264051bdd9de82934deddfa753bd4ec32ea..6b98673c965c9e1a347f286ec9b2c4362966fea8 100644 (file)
@@ -1103,8 +1103,6 @@ int load_volumes(AFPObj *obj, void (*delvol_fn)(struct vol *))
             goto EC_CLEANUP;
         have_uservol = 0;
         for (vol = Volumes; vol; vol = vol->v_next) {
-            if (vol->v_flags & AFPVOL_UNIX_CTXT)
-                continue;
             vol->v_deleted = 1;
         }
     } else {