Skip to content
Snippets Groups Projects
Commit 6d752982 authored by Matt Johnston's avatar Matt Johnston
Browse files

random.c: fix missed instance of DROPBEAR_EGD_SOCKET

--HG--
extra : convert_revision : 0be7aaee2230fa65f252b2e74deee7102558ceb6
parent 9d431837
No related merge requests found
...@@ -68,7 +68,7 @@ static void readrand(unsigned char* buf, unsigned int buflen) { ...@@ -68,7 +68,7 @@ static void readrand(unsigned char* buf, unsigned int buflen) {
#ifdef DROPBEAR_PRNGD_SOCKET #ifdef DROPBEAR_PRNGD_SOCKET
memset((void*)&egdsock, 0x0, sizeof(egdsock)); memset((void*)&egdsock, 0x0, sizeof(egdsock));
egdsock.sun_family = AF_UNIX; egdsock.sun_family = AF_UNIX;
strlcpy(egdsock.sun_path, DROPBEAR_EGD_SOCKET, strlcpy(egdsock.sun_path, DROPBEAR_PRNGD_SOCKET,
sizeof(egdsock.sun_path)); sizeof(egdsock.sun_path));
readfd = socket(PF_UNIX, SOCK_STREAM, 0); readfd = socket(PF_UNIX, SOCK_STREAM, 0);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment