mount: removed unused lable

Commit f054365d removed the unnecessary bind() call
but did not remove the error lable.

Signed-off-by: Steve Dickson <steved@redhat.com>
diff --git a/utils/mount/network.c b/utils/mount/network.c
index bfda5c4..ed2f825 100644
--- a/utils/mount/network.c
+++ b/utils/mount/network.c
@@ -460,17 +460,6 @@
 	close(so);
 	return RPC_ANYSOCK;
 
-err_bind:
-	rpc_createerr.cf_stat = RPC_SYSTEMERROR;
-	rpc_createerr.cf_error.re_errno = errno;
-	if (verbose) {
-		nfs_error(_("%s: Unable to bind to %s socket: errno %d (%s)\n"),
-			progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
-			errno, strerror(errno));
-	}
-	close(so);
-	return RPC_ANYSOCK;
-
 err_connect:
 	rpc_createerr.cf_stat = RPC_SYSTEMERROR;
 	rpc_createerr.cf_error.re_errno = errno;