Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/grp.cc')
-rw-r--r--winsup/cygwin/grp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/grp.cc b/winsup/cygwin/grp.cc
index 44abc9745..35bba1fe2 100644
--- a/winsup/cygwin/grp.cc
+++ b/winsup/cygwin/grp.cc
@@ -37,11 +37,11 @@ bool
pwdgrp::parse_group ()
{
# define grp (*group_buf)[curr_lines]
- grp.gr_name = next_str ();
+ grp.gr_name = next_str (':');
if (!*grp.gr_name)
return false;
- grp.gr_passwd = next_str ();
+ grp.gr_passwd = next_str (':');
if (!next_num (grp.gr_gid))
return false;