Typo in the getrandom patch.

This commit is contained in:
Tomas Mraz 2017-12-06 09:04:48 +01:00
parent ed535bbc52
commit ea4d1dc728

View File

@ -23,7 +23,7 @@ diff -up libgcrypt-1.8.1/random/random-csprng.c.getrandom libgcrypt-1.8.1/random
+ _gcry_pre_syscall (); + _gcry_pre_syscall ();
+ ret = syscall (__NR_getrandom, + ret = syscall (__NR_getrandom,
+ (void*)buffer, (size_t)1, (unsigned int)GRND_NONBLOCK); + (void*)buffer, (size_t)1, (unsigned int)GRND_NONBLOCK);
+ gcry_post_syscall (); + _gcry_post_syscall ();
+ if (ret != -1 || errno != ENOSYS) + if (ret != -1 || errno != ENOSYS)
+ { + {
+ fnc = _gcry_rndlinux_gather_random; + fnc = _gcry_rndlinux_gather_random;