tsecstore: avoid name conflict with SS macro - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 112a2c5892067edbd48c020caec80fa455c0d07b
 (DIR) parent 3aef37ba9b2f0bbc8fec478623609e0f7547a410
 (HTM) Author: Albert Lee <trisk@acm.jhu.edu>
       Date:   Mon,  1 Dec 2008 19:27:32 -0500
       
       secstore: avoid name conflict with SS macro
       
       Diffstat:
         M src/cmd/auth/secstore/SConn.c       |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/cmd/auth/secstore/SConn.c b/src/cmd/auth/secstore/SConn.c
       t@@ -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;