diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-28 19:35:19 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-28 19:35:19 +0000 |
commit | 25fb34c76a42858dc732250b769bb08324d3a996 (patch) | |
tree | 8709277b454f1c115f0101036d0653629d5afe48 /protocols/Skype/src/skype_contacts.cpp | |
parent | fbfdab9ebf0df810b548e502d93fa3be260acf61 (diff) |
- 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
Diffstat (limited to 'protocols/Skype/src/skype_contacts.cpp')
-rw-r--r-- | protocols/Skype/src/skype_contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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);
|