s/gethostname/k_gethostname/

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@703 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-08-31 21:12:29 +00:00
parent c36c25417e
commit 83290cb18a
8 changed files with 11 additions and 11 deletions

View File

@@ -427,7 +427,7 @@ main(int argc, char **argv)
(void) fclose(fd); (void) fclose(fd);
/* reply(220,) must follow */ /* reply(220,) must follow */
} }
(void) gethostname(hostname, sizeof(hostname)); k_gethostname(hostname, sizeof(hostname));
reply(220, "%s FTP server (%s) ready.", hostname, version); reply(220, "%s FTP server (%s) ready.", hostname, version);
(void) setjmp(errcatch); (void) setjmp(errcatch);
for (;;) for (;;)

View File

@@ -89,7 +89,7 @@ pop_init(POP *p,int argcount,char **argmessage)
p->myname = argmessage[0]; p->myname = argmessage[0];
/* Get the name of our host */ /* Get the name of our host */
(void)gethostname(p->myhost,MaxHostNameLen); k_gethostname(p->myhost,MaxHostNameLen);
/* Open the log file */ /* Open the log file */
#ifdef SYSLOG42 #ifdef SYSLOG42

View File

@@ -161,7 +161,7 @@ krb4encpwd_init(ap, server)
str_data[3] = TELQUAL_REPLY; str_data[3] = TELQUAL_REPLY;
} else { } else {
str_data[3] = TELQUAL_IS; str_data[3] = TELQUAL_IS;
gethostname(hostname, sizeof(hostname)); k_gethostname(hostname, sizeof(hostname));
realm = krb_realmofhost(hostname); realm = krb_realmofhost(hostname);
cp = strchr(hostname, '.'); cp = strchr(hostname, '.');
if (*cp != NULL) *cp = NULL; if (*cp != NULL) *cp = NULL;
@@ -212,7 +212,7 @@ krb4encpwd_is(ap, data, cnt)
case KRB4_ENCPWD_AUTH: case KRB4_ENCPWD_AUTH:
memmove((void *)auth.dat, (void *)data, auth.length = cnt); memmove((void *)auth.dat, (void *)data, auth.length = cnt);
gethostname(lhostname, sizeof(lhostname)); k_gethostname(lhostname, sizeof(lhostname));
if ((cp = strchr(lhostname, '.')) != 0) *cp = '\0'; if ((cp = strchr(lhostname, '.')) != 0) *cp = '\0';
if (r = krb_rd_encpwd_req(&auth, KRB_SERVICE_NAME, lhostname, 0, &adat, NULL, challenge, r_user, r_passwd)) { if (r = krb_rd_encpwd_req(&auth, KRB_SERVICE_NAME, lhostname, 0, &adat, NULL, challenge, r_user, r_passwd)) {
@@ -304,7 +304,7 @@ krb4encpwd_reply(ap, data, cnt)
* Verify that the response to the challenge is correct. * Verify that the response to the challenge is correct.
*/ */
gethostname(hostname, sizeof(hostname)); k_gethostname(hostname, sizeof(hostname));
realm = krb_realmofhost(hostname); realm = krb_realmofhost(hostname);
memmove((void *)challenge, (void *)data, cnt); memmove((void *)challenge, (void *)data, cnt);
memset(user_passwd, 0, sizeof(user_passwd)); memset(user_passwd, 0, sizeof(user_passwd));

View File

@@ -158,7 +158,7 @@ rsaencpwd_init(ap, server)
if (server) { if (server) {
str_data[3] = TELQUAL_REPLY; str_data[3] = TELQUAL_REPLY;
memset(key_file, 0, sizeof(key_file)); memset(key_file, 0, sizeof(key_file));
gethostname(lhostname, sizeof(lhostname)); k_gethostname(lhostname, sizeof(lhostname));
if ((cp = strchr(lhostname, '.')) != 0) *cp = '\0'; if ((cp = strchr(lhostname, '.')) != 0) *cp = '\0';
strcpy(key_file, "/etc/."); strcpy(key_file, "/etc/.");
strcat(key_file, lhostname); strcat(key_file, lhostname);

View File

@@ -170,7 +170,7 @@ spx_init(ap, server)
if (server) { if (server) {
str_data[3] = TELQUAL_REPLY; str_data[3] = TELQUAL_REPLY;
gethostname(lhostname, sizeof(lhostname)); k_gethostname(lhostname, sizeof(lhostname));
strcpy(targ_printable, "SERVICE:rcmd@"); strcpy(targ_printable, "SERVICE:rcmd@");
strcat(targ_printable, lhostname); strcat(targ_printable, lhostname);
input_name_buffer.length = strlen(targ_printable); input_name_buffer.length = strlen(targ_printable);
@@ -320,7 +320,7 @@ spx_is(ap, data, cnt)
input_token.length = cnt; input_token.length = cnt;
input_token.value = (char *) data; input_token.value = (char *) data;
gethostname(lhostname, sizeof(lhostname)); k_gethostname(lhostname, sizeof(lhostname));
strcpy(targ_printable, "SERVICE:rcmd@"); strcpy(targ_printable, "SERVICE:rcmd@");
strcat(targ_printable, lhostname); strcat(targ_printable, lhostname);

View File

@@ -1661,7 +1661,7 @@ env_init()
char hbuf[256+1]; char hbuf[256+1];
char *cp2 = strchr((char *)ep->value, ':'); char *cp2 = strchr((char *)ep->value, ':');
gethostname(hbuf, 256); k_gethostname(hbuf, 256);
hbuf[256] = '\0'; hbuf[256] = '\0';
/* If this is not the full name, try to get it via DNS */ /* If this is not the full name, try to get it via DNS */

View File

@@ -2104,7 +2104,7 @@ telnet(user)
static char local_host[256] = { 0 }; static char local_host[256] = { 0 };
if (!local_host[0]) { if (!local_host[0]) {
gethostname(local_host, sizeof(local_host)); k_gethostname(local_host, sizeof(local_host));
local_host[sizeof(local_host)-1] = 0; local_host[sizeof(local_host)-1] = 0;
} }
auth_encrypt_init(local_host, hostname, "TELNET", 0); auth_encrypt_init(local_host, hostname, "TELNET", 0);

View File

@@ -873,7 +873,7 @@ void doit(struct sockaddr_in *who)
remote_host_name[sizeof(remote_host_name)-1] = 0; remote_host_name[sizeof(remote_host_name)-1] = 0;
host = remote_host_name; host = remote_host_name;
(void) gethostname(host_name, sizeof (host_name)); (void) k_gethostname(host_name, sizeof (host_name));
hostname = host_name; hostname = host_name;
#ifndef abs #ifndef abs