summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2016-12-30 16:04:04 +0300
committerGitHub <noreply@github.com>2016-12-30 16:04:04 +0300
commitea67c083c95a12df46bd7229bd8e4fd4f53b1544 (patch)
tree7a8c5a08c4bfc7cf19dde99d0a2b962c4446611a
parent37ae1c46680e624dddddfee816f19cf920f95348 (diff)
parent94bcc72da97bc24c21f0333ee319674351763f91 (diff)
Merge pull request #663 from alabuzhev/alabuzhev-patch-1
Increased name & password size to 256
-rw-r--r--plugins/GmailNotifier/src/stdafx.h6
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);