From c95b308d12be1a7f317d5b280a9f14e7d0b1f104 Mon Sep 17 00:00:00 2001 From: Darik Horn Date: Sun, 24 Apr 2011 20:48:56 -0500 Subject: [PATCH] Correct typos in the spl proc handler. Correct a format typo that causes /proc/sys/kernel/spl/hostid to return a decimal number instead of a hexadecimal number. --- module/spl/spl-proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/spl/spl-proc.c b/module/spl/spl-proc.c index fa0d1fb3d3d8..1b353ceb28fe 100644 --- a/module/spl/spl-proc.c +++ b/module/spl/spl-proc.c @@ -492,7 +492,7 @@ SPL_PROC_HANDLER(proc_dohostid) if (write) { /* We can't use spl_proc_doulongvec_minmax() in the write - * case hear because hostid while a hex value has no + * case here because hostid while a hex value has no * leading 0x which confuses the helper function. */ rc = proc_copyin_string(str, sizeof(str), buffer, *lenp); if (rc < 0) @@ -506,7 +506,7 @@ SPL_PROC_HANDLER(proc_dohostid) hw_serial[HW_HOSTID_LEN - 1] = '\0'; *ppos += *lenp; } else { - len = snprintf(str, sizeof(str), "%lux", spl_hostid); + len = snprintf(str, sizeof(str), "%lx", spl_hostid); if (*ppos >= len) rc = 0; else @@ -534,7 +534,7 @@ SPL_PROC_HANDLER(proc_dokallsyms_lookup_name) SRETURN(-EEXIST); /* We can't use spl_proc_doulongvec_minmax() in the write - * case hear because the address while a hex value has no + * case here because the address while a hex value has no * leading 0x which confuses the helper function. */ rc = proc_copyin_string(str, sizeof(str), buffer, *lenp); if (rc < 0)