Commit 27c42053 27c42053d36235e3a1d71d018590384c1818ff06 by Sergey Poznyakoff

removed break from the loop

1 parent e3441a83
Showing 1 changed file with 1 additions and 2 deletions
...@@ -156,8 +156,7 @@ mail_z (int argc, char **argv) ...@@ -156,8 +156,7 @@ mail_z (int argc, char **argv)
156 156
157 for (i = 0; i < nlines; i++) 157 for (i = 0; i < nlines; i++)
158 { 158 {
159 if (mail_from(0, NULL)) 159 mail_from(0, NULL);
160 break;
161 cursor++; 160 cursor++;
162 } 161 }
163 162
......