Rename header to print_pem_stamp in the global namespace to avoid -Wshadow warning

Based on a report from Matthias Dieter Wallnöfer.
This commit is contained in:
Love Hornquist Astrand
2009-10-03 11:24:03 -07:00
parent 8457216616
commit 64835d0836

View File

@@ -66,7 +66,7 @@ _hx509_write_file(const char *fn, const void *data, size_t length)
*/
static void
header(FILE *f, const char *type, const char *str)
print_pem_stamp(FILE *f, const char *type, const char *str)
{
fprintf(f, "-----%s %s-----\n", type, str);
}
@@ -82,7 +82,7 @@ hx509_pem_write(hx509_context context, const char *type,
#define ENCODE_LINE_LENGTH 54
header(f, "BEGIN", type);
print_pem_stamp(f, "BEGIN", type);
while (headers) {
fprintf(f, "%s: %s\n%s",
@@ -110,7 +110,7 @@ hx509_pem_write(hx509_context context, const char *type,
free(line);
}
header(f, "END", type);
print_pem_stamp(f, "END", type);
return 0;
}