~ubuntu-branches/ubuntu/feisty/openafs/feisty

« back to all changes in this revision

Viewing changes to src/vol/volume.c

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2007-03-26 18:56:55 UTC
  • Revision ID: package-import@ubuntu.com-20070326185655-osce8n0y0dptgurh
* New upstream release.  (Closes: #415699)
  - Support newer Linux kernels.  (Closes: #409797, #410120)
  - Add aklog fallbacks for null realms to support the referral
    capability in MIT Kerberos 1.6 and later.  (Closes: #410314)
* Apply patch from Thomas Sesselmann to support setting options to pass
  to bosserver in /etc/default/openafs-fileserver.  (Closes: #409357)
* Remove the rx_Init calls in the PAM module.  The internal counters
  that had to be initialized that way have been removed.
* Now that we're running regen.sh as part of the build process, only
  patch the Autoconf source files and not the generated output to make
  the diff easier to audit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <afs/param.h>
21
21
 
22
22
RCSID
23
 
    ("$Header: /cvs/openafs/src/vol/volume.c,v 1.35.2.8 2006/08/24 20:21:49 shadow Exp $");
 
23
    ("$Header: /cvs/openafs/src/vol/volume.c,v 1.35.2.9 2006/10/22 02:02:01 jaltman Exp $");
24
24
 
25
25
#include <rx/xdr.h>
26
26
#include <afs/afsint.h>
317
317
            dpq = (diskpartition_queue_t *) malloc(sizeof(struct diskpartition_queue_t));
318
318
            assert(dpq != NULL);
319
319
            dpq->diskP = diskP;
320
 
            queue_Prepend(&params,dpq);
 
320
            queue_Append(&params,dpq);
321
321
        }
322
322
 
323
323
        assert(pthread_attr_init(&attrs) == 0);