Update FSF address in files not covered by the merge.
[tinc] / src / gcrypt / digest.c
index 639fa67..4e18058 100644 (file)
     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;
        }