X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=test%2Fgetfullname.c;h=3dc221e530866139f5c58f3bb89c04784cf0ad06;hb=8eeb81b97870153a57c9dff79540c70d89ef87a4;hp=f0c8a2d8f57687330777183168cd10bf11eeeb32;hpb=21f60122877f22b2545a31aebfb9b78118a50ecd;p=mmh diff --git a/test/getfullname.c b/test/getfullname.c index f0c8a2d..3dc221e 100644 --- a/test/getfullname.c +++ b/test/getfullname.c @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -16,12 +17,13 @@ int main(int argc, char *argv[]) { + struct passwd *pwd; + char name[BUFSIZ], *p; + if (argc > 1) { fprintf (stderr, "usage: %s\n", argv[0]); } - struct passwd *pwd; - pwd = getpwuid(getuid()); if (! pwd) { @@ -30,7 +32,36 @@ main(int argc, char *argv[]) exit(1); } - printf("%s\n", pwd->pw_gecos); + /* + * Perform the same processing that getuserinfo() does. + */ + + strncpy(name, pwd->pw_gecos, sizeof(name)); + + name[sizeof(name) - 1] = '\0'; + + /* + * Stop at the first comma + */ + + if ((p = strchr(name, ','))) + *p = '\0'; + + /* + * Quote the entire string if it has a "." in it + */ + + if (strchr(name, '.')) { + char tmp[BUFSIZ]; + + snprintf(tmp, sizeof(tmp), "\"%s\"", name); + strncpy(name, tmp, sizeof(name)); + + name[sizeof(name) - 2] = '"'; + name[sizeof(name) - 1] = '\0'; + } + + printf("%s\n", name); exit(0); }