[Bug 204676] pw groupshow 0 does not work and gives unknown group
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Thu Nov 19 11:39:30 UTC 2015
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204676
Bug ID: 204676
Summary: pw groupshow 0 does not work and gives unknown group
Product: Base System
Version: 10.2-STABLE
Hardware: Any
OS: Any
Status: New
Severity: Affects Many People
Priority: ---
Component: bin
Assignee: freebsd-bugs at FreeBSD.org
Reporter: longwitz at incore.de
On FreeBSD 10.2-STABLE #0 r287473 the command 'pw groupshow 0' gives 'pw:
unknown group `0' instead of 'wheel:*:0:root'. The reason for this is an
uninitialized variable in pw_group.c.
The following patch solves this problem for me:
--- usr/src/usr.sbin/pw/pw_group.c.orig 2015-09-05 21:22:44.000000000 +0200
+++ usr/src/usr.sbin/pw/pw_group.c 2015-11-19 12:00:04.233910000 +0100
@@ -296,6 +296,7 @@
NULL
};
+ name = NULL;
if (arg1 != NULL) {
if (arg1[strspn(arg1, "0123456789")] == '\0')
id = pw_checkid(arg1, GID_MAX);
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-bugs
mailing list