summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2008-09-19 18:46:07 +0200
committerMichael Brown2008-09-19 18:46:07 +0200
commit0e408658b9139c346b684d08134111fbc8159ca0 (patch)
treeae4db1f99a5db2e656feae5d3d1b693342eca701
parent[undi] Scan for UNDI ROMs on 512-byte boundaries rather than 2kB boundaries (diff)
downloadipxe-0e408658b9139c346b684d08134111fbc8159ca0.tar.gz
ipxe-0e408658b9139c346b684d08134111fbc8159ca0.tar.xz
ipxe-0e408658b9139c346b684d08134111fbc8159ca0.zip
[iscsi] Change default initiator name prefix to "iqn.2000-01.org.etherboot:"
The domain etherboot.org was actually registered on 2000-01-09, not 2000-09-01. (To put it another way, it was registered on 1/9/2000 (US date format) rather than 1/9/2000 (sensible date format); this may illuminate the cause of the error.) "iqn.2000-09.org.etherboot:" is still valid as per RFC3720, but may be surprising to users, so change it to something less unexpected. Thanks to the anonymous contributor for pointing this one out.
-rw-r--r--src/net/tcp/iscsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcp/iscsi.c b/src/net/tcp/iscsi.c
index a67415b6..01a46584 100644
--- a/src/net/tcp/iscsi.c
+++ b/src/net/tcp/iscsi.c
@@ -1886,7 +1886,7 @@ static struct iscsi_string_setting iscsi_string_settings[] = {
{
.setting = &hostname_setting,
.string = &iscsi_default_initiator_iqn,
- .prefix = "iqn.2000-09.org.etherboot:",
+ .prefix = "iqn.2000-01.org.etherboot:",
},
};