From 88ddeb8cb78c2a9d5954f53a92f3d7c9cfd05957 Mon Sep 17 00:00:00 2001 From: Frank Lahm Date: Sat, 9 Mar 2013 14:23:33 +0100 Subject: [PATCH] Conversion from adouble v2 to ea for directories Fixes bug #500. --- NEWS | 2 ++ libatalk/adouble/ad_conv.c | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index ba0c0cc7..42f7d498 100644 --- a/NEWS +++ b/NEWS @@ -28,6 +28,8 @@ Changes in 3.0.3 Fixes bug #502. * FIX: File's ressource fork can't be read if metadata EA is missing. Fixes bug #501. +* FIX: Conversion from adouble v2 to ea for directories. + Fixes bug #500. Changes in 3.0.2 ================ diff --git a/libatalk/adouble/ad_conv.c b/libatalk/adouble/ad_conv.c index 151ab9fd..486b0313 100644 --- a/libatalk/adouble/ad_conv.c +++ b/libatalk/adouble/ad_conv.c @@ -65,6 +65,7 @@ static int ad_conv_v22ea_hf(const char *path, const struct stat *sp, const struc switch (S_IFMT & sp->st_mode) { case S_IFREG: + case S_IFDIR: break; default: return 0; -- 2.39.2