Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Readd code removed by mistake (will be removed later)
Baptiste Daroussin committed 13 years ago
commit 1009748254094007597f00553c91913d43e9eb48
parent 219fc54
1 file changed +4 -2
modified libpkg/private/pkg.h
@@ -144,12 +144,14 @@ struct pkg_jobs_node {
};

struct pkg_user {
-
	char name[8192];/* taken from pw_util.c */
+
	char name[MAXLOGNAME+1];
+
	char uidstr[8192];/* taken from pw_util.c */
	STAILQ_ENTRY(pkg_user) next;
};

struct pkg_group {
-
	char name[8192]; /* taken from gw_util.c */
+
	char name[MAXLOGNAME+1];
+
	char gidstr[8192]; /* taken from gw_util.c */
	STAILQ_ENTRY(pkg_group) next;
};