1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-20 10:50:12 +03:00
systemd-stable/klibc/klibc/getdomainname.c

26 lines
342 B
C
Raw Permalink Normal View History

/*
* getdomainname.c
*/
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <sys/utsname.h>
int getdomainname(char *name, size_t len)
{
struct utsname un;
if ( !uname(&un) )
return -1;
if ( len < strlen(un.domainname)+1 ) {
errno = EINVAL;
return -1;
}
strcpy(name, un.domainname);
return 0;
}