blob: 1e09d33b0c3cfdca8f4bbf8272d7a728bbe958e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
diff -ru krb5-1.6.3/src/util/et/compile_et.c krb5-1.6.3+iPhone/src/util/et/compile_et.c
--- krb5-1.6.3/src/util/et/compile_et.c 2003-04-24 03:28:00.000000000 +0000
+++ krb5-1.6.3+iPhone/src/util/et/compile_et.c 2008-06-18 03:20:09.000000000 +0000
@@ -99,7 +99,7 @@
};
static const char warning[] =
- "/*\n * %s:\n * This file is automatically generated; please do not edit it.\n */\n";
+ "/*\n * This file is automatically generated; please do not edit it.\n */\n";
/* pathnames */
char c_file[MAXPATHLEN]; /* output file */
@@ -218,14 +218,14 @@
perror(h_file);
exit(1);
}
- fprintf (hfile, warning, h_file);
+ fprintf (hfile, warning);
cfile = fopen(c_file, "w");
if (cfile == (FILE *)NULL) {
perror(c_file);
exit(1);
}
- fprintf (cfile, warning, c_file);
+ fprintf (cfile, warning);
/* prologue */
if (language == lang_C)
|