diff options
Diffstat (limited to 'plugins/YAMN/proto/pop3/pop3.h')
-rw-r--r-- | plugins/YAMN/proto/pop3/pop3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/YAMN/proto/pop3/pop3.h b/plugins/YAMN/proto/pop3/pop3.h index faa6bd6195..1f7f2ea737 100644 --- a/plugins/YAMN/proto/pop3/pop3.h +++ b/plugins/YAMN/proto/pop3/pop3.h @@ -23,7 +23,7 @@ class CPop3Client {
public:
CPop3Client(): NetClient(NULL), Stopped(FALSE) {}
- ~CPop3Client() {if(NetClient!=NULL) delete NetClient;}
+ ~CPop3Client() {if (NetClient!=NULL) delete NetClient;}
char* Connect(const char* servername,const int port=110,BOOL UseSSL=FALSE, BOOL NoTLS=FALSE);
char* RecvRest(char* prev,int mode,int size=65536);
|