~ubuntu-branches/ubuntu/oneiric/openafs/oneiric-201305130334

« back to all changes in this revision

Viewing changes to src/aklog/aklog.h

  • 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:
1
1
/* 
2
 
 * $Id: aklog.h,v 1.1.2.5 2006/04/05 15:42:13 shadow Exp $
 
2
 * $Id: aklog.h,v 1.1.2.7 2008/04/01 17:44:52 shadow Exp $
3
3
 *
4
4
 * Copyright 1990,1991 by the Massachusetts Institute of Technology
5
5
 * For distribution and copying rights, see the file "mit-copyright.h"
8
8
#ifndef __AKLOG_H__
9
9
#define __AKLOG_H__
10
10
 
11
 
#if !defined(lint) && !defined(SABER)
12
 
static char *rcsid_aklog_h = "$Id: aklog.h,v 1.1.2.5 2006/04/05 15:42:13 shadow Exp $";
13
 
#endif /* lint || SABER */
14
 
 
15
11
#include <krb5.h>
16
12
#include "linked_list.h"
17
13
#include <afsconfig.h>
51
47
#define INST_SZ 40
52
48
#endif /* INST_SZ */
53
49
 
 
50
#ifndef u_int32_t
 
51
#define u_int32_t uint32_t
 
52
#endif
 
53
 
54
54
struct ktext {
55
55
    unsigned int length;
56
56
    unsigned char dat[MAX_KTXT_LEN];