From 8ba3c7d939fd02e4bef1f311d941fc04bf5e19e8 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 23 Jan 1999 22:38:35 +0000 Subject: Update. * grp/putgrent.c (putgrent): Don't insert extra colon. Patch by Michael Schaefer . --- grp/putgrent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'grp') diff --git a/grp/putgrent.c b/grp/putgrent.c index 7d7732a9c8..a119ebed17 100644 --- a/grp/putgrent.c +++ b/grp/putgrent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1996, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1996, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -54,7 +54,7 @@ putgrent (gr, stream) int i; for (i = 0 ; gr->gr_mem[i] != NULL; i++) - if (fprintf (stream, "%c%s", i == 0 ? ':' : ',', gr->gr_mem[i]) < 0) + if (fprintf (stream, i == 0 ? "%s" : ",%s", gr->gr_mem[i]) < 0) { /* What else can we do? */ funlockfile (stream); -- cgit v1.2.3