From 50879f729a0ea6bbb0e40ba3abe095405ab85f21 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 29 Oct 1996 11:33:03 +0000 Subject: [PATCH] client and ipaddr should be char [] so that we can store the names there. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@915 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/popper/popper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appl/popper/popper.h b/appl/popper/popper.h index 1e7f8979c..bbf90e072 100644 --- a/appl/popper/popper.h +++ b/appl/popper/popper.h @@ -197,9 +197,9 @@ typedef struct { /* POP parameter block */ daemon program */ char myhost[MaxHostNameLen]; /* The name of our host computer */ - const char * client; /* Canonical name of client + char client[MaxHostNameLen]; /* Canonical name of client computer */ - char * ipaddr; /* Dotted-notation format of + char ipaddr[MaxHostNameLen]; /* Dotted-notation format of client IP address */ unsigned short ipport; /* Client port for privileged operations */