~ubuntu-branches/ubuntu/breezy/uucp/breezy

« back to all changes in this revision

Viewing changes to uuconf/rdlocs.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
/* rdlocs.c
2
2
   Get the locations of systems in the Taylor UUCP configuration files.
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_rdlocs_rcsid[] = "$Id: rdlocs.c,v 1.7 1995/06/21 19:23:52 ian Rel $";
 
28
const char _uuconf_rdlocs_rcsid[] = "$Id: rdlocs.c,v 1.10 2002/03/05 19:10:42 ian Rel $";
30
29
#endif
31
30
 
32
31
#include <errno.h>
186
185
static int
187
186
itsystem (pglobal, argc, argv, pvar, pinfo)
188
187
     pointer pglobal;
189
 
     int argc;
 
188
     int argc ATTRIBUTE_UNUSED;
190
189
     char **argv;
191
190
     pointer pvar;
192
191
     pointer pinfo;
239
238
     pointer pglobal;
240
239
     int argc;
241
240
     char **argv;
242
 
     pointer pvar;
 
241
     pointer pvar ATTRIBUTE_UNUSED;
243
242
     pointer pinfo;
244
243
{
245
244
  struct sglobal *qglobal = (struct sglobal *) pglobal;
293
292
static int
294
293
itmyname (pglobal, argc, argv, pvar, pinfo)
295
294
     pointer pglobal;
296
 
     int argc;
297
 
     char **argv;
298
 
     pointer pvar;
299
 
     pointer pinfo;
 
295
     int argc ATTRIBUTE_UNUSED;
 
296
     char **argv ATTRIBUTE_UNUSED;
 
297
     pointer pvar ATTRIBUTE_UNUSED;
 
298
     pointer pinfo ATTRIBUTE_UNUSED;
300
299
{
301
300
  struct sglobal *qglobal = (struct sglobal *) pglobal;
302
301