Fix some compilation warnings.

This commit is contained in:
Paul Traina 1996-09-21 18:01:23 +00:00
parent 0db7abdd72
commit 39ea627d62
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18449
5 changed files with 17 additions and 13 deletions

View File

@ -67,18 +67,20 @@ klogin(pw, instance, localhost, password)
char *instance, *localhost, *password;
{
int kerror;
AUTH_DAT authdata;
KTEXT_ST ticket;
struct hostent *hp;
unsigned long faddr;
char realm[REALM_SZ], savehost[MAXHOSTNAMELEN];
char tkt_location[MAXPATHLEN];
char *krb_get_phost();
extern int noticketsdontcomplain;
#ifdef KLOGIN_PARANOID
#ifdef KLOGIN_PARANOID
AUTH_DAT authdata;
KTEXT_ST ticket;
struct hostent *hp;
unsigned long faddr;
noticketsdontcomplain = 0; /* enable warning message */
#endif
/*
* Root logins don't use Kerberos.
* If we have a realm, try getting a ticket-granting ticket

View File

@ -70,7 +70,7 @@ ftpd_popen(program, type)
int argc, gargc, pdes[2], pid;
char **pop, *argv[100], *gargv[1000];
if (*type != 'r' && *type != 'w' || type[1])
if (((*type != 'r') && (*type != 'w')) || type[1])
return (NULL);
if (!pids) {

View File

@ -697,7 +697,7 @@ do_krb_login(dest)
authopts, 0,
ticket, "rcmd",
instance, dest, (struct sockaddr_in *) 0,
kdata, "", (bit_64 *) 0, version);
kdata, "", NULL, version);
if (rc != KSUCCESS)
return (rc);

View File

@ -397,7 +397,7 @@ doit(fromp)
rc = krb_recvauth(authopts, 0, ticket, "rcmd",
instance, &fromaddr,
(struct sockaddr_in *) 0,
kdata, "", (bit_64 *) 0, version);
kdata, "", NULL, version);
if (rc != KSUCCESS) {
error("Kerberos authentication failure: %s\n",
krb_err_txt[rc]);

View File

@ -67,18 +67,20 @@ klogin(pw, instance, localhost, password)
char *instance, *localhost, *password;
{
int kerror;
AUTH_DAT authdata;
KTEXT_ST ticket;
struct hostent *hp;
unsigned long faddr;
char realm[REALM_SZ], savehost[MAXHOSTNAMELEN];
char tkt_location[MAXPATHLEN];
char *krb_get_phost();
extern int noticketsdontcomplain;
#ifdef KLOGIN_PARANOID
#ifdef KLOGIN_PARANOID
AUTH_DAT authdata;
KTEXT_ST ticket;
struct hostent *hp;
unsigned long faddr;
noticketsdontcomplain = 0; /* enable warning message */
#endif
/*
* Root logins don't use Kerberos.
* If we have a realm, try getting a ticket-granting ticket