mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.crand: Reduce scope here too
Same as previous commit
This commit is contained in:
parent
787835d693
commit
300813b68b
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* This wasn't present before glibc 2.25 */
|
/* This wasn't present before glibc 2.25 */
|
||||||
int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
static int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
||||||
return syscall(SYS_getrandom, buf, buflen, flags);
|
return syscall(SYS_getrandom, buf, buflen, flags);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -66,7 +66,7 @@ int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
||||||
#define SMALLBUFSIZ 32
|
#define SMALLBUFSIZ 32
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int Lrandom(lua_State *L) {
|
static int Lrandom(lua_State *L) {
|
||||||
char smallbuf[SMALLBUFSIZ];
|
char smallbuf[SMALLBUFSIZ];
|
||||||
char *buf = &smallbuf[0];
|
char *buf = &smallbuf[0];
|
||||||
const lua_Integer l = luaL_checkinteger(L, 1);
|
const lua_Integer l = luaL_checkinteger(L, 1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue