diff options
author | Jay Freeman <saurik@saurik.com> | 2008-08-18 18:34:19 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-08-18 18:34:19 +0000 |
commit | fee2b19a1ee9edae61bc7b9a2da89244caf8adce (patch) | |
tree | 5711a981064404ff1909ebd8de8bcd6db0f92830 /data | |
parent | 71131aa34e8acd8e5654a33201006e13a8d21078 (diff) |
Further idempotencized krb5.
git-svn-id: http://svn.telesphoreo.org/trunk@428 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data')
-rw-r--r-- | data/krb5/filename.diff | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/krb5/filename.diff b/data/krb5/filename.diff new file mode 100644 index 000000000..1e09d33b0 --- /dev/null +++ b/data/krb5/filename.diff @@ -0,0 +1,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) |