thunderbolt: Show key using %*pE not %*pEp
%*pEp (without "h" or "o") is a no-op. This string could contain arbitrary (non-NULL) characters, so we do want escaping. Use %*pE like every other caller. Signed-off-by: J. Bruce Fields <bfields@redhat.com> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
parent
100c12f20d
commit
04f7745300
@ -636,7 +636,7 @@ static ssize_t key_show(struct device *dev, struct device_attribute *attr,
|
||||
* It should be null terminated but anything else is pretty much
|
||||
* allowed.
|
||||
*/
|
||||
return sprintf(buf, "%*pEp\n", (int)strlen(svc->key), svc->key);
|
||||
return sprintf(buf, "%*pE\n", (int)strlen(svc->key), svc->key);
|
||||
}
|
||||
static DEVICE_ATTR_RO(key);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user