summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMike Christie <michaelc@cs.wisc.edu>2010-01-12 23:34:34 -0600
committerMike Christie <michaelc@cs.wisc.edu>2010-01-12 23:34:34 -0600
commitda67e62ce691ff64e6ec45b9bbea8e21830f1c52 (patch)
treeb0819405af85beec720e4aead81db7a2acdf369f /utils
parent60a5b5cf5e87c644b52c08f04f0c14b4a11370ea (diff)
downloadopen-iscsi-da67e62ce691ff64e6ec45b9bbea8e21830f1c52.tar.gz
iscsi ibft/boot: fix net dev loopup
This fixes a regression that was added in http://git.kernel.org/?p=linux/kernel/git/mnc/open-iscsi.git;a=commitdiff;h=222947129ca97998aa69ecafcaefb48cb9328c6a;hp=78da93a3b934759b5cd288cfbf414eaf84ce6ba9 by me when I was fixing up some diff errors. In newer kernels we will have failed with "Could not read ethernet to net link" because we are searching for net: and there is now a dir called net.
Diffstat (limited to 'utils')
-rw-r--r--utils/fwparam_ibft/fwparam_ibft_sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/fwparam_ibft/fwparam_ibft_sysfs.c b/utils/fwparam_ibft/fwparam_ibft_sysfs.c
index 98e29a6..4f88083 100644
--- a/utils/fwparam_ibft/fwparam_ibft_sysfs.c
+++ b/utils/fwparam_ibft/fwparam_ibft_sysfs.c
@@ -96,7 +96,7 @@ static int get_iface_from_device(char *id, struct boot_context *context)
while ((dent = readdir(dirfd))) {
if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..") ||
- strncmp(dent->d_name, "net", 3))
+ strncmp(dent->d_name, "net:", 4))
continue;
if (!strncmp(dent->d_name, "net:", 4)) {
@@ -113,7 +113,7 @@ static int get_iface_from_device(char *id, struct boot_context *context)
rc = 0;
break;
} else {
- printf("Could not read ethernet to net link\n.");
+ printf("Could not read ethernet to net link.\n");
rc = EOPNOTSUPP;
break;
}