在检索密码数据库中的记录的断开字段(例如,本地密码文件/etc/passwd
,NIS和LDAP)时,与提供的用户名相匹配,我正在使用{{1} ( http://linux.die.net/man/3/getpwnam_r )函数。
getpwnam_r
代码工作正常,但Eclipse向我显示如下警告:
#define __USE_BSD
#define _BSD_SOURCE
#include <pwd.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
int
main(int argc, char *argv[])
{
struct passwd pwd;
struct passwd *result;
char *buf;
size_t bufsize;
int s;
if (argc != 2) {
fprintf(stderr, "Usage: %s username\n", argv[0]);
exit(EXIT_FAILURE);
}
bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
if (bufsize == -1) /* Value was indeterminate */
bufsize = 16384; /* Should be more than enough */
buf = malloc(bufsize);
if (buf == NULL) {
perror("malloc");
exit(EXIT_FAILURE);
}
s = getpwnam_r(argv[1], &pwd, buf, bufsize, &result);
if (result == NULL) {
if (s == 0)
printf("Not found\n");
else {
errno = s;
perror("getpwnam_r");
}
exit(EXIT_FAILURE);
}
printf("Name: %s; UID: %ld\n", pwd.pw_gecos, (long) pwd.pw_uid);
exit(EXIT_SUCCESS);
}
我该如何解决?
请注意,我目前正在使用 Ubuntu 14.04 LTS 。
答案 0 :(得分:3)
要使用此功能,您需要两个包含:
#include <sys/types.h>
#include <pwd.h>
添加它们,它不应再抱怨了。
您可以通过运行man getpwnam_r
来查看。
您还需要定义__USE_MISC
或__USE_SVID
,因为它只是POSIX功能。