From 1d06f0e29f9041438a30c0a09911d911fdf1e1f5 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Tue, 4 Apr 1995 01:56:56 +0000 Subject: [PATCH] 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 --- src/appl/popper/ChangeLog | 5 +++++ src/appl/popper/pop_init.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 -- 2.26.2