summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/include/rpc/auth.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-04-23 14:42:58 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-06-06 13:57:43 +0200
commit8250503f218be1a3fa434e905631b1636cf6d033 (patch)
treeb23dfdca86e25ad19ff70a4799b8f7a09389a82d /cpukit/librpc/include/rpc/auth.h
parentnetwork/bootp: PR2031: Add and use header file (diff)
downloadrtems-8250503f218be1a3fa434e905631b1636cf6d033.tar.bz2
librpc: PR2066: Fix for short enums
The XDR library has a problem on architectures with short enums like the default ARM EABI. Short enums means that the size of the enum type is variable and the smallest integer type to hold all enum values will be selected. For many enums this is char. The XDR library uses int32_t for enum_t. There are several evil casts from an enum type to enum_t which leads to invalid memory accesses on short enum architectures. A workaround is to add appropriate dummy enum values.
Diffstat (limited to 'cpukit/librpc/include/rpc/auth.h')
-rw-r--r--cpukit/librpc/include/rpc/auth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/librpc/include/rpc/auth.h b/cpukit/librpc/include/rpc/auth.h
index 1b4367c1da..13432bd5d0 100644
--- a/cpukit/librpc/include/rpc/auth.h
+++ b/cpukit/librpc/include/rpc/auth.h
@@ -67,7 +67,8 @@ enum auth_stat {
* failed locally
*/
AUTH_INVALIDRESP=6, /* bogus response verifier */
- AUTH_FAILED=7 /* some unknown reason */
+ AUTH_FAILED=7, /* some unknown reason */
+ _AUTH_STAT = 0xffffffff
};
union des_block {