1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/mail/isoqlog/files/patch-Data.h
Stefan Walter 285b5520e9 - Fix segmentation faults on amd64.
- Reset maintainer due to multiple long response timeouts.

PR:		139867
Submitted by:	Bartosz Stec <admin@kkip.pl>
Patch by:	arved
2010-11-15 15:24:54 +00:00

21 lines
352 B
C

--- isoqlog/Data.h.orig 2010-08-09 16:53:36.000000000 +0200
+++ isoqlog/Data.h 2010-08-09 16:53:40.000000000 +0200
@@ -99,7 +99,7 @@
struct UsersTab {
int nval;
int max;
- int *allusers;
+ user**allusers;
} UsersTab;
@@ -107,7 +107,7 @@
struct SortDomain {
int nval;
int max;
- int *allusers;
+ user**allusers;
} SortDomain;
#endif