1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

* nss/getent.c (print_networks): Don't print comma between aliases.

This commit is contained in:
Ulrich Drepper
2009-01-28 15:55:25 +00:00
parent 563ee1cb34
commit 1dd757696b
7 changed files with 43 additions and 53 deletions

View File

@@ -448,8 +448,6 @@ print_networks (struct netent *net)
putchar_unlocked (' ');
fputs_unlocked (net->n_aliases[i], stdout);
++i;
if (net->n_aliases[i] != NULL)
putchar_unlocked (',');
}
putchar_unlocked ('\n');
}