From 8e875fd0593fc030add2a0b0f2dd920d454a5fde Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Tue, 27 Aug 2013 14:55:47 -0400 Subject: [PATCH] add notes about the reason for https://github.com/k9mail/k-9/pull/367 --- src/com/fsck/k9/PRNGFixes.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/com/fsck/k9/PRNGFixes.java b/src/com/fsck/k9/PRNGFixes.java index e0b5d563b..5518b25ab 100644 --- a/src/com/fsck/k9/PRNGFixes.java +++ b/src/com/fsck/k9/PRNGFixes.java @@ -215,6 +215,12 @@ public final class PRNGFixes { out.flush(); mSeeded = true; } catch (IOException e) { + // Some devices don't have a writable urandom: + // Certain third-party android builds replace urandom with + // frandom and erandom, which make urandom into a symlink to + // erandom + // Details can be found in + // https://github.com/k9mail/k-9/pull/367 mSeeded = true; } }