~ubuntu-branches/ubuntu/precise/netatalk/precise

« back to all changes in this revision

Viewing changes to libatalk/acl/cache.h

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard
  • Date: 2011-11-30 19:05:23 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20111130190523-cxzi7fkmte9nn3fj
Tags: 2.2.1-1
* New upstream release.
  + Closes: bug#637025.
  + Fixes FTBFS on GNU/kFreeBSD.
    Closes: bug#630349. Thanks to Petr Salinger.
* Fix typo in comment.
* Update patches:
  + Drop patch 213 (CVE-2008-5718): fixed upstream since 2.0.5.
  + Drop patches 115 and 214 (default → etc/default): fixed upstream
    since 2.2.1.
  + Unfuzz patch 114.
  + Add patch cherry-picked from upstream git, to fix EA header
    related file move/delete errors.
    Closes: bug#648792. Thanks to Tim Miller Dyck.
* Update copyright file: Add/extend a few files sections.
* Update package relations:
  + Tighten build-dependency on cdbs slightly.
  + Relax build-depend unversioned on debhelper and devscripts (needed
    versions satisfied even in oldstable).

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 * Interface
33
33
 ********************************************************/
34
34
 
35
 
/* 
36
 
 *   name: search for this name
37
 
 *   type: of type USER or GROUP
38
 
 *   uuid: if found copies uuid into this buffer
39
 
 * returns 0 on success, !=0 if not found or on errors
40
 
 */
41
 
extern int search_cachebyname( const char *name, uuidtype_t type, uuidp_t uuid);
42
 
 
43
 
/* 
44
 
 *   inname: name
45
 
 *   inuuid: uuid
46
 
 *   type: USER or GROUP
47
 
 *   (uid: unused)
48
 
 * returns 0 on success, !=0 on memory errors
49
 
 */
 
35
extern int search_cachebyname( const char *name, uuidtype_t *type, uuidp_t uuid);
50
36
extern int add_cachebyname( const char *inname, const uuidp_t inuuid, const uuidtype_t type, const unsigned long uid);
51
 
 
52
 
/* same as above but for the uuid cache */
53
37
extern int search_cachebyuuid( uuidp_t uuidp, char **name, uuidtype_t *type);
54
38
extern int add_cachebyuuid( uuidp_t inuuid, const char *inname, uuidtype_t type, const unsigned long uid);
55
39