X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fgcrypt%2Fdigest.c;h=4e180589058fc6401019e0bc3789e6af2ea6a8ea;hb=761517c21c37a808a19b487aa116c3c19439feca;hp=639fa67790131098203e1902713b01644415c171;hpb=5a132550deb58473285e5f91705d286aef47be71;p=tinc diff --git a/src/gcrypt/digest.c b/src/gcrypt/digest.c index 639fa677..4e180589 100644 --- a/src/gcrypt/digest.c +++ b/src/gcrypt/digest.c @@ -12,11 +12,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - $Id$ + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "system.h" @@ -77,7 +75,7 @@ static bool digesttonid(int algo, int *nid) { static bool digest_open(digest_t *digest, int algo) { if(!digesttonid(algo, &digest->nid)) { - logger(LOG_DEBUG, _("Digest %d has no corresponding nid!"), algo); + logger(LOG_DEBUG, "Digest %d has no corresponding nid!", algo); return false; } @@ -90,7 +88,7 @@ bool digest_open_by_name(digest_t *digest, const char *name) { int algo; if(!nametodigest(name, &algo)) { - logger(LOG_DEBUG, _("Unknown digest name '%s'!"), name); + logger(LOG_DEBUG, "Unknown digest name '%s'!", name); return false; } @@ -101,7 +99,7 @@ bool digest_open_by_nid(digest_t *digest, int nid) { int algo; if(!nidtodigest(nid, &algo)) { - logger(LOG_DEBUG, _("Unknown digest ID %d!"), nid); + logger(LOG_DEBUG, "Unknown digest ID %d!", nid); return false; }