|
|
researchv10 Norman
/* /sccs/src/cmd/uucp/s.uucpname.c
uucpname.c 1.1 8/30/84 17:38:03
*/
#include "uucp.h"
VERSION(@(#)uucpname.c 1.1);
/*
* get the uucp name
* return:
* none
*/
void
uucpname(name)
register char *name;
{
char *s;
#ifdef BSD4_2
int nlen;
char NameBuf[MAXBASENAME + 1];
/* This code is slightly wrong, at least if you believe what the */
/* 4.1c manual says. It claims that gethostname's second parameter */
/* should be a pointer to an int that has the size of the buffer. */
/* The code in the kernel says otherwise. The manual also says that */
/* the string returned is null-terminated; this, too, appears to be */
/* contrary to fact. Finally, the variable containing the length */
/* is supposed to be modified to have the actual length passed back; */
/* this, too, doesn't happen. So I'm zeroing the buffer first, and */
/* passing an int, not a pointer to one. *sigh*
/* --Steve Bellovin */
bzero(NameBuf, sizeof NameBuf);
nlen = sizeof NameBuf;
gethostname(NameBuf, nlen);
s = NameBuf;
s[nlen] = '\0';
#else
#ifdef UNAME
struct utsname utsn;
uname(&utsn);
s = utsn.nodename;
#else
char NameBuf[MAXBASENAME + 1], *strchr();
FILE *NameFile;
s = MYNAME;
NameBuf[0] = '\0';
if ((NameFile = fopen("/etc/whoami", "r")) != NULL) {
/* etc/whoami wins */
(void) fgets(NameBuf, MAXBASENAME + 1, NameFile);
(void) fclose(NameFile);
NameBuf[MAXBASENAME] = '\0';
if (NameBuf[0] != '\0') {
if ((s = strchr(NameBuf, '\n')) != NULL)
*s = '\0';
s = NameBuf;
}
}
#endif
#endif
(void) strncpy(name, s, MAXBASENAME);
name[MAXBASENAME] = '\0';
return;
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.