secstore: avoid name conflict with SS macro

This commit is contained in:
Albert Lee 2008-12-01 19:27:32 -05:00
parent 3aef37ba9b
commit 112a2c5892

View file

@ -12,7 +12,8 @@ typedef struct ConnState {
RC4state rc4;
} ConnState;
typedef struct SS{
#undef SS
typedef struct SS {
int fd; /* file descriptor for read/write of encrypted data */
int alg; /* if nonzero, "alg sha rc4_128" */
ConnState in, out;