From 573a7b70f398a53f5789f80ae7d6bd8a64d6f949 Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 12 Sep 2000 21:58:31 +0000 Subject: Don't drop out when we've processed argc - 1 names.... arguments may expand to more than one user. PR: 21228 --- usr.bin/finger/finger.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'usr.bin/finger/finger.c') diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c index 18ca287..006c67d 100644 --- a/usr.bin/finger/finger.c +++ b/usr.bin/finger/finger.c @@ -274,7 +274,6 @@ userlist(argc, argv) char conf_alias[LINE_MAX]; char *conf_realname; int conf_length; - int nip; if ((nargv = malloc((argc+1) * sizeof(char *))) == NULL || (used = calloc(argc, sizeof(int))) == NULL) @@ -333,17 +332,14 @@ userlist(argc, argv) } } else { - nip = 0; - while (nip < argc && (pw = getpwent()) != NULL) { + while ((pw = getpwent()) != NULL) { for (p = argv, ip = used; *p; ++p, ++ip) if (**p == '/' && *ip != 1 - && show_text("", *p, "")) { + && show_text("", *p, "")) *ip = 1; - nip++; - } else if (match(pw, *p) && !hide(pw)) { + else if (match(pw, *p) && !hide(pw)) { enter_person(pw); *ip = 1; - nip++; } } for (p = argv, ip = used; *p; ++p, ++ip) -- cgit v1.1