Changeset 210 for trunk/src/sh_hash.c


Ignore:
Timestamp:
Jan 29, 2009, 7:54:16 PM (16 years ago)
Author:
katerina
Message:

Fix for ticket #136 (compile error); also enhance testsuite to catch compiler warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_hash.c

    r205 r210  
    17781778                  sl_write (pushdata_fd,        "\n", 1);
    17791779                } else {
    1780                   printf (_("\n#Host "));
     1780                  printf ("%s",_("\n#Host "));
    17811781                  printf ("%s", sh.host.name);
    1782                   printf (_(" Version "));
     1782                  printf ("%s",_(" Version "));
    17831783                  printf ("%s", sh_db_version_string);
    1784                   printf (_(" Date "));
     1784                  printf ("%s",_(" Date "));
    17851785                  (void) sh_unix_time(0, timestring, sizeof(timestring));
    17861786                  printf ("%s\n", timestring);
     
    38683868    {
    38693869      if (ListWithDelimiter == S_TRUE)
    3870         printf(_(" no_attr"));
     3870        printf("%s",_(" no_attr"));
    38713871    }
    38723872  putchar('\n');
     
    39613961        res = uncompress(decompressed, &clen, decoded, dlen);
    39623962        if (res == Z_MEM_ERROR)
    3963           { fprintf(stderr, _("Error: Not enough memory\n")); return -1; }
     3963          { fprintf(stderr, "%s",_("Error: Not enough memory\n")); return -1; }
    39643964        if (res == Z_DATA_ERROR)
    3965           { fprintf(stderr, _("Error: Data corrupt or incomplete\n")); return -1; }
     3965          { fprintf(stderr, "%s",_("Error: Data corrupt or incomplete\n")); return -1; }
    39663966      } while (res == Z_BUF_ERROR || clen == clen_o);
    39673967
     
    39733973  (void) linkpath;
    39743974#endif
    3975   fprintf(stderr, _("Error: No data available\n"));
     3975  fprintf(stderr, "%s",_("Error: No data available\n"));
    39763976  return -1;
    39773977}
     
    39913991  if (sl_is_suid())
    39923992    {
    3993       fprintf(stderr, _("ERROR: insufficient privilege\n"));
     3993      fprintf(stderr, "%s",_("ERROR: insufficient privilege\n"));
    39943994      _exit (EXIT_FAILURE);
    39953995      return -1; /* for Mac OSX compiler */
     
    40474047              else
    40484048                {
    4049                   fprintf(stderr, _("File is a link\n"));
     4049                  fprintf(stderr, "%s",_("File is a link\n"));
    40504050                  _exit(EXIT_FAILURE);
    40514051                  return -1;
     
    40684068  if (flag == 0)
    40694069    {
    4070       fprintf(stderr, _("File not found\n"));
     4070      fprintf(stderr, "%s",_("File not found\n"));
    40714071      _exit(EXIT_FAILURE);
    40724072    }
Note: See TracChangeset for help on using the changeset viewer.