cuserid: support invocation with a null pointer argument
[musl.git] / src / misc / getdomainname.c
blob59df566d9465625f28f47dcdaf979cf44c5681a7
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include <sys/utsname.h>
4 #include <string.h>
5 #include <errno.h>
7 int getdomainname(char *name, size_t len)
9 struct utsname temp;
10 uname(&temp);
11 if (!len || strlen(temp.domainname) >= len) {
12 errno = EINVAL;
13 return -1;
15 strcpy(name, temp.domainname);
16 return 0;