From: Theodore Tso Date: Tue, 4 Apr 1995 01:56:56 +0000 (+0000) Subject: pop_init.c (pop_init): Put in a type cast to shut up the compiler. X-Git-Tag: krb5-1.0-beta5~388 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1d06f0e29f9041438a30c0a09911d911fdf1e1f5;p=krb5.git pop_init.c (pop_init): Put in a type cast to shut up the compiler. Popper is still using gethostbyname()'s static data wrong; this should be fixed eventually. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5340 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/popper/ChangeLog b/src/appl/popper/ChangeLog index d046f3c97..6b890e412 100644 --- a/src/appl/popper/ChangeLog +++ b/src/appl/popper/ChangeLog @@ -1,3 +1,8 @@ +Mon Mar 27 16:52:48 1995 + + * pop_init.c (pop_init): Put in a type cast to shut up the + compiler. Popper is still using gethostbyname()'s static + data wrong; this should be fixed eventually. Mon Mar 27 07:56:26 1995 Chris Provenzano (proven@mit.edu) diff --git a/src/appl/popper/pop_init.c b/src/appl/popper/pop_init.c index 81e1c7adb..3475af1a4 100644 --- a/src/appl/popper/pop_init.c +++ b/src/appl/popper/pop_init.c @@ -179,7 +179,7 @@ char ** argmessage; else { #ifndef BIND43 - p->client = ch->h_name; + p->client = (char *) ch->h_name; #else # include # include