~ubuntu-branches/ubuntu/karmic/openafs/karmic-updates

« back to all changes in this revision

Viewing changes to src/comerr/compile_et.c

  • Committer: Bazaar Package Importer
  • Author(s): Russ Allbery
  • Date: 2008-09-22 19:07:02 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080922190702-59m13d7kn6gkw32d
Tags: 1.4.7.dfsg1-6
* Apply upstream patch to free /proc entries in the correct order.
  Thanks, Marc Dionne.  (Closes: #493914)
* Apply upstream deltas to support 2.6.27 kernels and to stop using
  COMMON_KERN_CFLAGS for all 2.6 kernels uniformly, which fixes
  problems on amd64 with newer kernels.  Thanks, Björn Torkelsson.
  (LP: #267504)
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #493120)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include <afs/afsutil.h>
14
14
 
15
15
RCSID
16
 
    ("$Header: /cvs/openafs/src/comerr/compile_et.c,v 1.14 2003/11/29 22:08:10 jaltman Exp $");
 
16
    ("$Header: /cvs/openafs/src/comerr/compile_et.c,v 1.14.2.1 2007/04/10 18:43:42 shadow Exp $");
17
17
 
18
18
#include <stdio.h>
19
19
#include <stdlib.h>
375
375
        fputs("static struct et_list etlink = { 0, &et};\n\n", cfile);
376
376
        fprintf(cfile, "void initialize_%s_error_table(void) {\n",
377
377
                table_name);
378
 
        fputs("    add_to_error_table(&etlink);\n", cfile);
 
378
        fputs("    afs_add_to_error_table(&etlink);\n", cfile);
379
379
        fputs("}\n", cfile);
380
380
        fclose(cfile);
381
381