mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 17:31:20 +02:00
hdd_menu.cpp: circumvent format-truncation-warning
Signed-off-by: MarkusVolk <f_l_k@t-online.de> Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -673,7 +673,7 @@ bool CHDDMenuHandler::scanDevices()
|
||||
bool isroot = false;
|
||||
|
||||
printf("HDD: checking /sys/block/%s\n", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/dev/%s", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/dev/%s", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
int fd = open(str, O_RDONLY);
|
||||
if (fd >= 0) {
|
||||
if (ioctl(fd, BLKGETSIZE64, &bytes))
|
||||
@@ -696,11 +696,11 @@ bool CHDDMenuHandler::scanDevices()
|
||||
|
||||
megabytes = bytes/1000000;
|
||||
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/vendor", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/vendor", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
FILE * f = fopen(str, "r");
|
||||
if(!f) {
|
||||
printf("Cant open %s\n", str);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/type", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/type", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
f = fopen(str, "r");
|
||||
}
|
||||
if (f) {
|
||||
@@ -713,13 +713,13 @@ bool CHDDMenuHandler::scanDevices()
|
||||
|
||||
/* the Tripledragon only has kernel 2.6.12 available.... :-( */
|
||||
if (oldkernel)
|
||||
snprintf(str, sizeof(str), "/proc/ide/%s/model", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/proc/ide/%s/model", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
else
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/model", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/model", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
f = fopen(str, "r");
|
||||
if(!f) {
|
||||
printf("Cant open %s\n", str);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/name", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/device/name", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
f = fopen(str, "r");
|
||||
}
|
||||
if (f) {
|
||||
@@ -728,7 +728,7 @@ bool CHDDMenuHandler::scanDevices()
|
||||
}
|
||||
#if 0
|
||||
int removable = 0;
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/removable", namelist[i]->d_name);
|
||||
snprintf(str, sizeof(str), "/sys/block/%s/removable", namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
f = fopen(str, "r");
|
||||
if(!f) {
|
||||
printf("Cant open %s\n", str);
|
||||
@@ -749,7 +749,7 @@ bool CHDDMenuHandler::scanDevices()
|
||||
hdd_list.push_back(hdd);
|
||||
}
|
||||
|
||||
snprintf(str, sizeof(str), "%s %s %ld %s", vendor, model, (long)(megabytes < 10000 ? megabytes : megabytes/1000), megabytes < 10000 ? "MB" : "GB");
|
||||
snprintf(str, sizeof(str), "%s %s %ld %s", vendor, model, (long)(megabytes < 10000 ? megabytes : megabytes/1000), megabytes < 10000 ? "MB" : "GB") < 0 ? abort() : (void)0;
|
||||
printf("HDD: %s\n", str);
|
||||
devtitle[namelist[i]->d_name] = str;
|
||||
|
||||
@@ -1419,7 +1419,7 @@ int CHDDDestExec::exec(CMenuTarget* /*parent*/, const std::string&)
|
||||
char M_opt[50],S_opt[50], opt[100];
|
||||
snprintf(S_opt, sizeof(S_opt), "-S%d", g_settings.hdd_sleep);
|
||||
snprintf(M_opt, sizeof(M_opt), "-M%d", g_settings.hdd_noise);
|
||||
snprintf(opt, sizeof(opt), "/dev/%s",namelist[i]->d_name);
|
||||
snprintf(opt, sizeof(opt), "/dev/%s",namelist[i]->d_name) < 0 ? abort() : (void)0;
|
||||
|
||||
if (have_nonbb_hdparm)
|
||||
my_system(4, hdparm, M_opt, S_opt, opt);
|
||||
|
Reference in New Issue
Block a user