Index: src/misc.c
--- src/misc.c.orig
+++ src/misc.c
@@ -2197,8 +2197,7 @@ random_organization(
 
 	rewind(orgfp);
 
-	srand((unsigned int) time(NULL));
-	sol = rand() % nool + 1;
+	sol = arc4random_uniform(nool) + 1;
 	nool = 0;
 
 	while ((nool != sol) && (fgets(selorg, (int) sizeof(selorg), orgfp)))
