From 9316509223aa289cb6aecff67ba198a7f6deae0e Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 2 Feb 2014 17:18:12 +0100 Subject: [PATCH] keyring: remove obsolete code --- src/keyring.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/keyring.cpp b/src/keyring.cpp index bfdf69a..eb1d380 100644 --- a/src/keyring.cpp +++ b/src/keyring.cpp @@ -384,12 +384,6 @@ static sencode* file_get_sencode (const std::string&fn, return sencode_decode (data); } -static sencode* file_get_sencode (const std::string&fn) -{ - std::string data; - return file_get_sencode (fn, data); -} - static bool file_put_string (const std::string&fn, const std::string&data) { std::ofstream out (fn.c_str(), std::ios::out | std::ios::binary);