diff options
author | alfred <alfred@FreeBSD.org> | 2001-03-19 19:36:11 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2001-03-19 19:36:11 +0000 |
commit | 5174ce136a38be2ee8c2a2a3710fad984528fa20 (patch) | |
tree | adf0a72ec58e594352e25db20199afa3e6125890 /include | |
parent | e62162bcfed469d20700ca4e9be98574f1b728c1 (diff) | |
download | FreeBSD-src-5174ce136a38be2ee8c2a2a3710fad984528fa20.zip FreeBSD-src-5174ce136a38be2ee8c2a2a3710fad984528fa20.tar.gz |
Add missing comma when KERBEROS is defined.
Diffstat (limited to 'include')
-rw-r--r-- | include/rpc/auth.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rpc/auth.h b/include/rpc/auth.h index 68e8827..a210a5e 100644 --- a/include/rpc/auth.h +++ b/include/rpc/auth.h @@ -137,6 +137,7 @@ enum auth_stat { /* * kerberos errors */ + , AUTH_KERB_GENERIC = 8, /* kerberos generic error */ AUTH_TIMEEXPIRE = 9, /* time of credential expired */ AUTH_TKT_FILE = 10, /* something wrong with ticket file */ @@ -190,7 +191,7 @@ typedef struct __auth { /* destroy this structure */ void (*ah_destroy) (struct __auth *); } *ah_ops; - caddr_t ah_private; + void *ah_private; } AUTH; |