From 6983ea2cbdece05023637b69f4cdb9b5932c6d8a Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Wed, 15 Jul 2009 01:53:32 -0400 Subject: [PATCH] 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 --- src/bucoord/restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5