From: Derrick Brashear Date: Tue, 13 Dec 2011 17:19:48 +0000 (-0500) Subject: vos: fix code to not triple-negate X-Git-Tag: upstream/1.8.0_pre1^2~2946 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=44045af35a6ae44880655115685e0755d6a0c828;p=packages%2Fo%2Fopenafs.git vos: fix code to not triple-negate !!! is !. just write it that way. Change-Id: I8e788177280c4a1d78cedaffd144a5c4ecba28f2 Reviewed-on: http://gerrit.openafs.org/6252 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/volser/vsprocs.c b/src/volser/vsprocs.c index 94df88469..6af3bd411 100644 --- a/src/volser/vsprocs.c +++ b/src/volser/vsprocs.c @@ -3804,7 +3804,7 @@ UV_ReleaseVolume(afs_uint32 afromvol, afs_uint32 afromserver, nservers + 1); results.manyResults_val = (afs_int32 *) malloc(sizeof(afs_int32) * nservers + 1); - if (!replicas || !times || !!!results.manyResults_val || !toconns) + if (!replicas || !times || !results.manyResults_val || !toconns) ONERROR0(ENOMEM, "Failed to create transaction on the release clone\n");