Radish alpha
H
HardenedBSD Package Manager
Radicle
Git (anonymous pull)
Log in to clone via SSH
Rework structures to allow multiple names.
Vsevolod Stakhov committed 12 years ago
commit 68b356077460727b269d7ef0c8dcb9cafe9cffdf
parent 5cb89a959856db3c393a848dbe14b2f6dffc2006
1 file changed +7 -1
modified src/audit.c
@@ -70,8 +70,14 @@ struct audit_cve {
	struct audit_cve *next;
};

-
struct audit_entry {
+
struct audit_pkgname_entry {
	char *pkgname;
+
	struct audit_pkgname_entry *next;
+
};
+

+
struct audit_entry {
+
	const char *pkgname;
+
	struct audit_pkgname_entry *names;
	struct audit_versions *versions;
	struct audit_cve *cve;
	char *url;