diff options
| author | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-01-13 14:52:53 +0000 |
|---|---|---|
| committer | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-01-13 14:52:53 +0000 |
| commit | 5d60ed0e69a3491f6983e5d73cfd6abac8ee2f8e (patch) | |
| tree | 27919274c8fa2c8469170122867d1ba1e63594e0 /sys/netkey/key_debug.c | |
| parent | f014ebf5370ab50e3bd46a90b7af612422d82087 (diff) | |
Notes
Diffstat (limited to 'sys/netkey/key_debug.c')
| -rw-r--r-- | sys/netkey/key_debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netkey/key_debug.c b/sys/netkey/key_debug.c index fc6e3a3f57f3c..6b7e77cd84718 100644 --- a/sys/netkey/key_debug.c +++ b/sys/netkey/key_debug.c @@ -478,9 +478,9 @@ kdebug_secpolicyindex(spidx) printf("secpolicyindex{ dir=%u prefs=%u prefd=%u ul_proto=%u\n", spidx->dir, spidx->prefs, spidx->prefd, spidx->ul_proto); - ipsec_hexdump((caddr_t)&spidx->src, spidx->src.__ss_len); + ipsec_hexdump((caddr_t)&spidx->src, spidx->src.ss_len); printf("\n"); - ipsec_hexdump((caddr_t)&spidx->dst, spidx->dst.__ss_len); + ipsec_hexdump((caddr_t)&spidx->dst, spidx->dst.ss_len); printf("}\n"); return; @@ -497,9 +497,9 @@ kdebug_secasindex(saidx) printf("secasindex{ mode=%u proto=%u\n", saidx->mode, saidx->proto); - ipsec_hexdump((caddr_t)&saidx->src, saidx->src.__ss_len); + ipsec_hexdump((caddr_t)&saidx->src, saidx->src.ss_len); printf("\n"); - ipsec_hexdump((caddr_t)&saidx->dst, saidx->dst.__ss_len); + ipsec_hexdump((caddr_t)&saidx->dst, saidx->dst.ss_len); printf("\n"); return; |
