mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-20 10:50:12 +03:00
26 lines
342 B
C
26 lines
342 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|