diff options
Diffstat (limited to 'lib/libalpm/md5driver.c')
-rw-r--r-- | lib/libalpm/md5driver.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libalpm/md5driver.c b/lib/libalpm/md5driver.c index 30b37051..b6ebfa83 100644 --- a/lib/libalpm/md5driver.c +++ b/lib/libalpm/md5driver.c @@ -23,6 +23,8 @@ documentation and/or software. #include <stdio.h> #include <time.h> #include <string.h> +#include <libintl.h> +#include "util.h" #include "md5.h" /* Length of test block, number of test blocks. @@ -43,7 +45,7 @@ char* MDFile(char *filename) unsigned char buffer[1024], digest[16]; if((file = fopen(filename, "rb")) == NULL) { - printf ("%s can't be opened\n", filename); + printf (_("%s can't be opened\n"), filename); } else { char *ret; int i; |