diff options
| author | Albert Lee <trisk@acm.jhu.edu> | 2008-12-01 19:27:32 -0500 |
|---|---|---|
| committer | Albert Lee <trisk@acm.jhu.edu> | 2008-12-01 19:27:32 -0500 |
| commit | 112a2c5892067edbd48c020caec80fa455c0d07b (patch) | |
| tree | abb988b5e1afbdb04b038546b24388e59aef0d89 | |
| parent | 3aef37ba9b2f0bbc8fec478623609e0f7547a410 (diff) | |
| download | plan9port-112a2c5892067edbd48c020caec80fa455c0d07b.tar.gz plan9port-112a2c5892067edbd48c020caec80fa455c0d07b.zip | |
secstore: avoid name conflict with SS macro
| -rw-r--r-- | src/cmd/auth/secstore/SConn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/auth/secstore/SConn.c b/src/cmd/auth/secstore/SConn.c index 9ad9a7cc..07e92327 100644 --- a/src/cmd/auth/secstore/SConn.c +++ b/src/cmd/auth/secstore/SConn.c @@ -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; |
