From 25fb34c76a42858dc732250b769bb08324d3a996 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Sun, 28 Oct 2012 19:35:19 +0000 Subject: - fixed some issues in own info loading - fixed avatar services git-svn-id: http://svn.miranda-ng.org/main/trunk@2105 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_contacts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/Skype/src/skype_contacts.cpp') diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index 26e3ea530c..a83ee412da 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -76,9 +76,9 @@ void CSkypeProto::UpdateContactBirthday(HANDLE hContact, CContact::Ref contact) uint data; contact->GetPropBirthday(data); TCHAR date[9]; - _itot_s(data, date, 10); if (data > 0) { + _itot_s(data, date, 10); INT day, month, year; _stscanf(date, _T("%04d%02d%02d"), &year, &month, &day); this->SetSettingByte(hContact, "BirthDay", day); -- cgit v1.2.3