diff options
author | Alex Alabuzhev <alabuzhev@users.noreply.github.com> | 2016-12-30 12:20:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-30 12:20:28 +0200 |
commit | 94bcc72da97bc24c21f0333ee319674351763f91 (patch) | |
tree | 7a8c5a08c4bfc7cf19dde99d0a2b962c4446611a /plugins/GmailNotifier/src/stdafx.h | |
parent | 37ae1c46680e624dddddfee816f19cf920f95348 (diff) |
Increased name & password size to 256
Diffstat (limited to 'plugins/GmailNotifier/src/stdafx.h')
-rw-r--r-- | plugins/GmailNotifier/src/stdafx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/GmailNotifier/src/stdafx.h b/plugins/GmailNotifier/src/stdafx.h index 10623f9466..b24ccc862c 100644 --- a/plugins/GmailNotifier/src/stdafx.h +++ b/plugins/GmailNotifier/src/stdafx.h @@ -41,8 +41,8 @@ typedef struct s_resultLink{ }resultLink;
typedef struct s_Account{
- char name[64];
- char pass[64];
+ char name[256];
+ char pass[256];
char hosted[64];
MCONTACT hContact;
int oldResults_num;
@@ -88,4 +88,4 @@ int ParsePage(char *, resultLink *); void DeleteResults(resultLink *);
void BuildList(void);
-Account* GetAccountByContact(MCONTACT hContact);
\ No newline at end of file +Account* GetAccountByContact(MCONTACT hContact);
|