From: Jeffrey Altman Date: Wed, 15 Jul 2009 05:53:32 +0000 (-0400) Subject: Correct pointer type of 'next' field within struct volinfo X-Git-Tag: openafs-stable-1_4_12pre1~70 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=6983ea2cbdece05023637b69f4cdb9b5932c6d8a;p=packages%2Fo%2Fopenafs.git Correct pointer type of 'next' field within struct volinfo Reported by Marcus Watts The next field of struct volinfo is supposed to be a pointer to a struct volinfo. LICENSE IPL10 Reviewed-on: http://gerrit.openafs.org/87 Verified-by: Russ Allbery Reviewed-by: Russ Allbery (cherry picked from commit 47e31b020c3393fdbda9dddd99269482693cfb6c) Change-Id: I719f6417abc68d5ab2595241b247eeb83cf7affc Reviewed-on: http://gerrit.openafs.org/930 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/src/bucoord/restore.c b/src/bucoord/restore.c index b2f1dcb9a..6a337cf67 100644 --- a/src/bucoord/restore.c +++ b/src/bucoord/restore.c @@ -56,7 +56,7 @@ struct dumpinfo { }; struct volinfo { - struct voli *next; + struct volinfo *next; char *volname; afs_int32 server; afs_int32 partition;