~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_getopt.c

  • Committer: Brian Aker
  • Date: 2008-08-03 22:27:54 UTC
  • mfrom: (236.1.66 codestyle)
  • Revision ID: brian@tangent.org-20080803222754-yhkw8plul06oqvhe
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1141
1141
      putchar(' ');
1142
1142
    if (optp->comment && *optp->comment)
1143
1143
    {
1144
 
      const char *comment= optp->comment, *end= strend(comment);
 
1144
      const char *comment= gettext(optp->comment), *end= strend(comment);
1145
1145
 
1146
1146
      while ((uint) (end - comment) > comment_space)
1147
1147
      {
1161
1161
    {
1162
1162
      if (optp->def_value != 0)
1163
1163
      {
1164
 
        printf("%*s(Defaults to on; use --skip-%s to disable.)\n", name_space, "", optp->name);
 
1164
        printf(gettext("%*s(Defaults to on; use --skip-%s to disable.)\n"), name_space, "", optp->name);
1165
1165
      }
1166
1166
    }
1167
1167
  }