~ubuntu-branches/ubuntu/utopic/patch/utopic-security

« back to all changes in this revision

Viewing changes to lib/getopt1.c

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2013-01-03 17:34:45 UTC
  • mfrom: (1.2.3)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20130103173445-i46hggipf8rfteiz
Tags: 2.7.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* getopt_long and getopt_long_only entry points for GNU getopt.
2
 
   Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2011 Free Software
 
2
   Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2012 Free Software
3
3
   Foundation, Inc.
4
4
   This file is part of the GNU C Library.
5
5
 
141
141
          break;
142
142
 
143
143
        case 'c':
144
 
          printf ("option c with value `%s'\n", optarg);
 
144
          printf ("option c with value '%s'\n", optarg);
145
145
          break;
146
146
 
147
147
        case 'd':
148
 
          printf ("option d with value `%s'\n", optarg);
 
148
          printf ("option d with value '%s'\n", optarg);
149
149
          break;
150
150
 
151
151
        case '?':