commit | 01adbce2aa496ff0704bc2b7c3e4280c0e9a8657 | [log] [tgz] |
---|---|---|
author | Luka Perkov <luka@openwrt.org> | Thu Oct 10 01:32:28 2013 +0200 |
committer | Tom Rini <trini@ti.com> | Fri Nov 08 15:25:13 2013 -0500 |
tree | 70d5884657501e1ec7372042f034b29c9b4b6da6 | |
parent | 2e18cb267a32281504f7719020c81d38d53dab18 [diff] [blame] |
cmd_zfs: normalize 'file not found' errors Signed-off-by: Luka Perkov <luka@openwrt.org>
diff --git a/common/cmd_zfs.c b/common/cmd_zfs.c index 9110868..0aed29e 100644 --- a/common/cmd_zfs.c +++ b/common/cmd_zfs.c
@@ -95,7 +95,7 @@ memset(&zfile, 0, sizeof(zfile)); zfile.device = &vdev; if (zfs_open(&zfile, filename)) { - printf("** File not found %s\n", filename); + printf("** File not found %s **\n", filename); return 1; }