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

« back to all changes in this revision

Viewing changes to src/vol/purge.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:
17
17
#include <afs/param.h>
18
18
 
19
19
RCSID
20
 
    ("$Header: /cvs/openafs/src/vol/purge.c,v 1.9.2.2 2006/07/13 18:20:32 shadow Exp $");
 
20
    ("$Header: /cvs/openafs/src/vol/purge.c,v 1.9.2.3 2007/10/30 15:24:11 shadow Exp $");
21
21
 
22
22
#include <stdio.h>
23
23
#ifdef AFS_NT40_ENV
28
28
#include <sys/file.h>
29
29
#include <sys/time.h>
30
30
#endif
31
 
#ifdef HAVE_STRING_H
32
31
#include <string.h>
33
 
#else
34
 
#ifdef HAVE_STRINGS_H
35
 
#include <strings.h>
36
 
#endif
37
 
#endif
38
32
#include <sys/stat.h>
39
33
#include <afs/assert.h>
40
34