gostor / gotgt

Simple Golang iSCSI Target framework
Apache License 2.0
261 stars 49 forks source link

fix word shift in func BuildSenseData #67

Closed donaldt10ydt closed 6 years ago

donaldt10ydt commented 6 years ago

origin code send high byte to low layer, but its value is always 0. new code send high byte to low layer as following: senseBuffer.WriteByte(byte(asc >> 8) & 0xff)

carmark commented 6 years ago

Hello @donaldt10ydt ,

Thanks for this patch, but the travis-ci report a format issue, would you please gofmt it?