[krbdev.mit.edu #2731] Error in 1.3.5 src/include/krb5/stock/osconf.h	
    "Darren Reed (Optimation)" via RT 
    rt-comment at krbdev.mit.edu
       
    Fri Oct  1 16:13:40 EDT 2004
    
    
  
The #ifdef for not compiling on windows is double-negated.  Fix below.
Index: ../../../include/krb5/stock/osconf.h
===================================================================
RCS file: /opt/RaisSw/CVS/Krb5/src/include/krb5/stock/osconf.h,v
retrieving revision 1.6
diff -c -u -r1.6 osconf.h
cvs diff: conflicting specifications of output style
--- ../../../include/krb5/stock/osconf.h        2004/09/24 09:12:27     1.6
+++ ../../../include/krb5/stock/osconf.h        2004/10/01 08:54:47
@@ -30,7 +30,7 @@
 #ifndef KRB5_OSCONF__
 #define KRB5_OSCONF__
-#if !!defined(_WIN32)
+#if !defined(_WIN32)
     /* Don't try to pull in autoconf.h for Windows, since it's not used */
 #ifndef KRB5_AUTOCONF__
 #define KRB5_AUTOCONF__
    
    
More information about the krb5-bugs
mailing list