From: John Kohl Date: Wed, 20 Dec 1989 10:59:58 +0000 (+0000) Subject: need pointer to address since it's variable length X-Git-Tag: krb5-1.0-alpha2~1323 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7e0112a8cfd1cfde14ecd5a1d00c74d21c919dc4;p=krb5.git need pointer to address since it's variable length git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@50 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/hostaddr.h b/src/include/krb5/hostaddr.h index d6ad89035..81e7472ac 100644 --- a/src/include/krb5/hostaddr.h +++ b/src/include/krb5/hostaddr.h @@ -36,7 +36,7 @@ typedef struct _krb5_address { /* implementation-specific stuff: */ typedef struct _krb5_fulladdr { - krb5_address address; + krb5_address *address; unsigned long port; /* port, for some address types. large enough for most protos? */ } krb5_fulladdr;