Mark dead code as dead

Coverity issue 23511.
This commit is contained in:
Jean-Marc 2015-09-12 18:49:22 +02:00
parent 61f0271031
commit 41cb3bbc0e

View File

@ -64,11 +64,12 @@ docstring const user_email()
//The code after should be used only after user approval. //The code after should be used only after user approval.
return docstring(); return docstring();
#if 0
string email = getEnv("EMAIL_ADDRESS"); string email = getEnv("EMAIL_ADDRESS");
if (email.empty()) if (email.empty())
email = getEnv("EMAIL"); email = getEnv("EMAIL");
return from_local8bit(email); return from_local8bit(email);
#endif
} }
} // namespace support } // namespace support