diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-09 05:51:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-09 05:51:55 +0000 |
commit | d1addc9ea23c6f9be8a79e6608ec1e0869e854a6 (patch) | |
tree | e9d24c28cfec8bfb5b7f78b98df68678072b8680 /sys/scsi/ses.c | |
parent | 1c1c11e4ab159a805f2e116c9db7ba237e8a832e (diff) |
make sensor names look more normal; ok dlg
Diffstat (limited to 'sys/scsi/ses.c')
-rw-r--r-- | sys/scsi/ses.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/scsi/ses.c b/sys/scsi/ses.c index 8bd4fb78f6c..80dbd9662ae 100644 --- a/sys/scsi/ses.c +++ b/sys/scsi/ses.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ses.c,v 1.35 2006/04/20 20:31:13 miod Exp $ */ +/* $OpenBSD: ses.c,v 1.36 2006/05/09 05:51:54 deraadt Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -433,17 +433,17 @@ ses_make_sensors(struct ses_softc *sc, struct ses_type_desc *types, int ntypes) case SES_T_POWERSUPPLY: stype = SENSOR_INDICATOR; - fmt = "psu%d"; + fmt = "PSU%d"; break; case SES_T_COOLING: stype = SENSOR_PERCENT; - fmt = "fan%d"; + fmt = "Fan%d"; break; case SES_T_TEMP: stype = SENSOR_TEMP; - fmt = "temp%d"; + fmt = "Temp%d"; break; default: |