View | Details | Raw Unified | Return to bug 968 | Differences between
and this patch

Collapse All | Expand All

(-)ssh-rand-helper.c.djm (+12 lines)
Lines 888-890 Link Here
888
888
889
	return ret == bytes ? 0 : 1;
889
	return ret == bytes ? 0 : 1;
890
}
890
}
891
892
/*
893
 * On some platforms (HP-UX, AIX), all external symbols in libraries must be
894
 * resolvable at link time, even if they are only used in functions that are
895
 * ultimately never used in the resulting binary.  arc4random calls seed_rng
896
 * so we need a dummy seed_rng.
897
 */
898
void
899
seed_rng(void)
900
{
901
	/* nothing */
902
}

Return to bug 968