From Bugzilla Helper: User-Agent: Mozilla/4.6 [en-gb]C-CCK-MCD NetscapeOnline.co.uk (Win98; I) Description of problem: Hello there, I have just tried to compile raidtools-1.00.2-3.3 from Redhat 8.0 Here are some of the messages the compiler produces cc: Info: scsi.c, line 277: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) Here is an untested patch to shut up the compiler. ./scsi.c.old ./scsi.c *** ./scsi.c.old Tue Dec 24 22:14:12 2002 --- ./scsi.c Tue Dec 24 22:14:47 2002 *************** *** 274,280 **** memcpy((void *)&sg_dev->revision[0], (const void *)&cmd.buf[32], 4); sg_dev->vendor[8] = '\0'; sg_dev->product[16] = '\0'; ! sg_dev->revision[5] = '\0'; /* * First try the device ID page. Then get the serial number. --- 274,280 ---- memcpy((void *)&sg_dev->revision[0], (const void *)&cmd.buf[32], 4); sg_dev->vendor[8] = '\0'; sg_dev->product[16] = '\0'; ! sg_dev->revision[ 4] = '\0'; /* * First try the device ID page. Then get the serial number. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. compile with any C compiler that checks array indexes, for example Compaq. 2. 3. Additional info: