Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/2e18cb267a32281504f7719020c81d38d53dab18 You should set ROOT_URL correctly, otherwise the web may not work correctly.

cmd_reiser: normalize 'file not found' errors

Signed-off-by: Luka Perkov <luka@openwrt.org>
master
Luka Perkov 12 years ago committed by Tom Rini
parent 7cdebc3289
commit 2e18cb267a
  1. 2
      common/cmd_reiser.c

@ -141,7 +141,7 @@ int do_reiserload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
filelen = reiserfs_open(filename);
if (filelen < 0) {
printf("** File not found %s\n", filename);
printf("** File not found %s **\n", filename);
return 1;
}
if ((count < filelen) && (count != 0)) {

Loading…
Cancel
Save