summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-02-25 20:11:44 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-02-25 20:11:44 +0000
commit31429ad66f5aed553b995e129ba6a90060e149c0 (patch)
tree48c16f4bf8c10815ec4440bc0545f759ca782b58
parent640546bb23400a232d0b73684429429c282c140b (diff)
Use M_XDATA for the key schedule, instead of M_TEMP.
-rw-r--r--sys/netinet/ip_skipjack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_skipjack.c b/sys/netinet/ip_skipjack.c
index d06c8b781ad..24b96a2c63b 100644
--- a/sys/netinet/ip_skipjack.c
+++ b/sys/netinet/ip_skipjack.c
@@ -66,7 +66,7 @@ subkey_table_gen (u_int8_t *key, u_int8_t **key_tables)
for (k = 0; k < 10; k++) {
u_int8_t key_byte = key [k];
- u_int8_t * table = (u_int8_t *) malloc(0x100, M_TEMP, M_WAITOK);
+ u_int8_t * table = (u_int8_t *) malloc(0x100, M_XDATA, M_WAITOK);
/* XXX */
key_tables [k] = table;