Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> writes: > @@ -256,7 +256,7 @@ static int write_tar_entry(struct archiver_args *args, > *header.typeflag = TYPEFLAG_REG; > mode = (mode | ((mode & 0100) ? 0777 : 0666)) & ~tar_umask; > } else { > - return error("unsupported file mode: 0%o (SHA1: %s)", > + return error(_("unsupported file mode: 0%o (SHA1: %s)"), > mode, oid_to_hex(oid)); This is no longer sha1_to_hex(); the "SHA1" in the message should probably have been updated when it happened. Cleaning it up is outside the scope of this patch. #leftoverbits