Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Nov 1996 06:10:01 -0800 (PST)
From:      Tor Egge <Tor.Egge@idt.ntnu.no>
To:        freebsd-bugs
Subject:   Re: bin/1974: amd crashes with signal 11
Message-ID:  <199611101410.GAA10552@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

The following reply was made to PR bin/1974; it has been noted by GNATS.

From: Tor Egge <Tor.Egge@idt.ntnu.no>
To: FreeBSD-gnats-submit@freebsd.org
Cc:  Subject: Re: bin/1974: amd crashes with signal 11
Date: Sun, 10 Nov 1996 15:08:11 +0100

 This patch seems to fix the problem:
 
 Index: afs_ops.c
 ===================================================================
 RCS file: /export/akg1/cvs/src/usr.sbin/amd/amd/afs_ops.c,v
 retrieving revision 1.3
 diff -u -r1.3 afs_ops.c
 --- afs_ops.c	1995/06/27 11:07:23	1.3
 +++ afs_ops.c	1996/11/09 23:21:50
 @@ -1545,8 +1545,8 @@
  		return new_mp;
  	}
  
 -	if (error && (cp->mp->am_mnt->mf_ops == &efs_ops))
 -		cp->mp->am_error = error;
 +	if (error && (new_mp->am_mnt->mf_ops == &efs_ops))
 +		new_mp->am_error = error;
  
  	assign_error_mntfs(new_mp);
  
 
 
 - Tor Egge



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199611101410.GAA10552>