]> arthur.barton.de Git - netatalk.git/blob - libatalk/cnid/hash/cnid_hash_lookup.c
- merge branch-netatalk-afp-3x-dev, HEAD was tagged before
[netatalk.git] / libatalk / cnid / hash / cnid_hash_lookup.c
1 /*
2  * $Id: cnid_hash_lookup.c,v 1.2 2005-04-28 20:50:01 bfernhomberg Exp $
3  */
4
5 #ifdef HAVE_CONFIG_H
6 #include "config.h"
7 #endif /* HAVE_CONFIG_H */
8
9 #ifdef CNID_BACKEND_HASH
10
11 #include "cnid_hash.h"
12
13 cnid_t cnid_hash_lookup(struct _cnid_db *cdb, const struct stat *st, const cnid_t did, char *name, const int len)
14 {
15     return cnid_hash_add(cdb, st, did, name, len, 0  /*hint*/);
16 }
17
18 #endif /* CNID_BACKEND_HASH */