Radish alpha
H
HardenedBSD Package Manager
Radicle
Git (anonymous pull)
Log in to clone via SSH
Readd code removed by mistake (will be removed later)
Baptiste Daroussin committed 13 years ago
commit 1009748254094007597f00553c91913d43e9eb48
parent 219fc54b00d069f3078006f88b26db5a88eae733
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;
};