diff options
author | David S. Miller <davem@davemloft.net> | 2008-01-12 21:31:29 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:02:01 -0800 |
commit | 3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c (patch) | |
tree | 756558ed2362542c18f25fe80679b62a0b603043 /include/linux | |
parent | ba749ae98d5aa9d2ce9a7facde0deed454f92230 (diff) | |
download | linux-stable-3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c.tar.gz linux-stable-3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c.tar.bz2 linux-stable-3f4afb6443aaa1d69b2d8f0461c8191e40d54c3c.zip |
[XFRM]: Fix struct xfrm_algo code formatting.
Realign struct members.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/xfrm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/xfrm.h b/include/linux/xfrm.h index f8507eed0b79..9b5b00c4ef9d 100644 --- a/include/linux/xfrm.h +++ b/include/linux/xfrm.h @@ -91,9 +91,9 @@ struct xfrm_replay_state }; struct xfrm_algo { - char alg_name[64]; + char alg_name[64]; unsigned int alg_key_len; /* in bits */ - char alg_key[0]; + char alg_key[0]; }; struct xfrm_stats { |