~ubuntu-dev/ubuntu/lucid/dovecot/lucid-201002101901

« back to all changes in this revision

Viewing changes to src/lib-settings/settings.c

  • Committer: Bazaar Package Importer
  • Author(s): Marco Nenciarini
  • Date: 2009-12-17 10:52:53 UTC
  • mfrom: (1.13.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: james.westby@ubuntu.com-20091217105253-guybg5b34vmits39
* New upstream release.
* debian/patches/gold-fix.patch: Removed. Fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
 
247
247
                if (len > 0 && line[len-1] == '\\') {
248
248
                        /* continues in next line */
249
 
                        line[len-1] = '\0';
250
 
                        str_append(full_line, line);
 
249
                        len--;
 
250
                        while (IS_WHITE(line[len-1]))
 
251
                                len--;
 
252
                        str_append_n(full_line, line, len);
 
253
                        str_append_c(full_line, ' ');
251
254
                        continue;
252
255
                }
253
256
                if (str_len(full_line) > 0) {