(encrypt_init, Name): const-ify

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7807 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-01-18 03:10:35 +00:00
parent 9eaa4d1478
commit d7b1813e1e

View File

@@ -89,7 +89,7 @@ static int autoencrypt = 0;
static int autodecrypt = 0;
static int havesessionkey = 0;
static int Server = 0;
static char *Name = "Noname";
static const char *Name = "Noname";
#define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0)
@@ -175,7 +175,7 @@ static struct key_info {
};
void
encrypt_init(char *name, int server)
encrypt_init(const char *name, int server)
{
Encryptions *ep = encryptions;