From c74106668d635086c5ee414b4bdf9989778e96d9 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 15 Jun 1999 02:43:52 +0000 Subject: [PATCH] const-pollution git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6310 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/kx/kx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appl/kx/kx.h b/appl/kx/kx.h index 1a3b3358a..2a7401be2 100644 --- a/appl/kx/kx.h +++ b/appl/kx/kx.h @@ -203,8 +203,8 @@ struct kx_context { int (*copy_encrypted)(struct kx_context *kc, int fd1, int fd2); void (*destroy)(struct kx_context *kc); - char *host; - char *user; + const char *host; + const char *user; int port; int debug_flag; int keepalive_flag; @@ -216,7 +216,7 @@ struct kx_context { typedef struct kx_context kx_context; void -context_set (kx_context *kc, char *host, char *user, int port, +context_set (kx_context *kc, const char *host, const char *user, int port, int debug_flag, int keepalive_flag, int tcp_flag); void