omadrm/drmengine/roap/src/JoinDomainReq.cpp
branchRCL_3
changeset 12 8a03a285ab14
parent 0 95b198f216e5
--- a/omadrm/drmengine/roap/src/JoinDomainReq.cpp	Fri Mar 12 15:43:46 2010 +0200
+++ b/omadrm/drmengine/roap/src/JoinDomainReq.cpp	Mon Mar 15 12:41:43 2010 +0200
@@ -19,7 +19,7 @@
 
 // INCLUDE FILES
 #include <e32std.h>
-#include "base64.h"
+#include "Base64.h"
 #include "JoinDomainReq.h"
 #include "RoapDef.h"
 
@@ -100,7 +100,7 @@
 CJoinDomainReq* CJoinDomainReq::NewL()
     {
     CJoinDomainReq* self = new( ELeave ) CJoinDomainReq;
-    
+
     CleanupStack::PushL( self );
     self->ConstructL();
     CleanupStack::Pop();
@@ -108,7 +108,7 @@
     return self;
     }
 
-    
+
 // Destructor
 CJoinDomainReq::~CJoinDomainReq()
     {
@@ -174,7 +174,7 @@
             }
         BufAppendL(b, KReqCertChainEnd);
         }
-        
+
     if (iPeerKeyIdentifier.Length() ||
         iOcspResponderKeyId ||
         iOcspInfoStored ||
@@ -182,19 +182,19 @@
         {
         BufAppendL(b, KReqExtensions);
         }
-        
+
     if (iPeerKeyIdentifier.Length())
         {
         BufAppendL(b, KReqPeerKey);
         BufAppendBase64L(b, iPeerKeyIdentifier);
         BufAppendL(b, KReqPeerKeyEnd);
         }
-        
+
     if (iOcspInfoStored)
         {
         BufAppendL(b, KReqNoOcspResponse);
         }
-        
+
     if (iOcspResponderKeyId)
         {
         BufAppendL(b, KReqOcspResponderKeyId);
@@ -206,7 +206,7 @@
         {
         BufAppendL(b, KReqHashChainSupport);
         }
-               
+
     if (iPeerKeyIdentifier.Length() ||
         iOcspResponderKeyId ||
         iOcspInfoStored ||