apps/smtp: Trivial typo fixes

s/smpt/smtp/g

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Dirk Ziegelmeier <dirk@ziegelmeier.net>
This commit is contained in:
Axel Lin 2017-05-10 13:08:35 +08:00 committed by Dirk Ziegelmeier
parent c03fef9a3c
commit b9d5399ec1

View File

@ -655,7 +655,7 @@ smtp_send_mail_static(const char *from, const char* to, const char* subject,
/** @ingroup smtp /** @ingroup smtp
* Same as smpt_send_mail but takes a struct smtp_send_request as single * Same as smtp_send_mail but takes a struct smtp_send_request as single
* parameter which contains all the other parameters. * parameter which contains all the other parameters.
* To be used with tcpip_callback to send mail from interrupt context or from * To be used with tcpip_callback to send mail from interrupt context or from
* another thread. * another thread.
@ -731,7 +731,7 @@ smtp_verify(const char *data, size_t data_len, u8_t linebreaks_allowed)
} }
#endif /* SMTP_CHECK_DATA */ #endif /* SMTP_CHECK_DATA */
/** Frees the smpt_session and calls the callback function */ /** Frees the smtp_session and calls the callback function */
static void static void
smtp_free(struct smtp_session *s, u8_t result, u16_t srv_err, err_t err) smtp_free(struct smtp_session *s, u8_t result, u16_t srv_err, err_t err)
{ {