1
0
Fork 0

cmd_zfs: normalize 'file not found' errors

Signed-off-by: Luka Perkov <luka@openwrt.org>
utp
Luka Perkov 2013-10-10 01:32:28 +02:00 committed by Tom Rini
parent 2e18cb267a
commit 01adbce2aa
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ static int do_zfs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]
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;
}