aboutsummaryrefslogtreecommitdiffstats
path: root/src/libfast
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-03-31 17:28:46 +0200
committerTobias Brunner <tobias@strongswan.org>2010-04-06 12:47:40 +0200
commit8b0e09103b5e7e55b20380c44f093b1cef95480c (patch)
tree2b231876b34c525a20ad2b5fc15d8aabb57eba99 /src/libfast
parent9ed6341d3f1f48c9528a21b9d2da83bfc05bb756 (diff)
downloadstrongswan-8b0e09103b5e7e55b20380c44f093b1cef95480c.tar.bz2
strongswan-8b0e09103b5e7e55b20380c44f093b1cef95480c.tar.xz
Adding DBG_LIB to all calls of libstrongswan's version of DBG*.
Diffstat (limited to 'src/libfast')
-rw-r--r--src/libfast/smtp.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/libfast/smtp.c b/src/libfast/smtp.c
index 51771b8cb..4118c74a6 100644
--- a/src/libfast/smtp.c
+++ b/src/libfast/smtp.c
@@ -83,7 +83,7 @@ static int write_cmd(private_smtp_t *this, char *fmt, ...)
if (fprintf(this->f, "%s\n", buf) < 1)
{
- DBG1("sending SMTP command failed");
+ DBG1(DBG_LIB, "sending SMTP command failed");
return 0;
}
return read_response(this);
@@ -96,17 +96,17 @@ METHOD(smtp_t, send_mail, bool,
if (write_cmd(this, "MAIL FROM:<%s>", from) != 250)
{
- DBG1("SMTP MAIL FROM failed");
+ DBG1(DBG_LIB, "SMTP MAIL FROM failed");
return FALSE;
}
if (write_cmd(this, "RCPT TO:<%s>", to) != 250)
{
- DBG1("SMTP RCPT TO failed");
+ DBG1(DBG_LIB, "SMTP RCPT TO failed");
return FALSE;
}
if (write_cmd(this, "DATA") != 354)
{
- DBG1("SMTP DATA failed");
+ DBG1(DBG_LIB, "SMTP DATA failed");
return FALSE;
}
@@ -149,7 +149,7 @@ smtp_t *smtp_create()
s = socket(AF_INET, SOCK_STREAM, 0);
if (s < 0)
{
- DBG1("opening SMTP socket failed: %s", strerror(errno));
+ DBG1(DBG_LIB, "opening SMTP socket failed: %s", strerror(errno));
free(this);
return NULL;
}
@@ -158,7 +158,7 @@ smtp_t *smtp_create()
addr.sin_port = htons(25);
if (connect(s, (struct sockaddr*)&addr, sizeof(addr)) < 0)
{
- DBG1("connecting to SMTP server failed: %s", strerror(errno));
+ DBG1(DBG_LIB, "connecting to SMTP server failed: %s", strerror(errno));
close(s);
free(this);
return NULL;
@@ -166,7 +166,8 @@ smtp_t *smtp_create()
this->f = fdopen(s, "a+");
if (!this->f)
{
- DBG1("opening stream to SMTP server failed: %s", strerror(errno));
+ DBG1(DBG_LIB, "opening stream to SMTP server failed: %s",
+ strerror(errno));
close(s);
free(this);
return NULL;
@@ -174,7 +175,7 @@ smtp_t *smtp_create()
if (read_response(this) != 220 ||
write_cmd(this, "EHLO localhost") != 250)
{
- DBG1("SMTP EHLO failed");
+ DBG1(DBG_LIB, "SMTP EHLO failed");
fclose(this->f);
free(this);
return NULL;