diff options
-rw-r--r-- | app/xinit/startx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/xinit/startx.cpp b/app/xinit/startx.cpp index c578d2ba4..a9b4199e7 100644 --- a/app/xinit/startx.cpp +++ b/app/xinit/startx.cpp @@ -188,7 +188,7 @@ authdisplay=${display:-:0} #if defined(HAS_COOKIE_MAKER) && defined(MK_COOKIE) mcookie=`MK_COOKIE` #else -mcookie=`dd if=/dev/arandom bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"` +mcookie=`dd if=/dev/random bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"` if test x"$mcookie" = x; then echo "Couldn't create cookie" exit 1 |