From 47e31b020c3393fdbda9dddd99269482693cfb6c 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 --- 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 bb379e9fd..690ef336f 100644 --- a/src/bucoord/restore.c +++ b/src/bucoord/restore.c @@ -58,7 +58,7 @@ struct dumpinfo { }; struct volinfo { - struct voli *next; + struct volinfo *next; char *volname; afs_int32 server; afs_int32 partition; -- 2.39.5