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:
authorChristopher Faylor <me@cgf.cx>2004-10-18 05:44:55 +0400
committerChristopher Faylor <me@cgf.cx>2004-10-18 05:44:55 +0400
commit0ffa77a9f51c5c7d73da410534d9114a290370f5 (patch)
treea9374fa52a8e42ae39659dffc1e7ea61c582a2dd /winsup/utils/cygcheck.cc
parent0597641a7470e54d8aed7c6baa1082d5f2c0d7d9 (diff)
* cygcheck.cc (pretty_id): Allocate space for ')' in uid and guid.
Diffstat (limited to 'winsup/utils/cygcheck.cc')
-rw-r--r--winsup/utils/cygcheck.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index c5df4c379..24f881e85 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -814,8 +814,8 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
}
char **ng = groups - 1;
- size_t len_uid = strlen ("UID: ") + strlen (uid);
- size_t len_gid = strlen ("GID: ") + strlen (gid);
+ size_t len_uid = strlen ("UID: )") + strlen (uid);
+ size_t len_gid = strlen ("GID: )") + strlen (gid);
*++ng = groups[0] = (char *) alloca (len_uid + 1);
*++ng = groups[1] = (char *) alloca (len_gid + 1);
sprintf (groups[0], "UID: %s)", uid);