X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fafpd%2Fextattrs.c;h=4cbeb6423ddd316cb28dc32cec5488ce98ed0f81;hb=edf01c724768d494e522ec84380e8e49b37a2bd6;hp=649cc6a30f3044b96533412751f850acee8a10be;hpb=25b5d2196afe740269c3347d49e6f59c40071429;p=netatalk.git diff --git a/etc/afpd/extattrs.c b/etc/afpd/extattrs.c index 649cc6a3..4cbeb642 100644 --- a/etc/afpd/extattrs.c +++ b/etc/afpd/extattrs.c @@ -1,5 +1,4 @@ /* - $Id: extattrs.c,v 1.29 2010-01-05 12:06:33 franklahm Exp $ Copyright (c) 2009 Frank Lahm This program is free software; you can redistribute it and/or modify @@ -28,8 +27,9 @@ #include #include #include +#include +#include -#include "globals.h" #include "volume.h" #include "desktop.h" #include "directory.h" @@ -139,7 +139,6 @@ int afp_listextattr(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, return( AFPERR_NOOBJ ); } - adp = of_ad(vol, s_path, &ad); uname = s_path->u_name; /* We have to check the FinderInfo for the file, because if they aren't all 0 @@ -151,10 +150,11 @@ int afp_listextattr(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, if (S_ISDIR(st->st_mode)) adflags = ADFLAGS_DIR; - if ( ad_metadata( uname, adflags, adp) < 0 ) { + adp = &ad; + ad_init(adp, vol); + if (ad_metadata(uname, adflags, adp) != 0 ) { switch (errno) { case ENOENT: - adp = NULL; break; case EACCES: LOG(log_error, logtype_afpd, "afp_listextattr(%s): %s: check resource fork permission?", @@ -164,16 +164,9 @@ int afp_listextattr(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, LOG(log_error, logtype_afpd, "afp_listextattr(%s): error getting metadata: %s", uname, strerror(errno)); return AFPERR_MISC; } - } - - if (adp) { + } else { FinderInfo = ad_entry(adp, ADEID_FINDERI); -#ifdef DEBUG - LOG(log_maxdebug, logtype_afpd, "afp_listextattr(%s): FinderInfo:", uname); - hexdump( FinderInfo, 32); -#endif - if ((adflags & ADFLAGS_DIR)) { /* set default view */ uint16 = htons(FINDERINFO_CLOSEDVIEW); @@ -214,7 +207,7 @@ int afp_listextattr(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, default: buf_valid = 1; } - } + } /* if ((maxreply == 0) || (buf_valid == 0)) */ /* Start building reply packet */ bitmap = htons(bitmap); @@ -240,8 +233,9 @@ int afp_listextattr(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, exit: if (ret != AFP_OK) buf_valid = 0; + if (adp) - ad_close_metadata( adp); + ad_close(adp, ADFLAGS_HF); return ret; }