X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Finode.c;h=c459f3cb15ddc78db68b576d7603525ac64cb656;hb=a5f0f107247cc6400c0bd25f41e49d658fd2b7d7;hp=0111004ac23aaf749695ba02acc2829dba402c60;hpb=321750354891a0968ca0c3664417eae73b9414aa;p=wimlib diff --git a/src/inode.c b/src/inode.c index 0111004a..c459f3cb 100644 --- a/src/inode.c +++ b/src/inode.c @@ -10,20 +10,18 @@ /* * Copyright (C) 2012, 2013, 2014 Eric Biggers * - * This file is part of wimlib, a library for working with WIM files. - * - * wimlib is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free - * Software Foundation; either version 3 of the License, or (at your option) - * any later version. - * - * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more + * This file is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) any + * later version. + * + * This file is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License - * along with wimlib; if not, see http://www.gnu.org/licenses/. + * You should have received a copy of the GNU Lesser General Public License + * along with this file; if not, see http://www.gnu.org/licenses/. */ #ifdef HAVE_CONFIG_H @@ -467,11 +465,14 @@ int stream_not_found_error(const struct wim_inode *inode, const u8 *hash) { if (wimlib_print_errors) { - ERROR("\"%"TS"\": stream not found", inode_first_full_path(inode)); - tfprintf(wimlib_error_file, - T(" SHA-1 message digest of missing stream:\n ")); - print_hash(hash, wimlib_error_file); - tputc(T('\n'), wimlib_error_file); + tchar hashstr[SHA1_HASH_SIZE * 2 + 1]; + + sprint_hash(hash, hashstr); + + ERROR("\"%"TS"\": stream not found\n" + " SHA-1 message digest of missing stream:\n" + " %"TS"", + inode_first_full_path(inode), hashstr); } return WIMLIB_ERR_RESOURCE_NOT_FOUND; }