Commit 218bf08a 218bf08a7bb4c9ffb9762d165ac434b316ce14d8 by Sergey Poznyakoff

Minor stylistic changes

1 parent 17a229a4
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc. 2 Copyright (C) 1999, 2000, 2001, 2002, 2005,
3 2006 Free Software Foundation, Inc.
3 4
4 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
...@@ -64,7 +65,8 @@ sieve_action_fileinto (mu_sieve_machine_t mach, mu_list_t args, mu_list_t tags) ...@@ -64,7 +65,8 @@ sieve_action_fileinto (mu_sieve_machine_t mach, mu_list_t args, mu_list_t tags)
64 mu_sieve_error (mach, _("cannot get filename!")); 65 mu_sieve_error (mach, _("cannot get filename!"));
65 mu_sieve_abort (mach); 66 mu_sieve_abort (mach);
66 } 67 }
67 mu_sieve_log_action (mach, "FILEINTO", _("delivering into %s"), val->v.string); 68 mu_sieve_log_action (mach, "FILEINTO",
69 _("delivering into %s"), val->v.string);
68 if (mu_sieve_is_dry_run (mach)) 70 if (mu_sieve_is_dry_run (mach))
69 return 0; 71 return 0;
70 72
......
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001, 2002, 2004, 2 Copyright (C) 1999, 2000, 2001, 2002, 2004,
3 2005 Free Software Foundation, Inc. 3 2005, 2006 Free Software Foundation, Inc.
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
...@@ -42,7 +42,8 @@ mu_sieve_require (mu_list_t slist) ...@@ -42,7 +42,8 @@ mu_sieve_require (mu_list_t slist)
42 return; 42 return;
43 } 43 }
44 44
45 for (mu_iterator_first (itr); !mu_iterator_is_done (itr); mu_iterator_next (itr)) 45 for (mu_iterator_first (itr);
46 !mu_iterator_is_done (itr); mu_iterator_next (itr))
46 { 47 {
47 char *name; 48 char *name;
48 int (*reqfn) (mu_sieve_machine_t mach, const char *name) = NULL; 49 int (*reqfn) (mu_sieve_machine_t mach, const char *name) = NULL;
......
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc. 2 Copyright (C) 1999, 2000, 2001, 2002, 2005,
3 2006 Free Software Foundation, Inc.
3 4
4 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
......