From c24b0bb9adaa0e39ede04e376bf0bc99887d87b6 Mon Sep 17 00:00:00 2001 From: Michael Liebmann Date: Tue, 1 Oct 2013 20:35:37 +0200 Subject: [PATCH] CFlashExpert::showMTDSelector(): Fixed typo at 'disable write uboot' Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/00a194990ed42c47089f488dedd02feef1f67ddb Author: Michael Liebmann Date: 2013-10-01 (Tue, 01 Oct 2013) --- src/gui/update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/update.cpp b/src/gui/update.cpp index 62f5b08d3..6588ba1cc 100644 --- a/src/gui/update.cpp +++ b/src/gui/update.cpp @@ -815,7 +815,7 @@ int CFlashExpert::showMTDSelector(const std::string & actionkey) } #else // disable write uboot - if ((actionkey == "writemtd") && (lx == mtdInfo->findMTDNumberFromName("u-boot"))) + if ((actionkey == "writemtd") && (lx == mtdInfo->findMTDNumberFromName("U-Boot"))) enabled = false; #endif sprintf(sActionKey, "%s%d", actionkey.c_str(), lx);