Removed unused parameter from mbx_copy().
authormarkus schnalke <meillo@marmaro.de>
Fri, 3 Feb 2012 16:02:11 +0000 (17:02 +0100)
committermarkus schnalke <meillo@marmaro.de>
Fri, 3 Feb 2012 16:02:11 +0000 (17:02 +0100)
h/dropsbr.h
uip/dropsbr.c
uip/packf.c
uip/rcvpack.c
uip/slocal.c

index 2349dbb..2b21f10 100644 (file)
@@ -6,5 +6,5 @@
 ** prototypes
 */
 int mbx_open(char *, uid_t, gid_t, mode_t);
-int mbx_copy(char *, int, int, char *, int);
+int mbx_copy(char *, int, int, int);
 int mbx_close(char *, int);
index 007186e..dd7a2df 100644 (file)
@@ -104,7 +104,7 @@ mbx_open(char *file, uid_t uid, gid_t gid, mode_t mode)
 ** Append message to end of file or maildrop.
 */
 int
-mbx_copy(char *mailbox, int md, int fd, char *text, int noisy)
+mbx_copy(char *mailbox, int md, int fd, int noisy)
 {
        int i, j;
        off_t start, stop;
@@ -122,18 +122,11 @@ mbx_copy(char *mailbox, int md, int fd, char *text, int noisy)
        }
        start = lseek(md, (off_t) 0, SEEK_CUR);
 
-       /* If text is given, we add it to top of message */
-       if (text) {
-               i = strlen(text);
-               if (write(md, text, i) != i)
-                       return NOTOK;
-       }
-
        for (j = 0; fgets(buffer, sizeof(buffer), fp) != NULL; j++) {
                /*
                ** Check the first line, and make some changes.
                */
-               if (j == 0 && !text) {
+               if (j == 0) {
                        /*
                        ** Change the "Return-Path:" field
                        ** (if in first line) back to "From ".
index 071cc3d..62c09da 100644 (file)
@@ -145,8 +145,7 @@ main(int argc, char **argv)
                                break;
                        }
 
-                       if (mbx_copy(file, md, fd, NULL, 1)
-                                       == NOTOK)
+                       if (mbx_copy(file, md, fd, 1) == NOTOK)
                                adios(file, "error writing to file");
 
                        close(fd);
index fd1c2aa..85de619 100644 (file)
@@ -78,7 +78,7 @@ main(int argc, char **argv)
                done(RCV_MBX);
 
        /* append the message */
-       if (mbx_copy(file, md, fileno(stdin), NULL, 0) == NOTOK) {
+       if (mbx_copy(file, md, fileno(stdin), 0) == NOTOK) {
                mbx_close(file, md);
                done(RCV_MBX);
        }
index 7b148e8..7546cdd 100644 (file)
@@ -1068,8 +1068,7 @@ usr_file(int fd, char *mailbox)
        lseek(fd, (off_t) 0, SEEK_SET);
 
        /* append message to file */
-       if (mbx_copy(mailbox, md, fd, NULL, verbose)
-                       == -1) {
+       if (mbx_copy(mailbox, md, fd, verbose) == -1) {
                if (verbose)
                        adorn("", "error writing to:");
                return -1;