diff --git a/sflphone-common/src/sip/sipaccount.cpp b/sflphone-common/src/sip/sipaccount.cpp
index a0dcc762272df3e588e33a84ad92b2c31cf52d39..7f0e8843cce046b2ea85219a966c67b6276df53c 100644
--- a/sflphone-common/src/sip/sipaccount.cpp
+++ b/sflphone-common/src/sip/sipaccount.cpp
@@ -514,6 +514,10 @@ std::string SIPAccount::getContactHeader (const std::string& address, const std:
         transport = "";
     }
 
+    _displayName = Manager::instance().getConfigString(_accountID, DISPLAY_NAME);
+
+    _debug("Display Name: %s\n", _displayName.c_str());
+
     int len = pj_ansi_snprintf (contact, PJSIP_MAX_URL_SIZE,
 
                                 "%s%s<%s%s%s%s%s%s:%d%s>",
diff --git a/sflphone-common/src/sip/sipaccount.h b/sflphone-common/src/sip/sipaccount.h
index 873647b2d5aacb8acafb9c5ab05bd616917a5d0e..8ad7451fb2b89b4ff74237e1018bc7db4ffe6c21 100644
--- a/sflphone-common/src/sip/sipaccount.h
+++ b/sflphone-common/src/sip/sipaccount.h
@@ -321,7 +321,7 @@ class SIPAccount : public Account
         
         pjsip_transport_type_e _transportType;
 
-		pjsip_transport* _transport;
+	pjsip_transport* _transport;
 
         // Special hack that is not here to stay
         // See #1852
@@ -337,19 +337,19 @@ class SIPAccount : public Account
         // a sip transport. 
         pjsip_tls_setting * _tlsSetting;	                                                  
 
-		// The STUN server name, if applicable
+        // The STUN server name, if applicable
         pj_str_t _stunServerName;	                                                  
 
-		// The STUN server port, if applicable
-		pj_uint16_t _stunPort;
+	// The STUN server port, if applicable
+	pj_uint16_t _stunPort;
         
         // Display Name that can be used in  SIP URI.        
         std::string _displayName;        
 
-		// The actual address we use in the SDP to be contacted
-		// it needs to be per account, otherwise the same address is used for every account
-		std::string _actualSessionAddress;
-		pj_uint16_t _actualSessionPort;
+	// The actual address we use in the SDP to be contacted
+	// it needs to be per account, otherwise the same address is used for every account
+	std::string _actualSessionAddress;
+        pj_uint16_t _actualSessionPort;
 };
 
 #endif