RT RT/krbdev.mit.edu: Ticket #2629 fix !!defined(_WIN32) in osconf.h Signed in as guest.
[Logout]

[Home] [Search] [Configuration]

[Display] [History] [Basics] [Dates] [People] [Links] [Jumbo]

 
 

 The Basics  
Id
2629
Status
resolved
Worked
0 min
Priority
0/0
Queue
krb5
 

 Keyword Selections  
Component
  • krb5-libs
Version_reported
Version_Fixed
  • 1.4
Target_Version
Tags
 

 Relationships  
Depends on:
Depended on by:
Parents:
Children:

Refers to:
Referred to by:
 
 Dates  
Created: Fri Jul 9 10:31:04 2004
Starts: Not set
Started: Fri Jul 9 10:31:08 2004
Last Contact: Not set
Due: Not set
Updated: Mon Nov 15 22:22:15 2004 by tlyu
 

 People  
Owner
 jaltman
Requestors
 jaltman@mit.edu, darrenr@optimation.com.au
Cc
 
AdminCc
 
 

 More about Jeffrey Altman  
Comments about this user:
No comment entered about this user
This user's 25 highest priority tickets:
 
 More about "Darren Reed \(Optimation\)"  
Comments about this user:
No comment entered about this user
This user's 25 highest priority tickets:
 

History   Display mode: [Brief headers] [Full headers]
      Fri Jul  9 10:31:06 2004  jaltman - Ticket created    
     
From: jaltman@mit.edu
Subject: CVS Commit

 	osconf.h:

 	< #if !!defined(_WIN32)
 	---
 	> #if !defined(_WIN32)


To generate a diff of this commit:



	cvs diff -r5.73 -r5.74 krb5/src/include/krb5/stock/osconf.h


Download (untitled) 171b
      Fri Jul  9 10:31:09 2004  jaltman - Status changed from new to resolved    
      Fri Jul  9 10:31:09 2004  jaltman - Requestor jaltman@mit.edu added    
      Fri Jul  9 10:32:37 2004  jaltman - Correspondence added    
     
From: jaltman@mit.edu
Subject: CVS Commit

	forgot the changelog


To generate a diff of this commit:



	cvs diff -r5.43 -r5.44 krb5/src/include/krb5/stock/ChangeLog


Download (untitled) 124b
      Fri Oct  1 16:13:38 2004  darrenr@optimation.com.au - Ticket 2731: Ticket created    
     
From: "Darren Reed \(OSE\)" <darrenr@optimation.com.au>
To: <krb5-bugs@mit.edu>
Date: Fri, 1 Oct 2004 18:57:49 +1000
Subject: Error in 1.3.5 src/include/krb5/stock/osconf.h


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__



Download (untitled) 734b
      Thu Oct 28 18:37:18 2004  tlyu - Subject changed from [no subject] to fix !!defined(_WIN32) in osconf.h    
      Thu Oct 28 18:37:19 2004  tlyu - Component krb5-libs added    
      Thu Oct 28 18:39:01 2004  tlyu - Ticket 2731: Status changed from new to resolved    
      Thu Oct 28 18:39:01 2004  tlyu - Ticket 2731: Given to tlyu    
      Thu Oct 28 18:39:02 2004  tlyu - Ticket 2731: Correspondence added    
     
[darrenr@optimation.com.au - Fri Oct  1 16:13:38 2004]:

> The #ifdef for not compiling on windows is double-negated.  Fix below.

Thanks; this was already fixed on the trunk.


Download (untitled) 175b
      Thu Oct 28 18:39:46 2004  tlyu - Ticket 2731: Ticket 2731 MergedInto ticket 2629.    
      Mon Nov 15 22:22:15 2004  tlyu - Version_Fixed 1.4 added