From 0768814d7332eb695438e19efb15b01ae3264754 Mon Sep 17 00:00:00 2001 From: subtly Date: Mon, 18 May 2015 18:10:59 +0200 Subject: [PATCH] reverse commit for ethash --- libethash/io_posix.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libethash/io_posix.c b/libethash/io_posix.c index 1fe82973f..80046252d 100644 --- a/libethash/io_posix.c +++ b/libethash/io_posix.c @@ -26,10 +26,6 @@ #include #include #include -#if defined(__APPLE__) -#include -#include -#endif FILE* ethash_fopen(char const* file_name, char const* mode) { @@ -93,14 +89,6 @@ bool ethash_get_default_dirname(char* strbuf, size_t buffsize) static const char dir_suffix[] = ".ethash/"; strbuf[0] = '\0'; char* home_dir = getenv("HOME"); -#if defined(__APPLE__) - if (!home_dir || strlen(home_dir) == 0) - { - struct passwd* pwd = getpwuid(getuid()); - if (pwd) - home_dir = pwd->pw_dir; - } -#endif size_t len = strlen(home_dir); if (!ethash_strncat(strbuf, buffsize, home_dir, len)) {