~ubuntu-branches/ubuntu/trusty/uucp/trusty

« back to all changes in this revision

Viewing changes to uuconf/ugtlin.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Palfrader
  • Date: 2004-12-30 15:30:22 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041230153022-mx4cdr9j3u9bldo3
Tags: 1.07-12
Add cs localisation for debconf templates (closes: #287305).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ugtlin.c
2
2
   Read a line with backslash continuations.
3
3
 
4
 
   Copyright (C) 1992 Ian Lance Taylor
 
4
   Copyright (C) 1992, 2002 Ian Lance Taylor
5
5
 
6
6
   This file is part of the Taylor UUCP uuconf library.
7
7
 
17
17
 
18
18
   You should have received a copy of the GNU Library General Public
19
19
   License along with this library; if not, write to the Free Software
20
 
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
20
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
21
21
 
22
 
   The author of the program may be contacted at ian@airs.com or
23
 
   c/o Cygnus Support, 48 Grove Street, Somerville, MA 02144.
 
22
   The author of the program may be contacted at ian@airs.com.
24
23
   */
25
24
 
26
25
#include "uucnfi.h"
27
26
 
28
27
#if USE_RCS_ID
29
 
const char _uuconf_ugtlin_rcsid[] = "$Id: ugtlin.c,v 1.6 1995/06/21 19:25:06 ian Rel $";
 
28
const char _uuconf_ugtlin_rcsid[] = "$Id: ugtlin.c,v 1.9 2002/03/05 19:10:43 ian Rel $";
30
29
#endif
31
30
 
32
31
/* Read a line from a file with backslash continuations.  This updates
70
69
        ctot = cchars;
71
70
      else
72
71
        {
73
 
          if (*pcline <= ctot + cchars)
 
72
          if (*pcline <= (size_t) (ctot + cchars))
74
73
            {
75
74
              char *znew;
76
75