hdd_menu: fix device name on fdisk invocation

Origin commit data
------------------
Branch: ni/coolstream
Commit: d1836f497c
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2015-02-22 (Sun, 22 Feb 2015)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2015-02-22 18:47:29 +01:00
parent ed57ad3225
commit 8b04d1ba7f

View File

@@ -1048,7 +1048,7 @@ int CHDDMenuHandler::formatDevice(std::string dev)
snprintf(cmd, sizeof(cmd), "%s -f -uM %s", sfdisk.c_str(), devname.c_str());
strcpy(cmd2, "0,\n;\n;\n;\ny\n");
} else if (! fdisk.empty()) {
snprintf(cmd, sizeof(cmd), "%s -u /dev/%s", fdisk.c_str(), devname.c_str());
snprintf(cmd, sizeof(cmd), "%s -u %s", fdisk.c_str(), devname.c_str());
strcpy(cmd2, "o\nn\np\n1\n2048\n\nw\n");
} else {
/* cannot do anything */