git.openpandora.org
/
pandora-kernel.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
security: follow rename pack_hex_byte() to hex_byte_pack()
[pandora-kernel.git]
/
security
/
keys
/
encrypted-keys
/
encrypted.c
diff --git
a/security/keys/encrypted-keys/encrypted.c
b/security/keys/encrypted-keys/encrypted.c
index
f33804c
..
dcc843c
100644
(file)
--- a/
security/keys/encrypted-keys/encrypted.c
+++ b/
security/keys/encrypted-keys/encrypted.c
@@
-293,7
+293,7
@@
static char *datablob_format(struct encrypted_key_payload *epayload,
/* convert the hex encoded iv, encrypted-data and HMAC to ascii */
bufp = &ascii_buf[len];
for (i = 0; i < (asciiblob_len - len) / 2; i++)
- bufp =
pack_hex_byte
(bufp, iv[i]);
+ bufp =
hex_byte_pack
(bufp, iv[i]);
out:
return ascii_buf;
}