From 9f20b8719c2d8cf396fd5ebce7d9ef476c2c3d96 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Sun, 28 Apr 2013 09:38:05 -0700 Subject: [PATCH] Fix a typo in a comment --- commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.cpp b/commands.cpp index ceb1678..89786d7 100644 --- a/commands.cpp +++ b/commands.cpp @@ -294,7 +294,7 @@ void keygen (const char* keyfile) } umask(old_umask); std::ifstream randin; - randin.rdbuf()->pubsetbuf(0, 0); // disable vuffering so we don't take more entropy than needed + randin.rdbuf()->pubsetbuf(0, 0); // disable buffering so we don't take more entropy than needed randin.open("/dev/random", std::ios::binary); if (!randin) { perror("/dev/random");