diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-16 16:11:59 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-16 16:11:59 +0100 |
commit | 5f55781beb8bfc84412127b3777e1d1d126459b6 (patch) | |
tree | 59c221d593ded0dab58832bb793f7f2e22370536 /nss/common.h | |
parent | 99933fd3561df12ed81304eaf444c1d7d1060f38 (diff) |
switch protocol from host byte order to network byte order and switch use of uid_t and gid_t in the protocol to int32
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1864 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nss/common.h')
-rw-r--r-- | nss/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nss/common.h b/nss/common.h index b75f4a4..6e65c9e 100644 --- a/nss/common.h +++ b/nss/common.h @@ -133,11 +133,6 @@ NSS_BYGEN(action,WRITE_STRING(fp,name),readfn) /* This macro can be used to generate a get..by..() function - body where the value that is the key has the specified type. */ -#define NSS_BYTYPE(action,val,type,readfn) \ - NSS_BYGEN(action,WRITE_TYPE(fp,val,type),readfn) - -/* This macro can be used to generate a get..by..() function body where the value should be passed as an int32_t. */ #define NSS_BYINT32(action,val,readfn) \ NSS_BYGEN(action,WRITE_INT32(fp,val),readfn) |