]> git.marmaro.de Git - mmh/commitdiff
remove last rests of done in uip
authorPhilipp Takacs <philipp@bureaucracy.de>
Sat, 17 Jan 2015 22:43:28 +0000 (23:43 +0100)
committerPhilipp Takacs <philipp@bureaucracy.de>
Sat, 17 Jan 2015 23:49:38 +0000 (00:49 +0100)
At some points done was used as callback funktion.

uip/folder.c
uip/inc.c
uip/refile.c

index 92ee49624e18849800b1dfe324860bdba807c6aa..e46519b5aa723a43b9ebec0df5fdbc015113b018 100644 (file)
@@ -367,7 +367,7 @@ main(int argc, char **argv)
                ** Check if folder exists.  If not, then see if
                ** we should create it, or just exit.
                */
-               create_folder(toabsdir(folder), fcreat, done);
+               create_folder(toabsdir(folder), fcreat, exit);
 
                if (get_folder_info(folder, msg) && argfolder) {
                        /* update current folder */
index 159e0108d112d7bd3b1e0a1acb5fbcf51cb5af85..213cc5dd61de2b55fab71863c1b639c0bcc2debe 100644 (file)
--- a/uip/inc.c
+++ b/uip/inc.c
@@ -290,7 +290,7 @@ main(int argc, char **argv)
        if ((maildir_copy = strdup(maildir)) == NULL)
                adios(maildir, "error allocating memory to copy maildir");
 
-       create_folder(maildir, noisy ? 0 : 1, done);
+       create_folder(maildir, noisy ? 0 : 1, exit);
 
        if (chdir(maildir) == NOTOK)
                adios(maildir, "unable to change directory to");
index cdada9baf5dfef1abdb38f9ef49f7100606723c2..96f355a610f2d4de977763522617d3170a192b47 100644 (file)
@@ -230,7 +230,7 @@ opnfolds(struct st_fold *folders, int nfolders)
                chdir(toabsdir("+"));
                strncpy(nmaildir, toabsdir(fp->f_name), sizeof(nmaildir));
 
-               create_folder(nmaildir, 0, done);
+               create_folder(nmaildir, 0, exit);
 
                if (chdir(nmaildir) == NOTOK)
                        adios(nmaildir, "unable to change directory to");