summaryrefslogtreecommitdiffstats
path: root/loader/devices.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-19 04:00:56 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-19 04:00:56 +0000
commit4901a0b241117f04d682973053ae98d4839dc5c9 (patch)
tree074202b72db416d5bf7c99e547865e2f6edd25ff /loader/devices.c
parenta8fa8bebd84c13bc3723bb15a3efbc0a37dd4973 (diff)
downloadanaconda-4901a0b241117f04d682973053ae98d4839dc5c9.tar.gz
anaconda-4901a0b241117f04d682973053ae98d4839dc5c9.tar.xz
anaconda-4901a0b241117f04d682973053ae98d4839dc5c9.zip
get the easy bits of the merge first.... hampton loader and isys directories
should be fine since I had originally just copied them into hampton from head :)
Diffstat (limited to 'loader/devices.c')
-rw-r--r--loader/devices.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loader/devices.c b/loader/devices.c
index fbf3d924f..01913754a 100644
--- a/loader/devices.c
+++ b/loader/devices.c
@@ -264,7 +264,7 @@ int devLoadDriverDisk(moduleInfoSet modInfo, moduleList modLoaded,
"/tmp/drivers", ddi))
newtWinMessage(_("Error"), _("OK"),
_("The floppy disk you inserted is not a valid driver disk "
- "for this release of Red Hat Linux."));
+ "for this release of %s."), PRODUCTNAME);
else
done = 1;
@@ -339,7 +339,7 @@ static int pickModule(moduleInfoSet modInfo, enum driverMajor type,
newtFormAddHotKey(form, NEWT_KEY_F2);
for (i = 0; i < numSorted; i++) {
- char buf[80];
+ char buf[1024];
int num = sortedOrder[i].index;
snprintf (buf, sizeof(buf), "%s (%s)",
@@ -437,7 +437,7 @@ int devDeviceMenu(enum driverMajor type, moduleInfoSet modInfo,
void ddReadDriverDiskModInfo(moduleInfoSet modInfo) {
int num = 0;
- char fileName[80];
+ char fileName[1024];
struct stat sb;
FILE * f;
struct driverDiskInfo * ddi;