omadrm/drmengine/roap/src/JoinDomainReq.cpp
changeset 23 493788a4a8a4
parent 0 95b198f216e5
--- a/omadrm/drmengine/roap/src/JoinDomainReq.cpp	Tue Feb 02 00:21:44 2010 +0200
+++ b/omadrm/drmengine/roap/src/JoinDomainReq.cpp	Fri Apr 16 15:14:55 2010 +0300
@@ -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 ||