X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fgcrypt%2Fdigest.c;h=b86a1e1cc7bbc11895944979c4341064eb3e5ed7;hp=639fa67790131098203e1902713b01644415c171;hb=07a560eab66b575f382428a956550817697e25e2;hpb=7ea85043ac1fb2096baea44f6b0af27ac0d0b2cf diff --git a/src/gcrypt/digest.c b/src/gcrypt/digest.c index 639fa677..b86a1e1c 100644 --- a/src/gcrypt/digest.c +++ b/src/gcrypt/digest.c @@ -77,7 +77,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 +90,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 +101,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; }