Browse Source

fix 9999999-getentropy-stdcxx.patch

Bill Gianopoulos 3 years ago
parent
commit
d479a3cf23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mozilla-central/patches/9999999-getentropy-stdcxx.patch

+ 1 - 1
mozilla-central/patches/9999999-getentropy-stdcxx.patch

@@ -40,6 +40,6 @@ diff --git a/build/unix/stdc++compat/stdc++compat.cpp b/build/unix/stdc++compat/
 +extern "C" int
 +getentropy (void *buffer, size_t length)
 +{
-+  __set_errno (ENOSYS);
++  errno = ENOSYS;
 +  return -1;
 +}