]> source.dussan.org Git - rspamd.git/commitdiff
[Refactor] Correct misspelled function name in Rspamd agent for Exim
authorAlexander Moisseev <moiseev@mezonplus.ru>
Wed, 28 Jun 2017 07:49:56 +0000 (10:49 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Wed, 28 Jun 2017 07:49:56 +0000 (10:49 +0300)
contrib/exim/local_scan.c

index 522750144d6f5d1331386a5f3982dbea0dd22fc0..1ac52f52a21204bac7399000517ef06cd4c7550d 100644 (file)
@@ -175,7 +175,7 @@ int FakeSMTPCommand (socket_t sock,
 }
 
 
-static int writen (socket_t fd, const char *vptr, int n)
+static int written (socket_t fd, const char *vptr, int n)
 {
     size_t nleft;
     int nwritten;
@@ -263,7 +263,7 @@ static int SendEnvelope (char *sFile)
         if (FakeSMTPCommand (sock, "\r\n", "", sFile, 1, 0) != _OK)
             return ERR_WRITE;
             
-        if (writen (sock, psBuf, bytesRead) != bytesRead)
+        if (written (sock, psBuf, bytesRead) != bytesRead)
             return ERR_WRITE;
     }
     else