From d5375044d05b56a23b64df6654e3f757669c1ca8 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 18 Jan 2000 03:09:34 +0000 Subject: [PATCH] (auth_init, Name): const-ify git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7805 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/telnet/libtelnet/auth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appl/telnet/libtelnet/auth.c b/appl/telnet/libtelnet/auth.c index ead876ca5..a1e9e2158 100644 --- a/appl/telnet/libtelnet/auth.c +++ b/appl/telnet/libtelnet/auth.c @@ -100,7 +100,7 @@ extern rsaencpwd_printsub(); #endif int auth_debug_mode = 0; -static char *Name = "Noname"; +static const char *Name = "Noname"; static int Server = 0; static Authenticator *authenticated = 0; static int authenticating = 0; @@ -217,7 +217,7 @@ findauthenticator(int type, int way) } void -auth_init(char *name, int server) +auth_init(const char *name, int server) { Authenticator *ap = authenticators;