summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2007-01-22 15:14:34 +0000
committerDavid Cantrell <dcantrell@redhat.com>2007-01-22 15:14:34 +0000
commit26451040f64ac0ad5fb0a8432ea14068c70d512d (patch)
treee56ec0b4c595bb7f0bbf27be8b1b7e394f176bbe /isys
parent326853c8479fbbe4715848c3017ed2dda469e005 (diff)
downloadanaconda-26451040f64ac0ad5fb0a8432ea14068c70d512d.tar.gz
anaconda-26451040f64ac0ad5fb0a8432ea14068c70d512d.tar.xz
anaconda-26451040f64ac0ad5fb0a8432ea14068c70d512d.zip
* loader2/net.c (doDhcp): Add 'anaconda-' to the front of the automatic
vendor-class-identifier (#220082). * isys/isys.c (doDhcpNetDevice): Likewise.
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/isys/isys.c b/isys/isys.c
index 3eb7249fe..d7a5299f7 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -633,7 +633,8 @@ static PyObject * doDhcpNetDevice(PyObject * s, PyObject * args) {
dhcpclass = "anaconda";
else {
int ret;
- ret = asprintf(&dhcpclass, "%s %s %s", kv.sysname,kv.release,kv.machine);
+ ret = asprintf(&dhcpclass, "anaconda-%s %s %s",
+ kv.sysname,kv.release,kv.machine);
}
}