(auth_init, Name): const-ify

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7805 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-01-18 03:09:34 +00:00
parent 8426714ea3
commit d5375044d0

View File

@@ -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;