aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/auth/factotum/secstore.c
diff options
context:
space:
mode:
authorAlbert Lee <trisk@acm.jhu.edu>2008-12-01 19:27:20 -0500
committerAlbert Lee <trisk@acm.jhu.edu>2008-12-01 19:27:20 -0500
commit3aef37ba9b2f0bbc8fec478623609e0f7547a410 (patch)
tree3f7ae747a14fde1bad5af7810075bf027d7043ab /src/cmd/auth/factotum/secstore.c
parentf134aa3cff690cfd93baf716a2782980507841a2 (diff)
downloadplan9port-3aef37ba9b2f0bbc8fec478623609e0f7547a410.tar.gz
plan9port-3aef37ba9b2f0bbc8fec478623609e0f7547a410.tar.bz2
plan9port-3aef37ba9b2f0bbc8fec478623609e0f7547a410.zip
factotum: avoid name conflict with SS macro
Diffstat (limited to 'src/cmd/auth/factotum/secstore.c')
-rw-r--r--src/cmd/auth/factotum/secstore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/auth/factotum/secstore.c b/src/cmd/auth/factotum/secstore.c
index c9009ee2..2babf4d8 100644
--- a/src/cmd/auth/factotum/secstore.c
+++ b/src/cmd/auth/factotum/secstore.c
@@ -114,7 +114,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;