svn commit: r238363 - head/sys/cam/ata
Christian Brueffer
brueffer at FreeBSD.org
Wed Jul 11 08:24:30 UTC 2012
Author: brueffer
Date: Wed Jul 11 08:24:30 2012
New Revision: 238363
URL: http://svn.freebsd.org/changeset/base/238363
Log:
- fix description of SECURITY_FREEZE_LOCK (1)
- add missing underscores to SECURITY_DISABLE_PASSWORD
PR: 169763 (1)
Submitted by: Steven Hartland <steven.hartland at multiplay.co.uk>
Reviewed by: mav
MFC after: 1 week
Modified:
head/sys/cam/ata/ata_all.c
Modified: head/sys/cam/ata/ata_all.c
==============================================================================
--- head/sys/cam/ata/ata_all.c Wed Jul 11 03:49:05 2012 (r238362)
+++ head/sys/cam/ata/ata_all.c Wed Jul 11 08:24:30 2012 (r238363)
@@ -171,8 +171,8 @@ ata_op_string(struct ata_cmd *cmd)
case 0xf2: return ("SECURITY_UNLOCK");
case 0xf3: return ("SECURITY_ERASE_PREPARE");
case 0xf4: return ("SECURITY_ERASE_UNIT");
- case 0xf5: return ("SECURITY_FREE_LOCK");
- case 0xf6: return ("SECURITY DISABLE PASSWORD");
+ case 0xf5: return ("SECURITY_FREEZE_LOCK");
+ case 0xf6: return ("SECURITY_DISABLE_PASSWORD");
case 0xf8: return ("READ_NATIVE_MAX_ADDRESS");
case 0xf9: return ("SET_MAX_ADDRESS");
}
More information about the svn-src-head
mailing list