aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'smtp.c')
-rw-r--r--smtp.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/smtp.c b/smtp.c
index 1e8de950..6874705f 100644
--- a/smtp.c
+++ b/smtp.c
@@ -104,7 +104,7 @@ static int SMTP_check(int socket,char *argbuf)
int ok;
char buf[SMTPBUFSIZE];
- if ((ok = SMTP_Gets(socket, buf, sizeof(buf)-1)) > 0) {
+ if ((ok = read(socket, buf, sizeof(buf)-1)) > 0) {
buf[ok] = '\0';
if (outlevel == O_VERBOSE)
fprintf(stderr, "SMTP< %s", buf);
@@ -149,10 +149,4 @@ int SMTP_ok(int socket,char *argbuf)
return ok;
}
-int SMTP_Gets(int socket,char *buf,int sz)
-/* gets a line from the SMTP connection, returns bytes read */
-{
- return read(socket,buf,sz);
-}
-
/* smtp.c ends here */