diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-12-07 11:35:02 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-12-07 11:35:02 +0100 |
commit | aae236245596743b6aff4b1b294c0e8d97b8190f (patch) | |
tree | 7a84960ab3e424930676107f33ad23981b964834 /include/osmocom | |
parent | 57143a43619ccb229b35b4b4c7def737cb41a40a (diff) |
auth_core: don't use anonymous unions to make certain gcc versions happy
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/crypt/auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/crypt/auth.h b/include/osmocom/crypt/auth.h index 23e104c1..30e16e82 100644 --- a/include/osmocom/crypt/auth.h +++ b/include/osmocom/crypt/auth.h @@ -37,7 +37,7 @@ struct osmo_sub_auth_data { struct { uint8_t ki[16]; } gsm; - }; + } u; }; /* data structure describing a computed auth vector, generated by AuC */ |