From 207648e32525d1daf1708cb763506b0d16537c9d Mon Sep 17 00:00:00 2001 From: cxl Date: Wed, 25 Apr 2012 10:27:31 +0000 Subject: [PATCH] .Core/SMTP: minor fix git-svn-id: svn://ultimatepp.org/upp/trunk@4855 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/SMTP/SMTP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/SMTP/SMTP.h b/uppsrc/Core/SMTP/SMTP.h index ebc5906e9..65e721394 100644 --- a/uppsrc/Core/SMTP/SMTP.h +++ b/uppsrc/Core/SMTP/SMTP.h @@ -66,7 +66,7 @@ public: Smtp& NoHeaderSep() { no_header_sep = true; return *this; } Smtp& AttachFile(const char *filename, const char *mime = 0); Smtp& Attach(const char *name, const String& data, const char *mime = 0); - Smpt& AddHeader(const String& text) { add_header << text << "\r\n"; } + Smtp& AddHeader(const String& text) { add_header << text << "\r\n"; } Smtp& AddHeader(const char *id, const String& txt) { add_header << id << ": " << txt << "\r\n"; } Smtp& New();