From patchwork Wed Sep 21 22:08:39 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Gunthorpe X-Patchwork-Id: 9344331 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id EB0A5601C2 for ; Wed, 21 Sep 2016 22:32:33 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 070052A2F4 for ; Wed, 21 Sep 2016 22:32:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EFB772A346; Wed, 21 Sep 2016 22:32:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AA7B52A2F4 for ; Wed, 21 Sep 2016 22:32:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934248AbcIUWcc (ORCPT ); Wed, 21 Sep 2016 18:32:32 -0400 Received: from quartz.orcorp.ca ([184.70.90.242]:41777 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934051AbcIUWcc (ORCPT ); Wed, 21 Sep 2016 18:32:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=obsidianresearch.com; s=rsa1; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=dW+foxX9TmHUcu+mhV2gjbmmLWY5LaWhhcLLR9g0+Ow=; b=aYv8Wtm91yjiYThYF/4V2arvoChKQyuNcSGS65UQDUC5+ohdztLHmPZo6pTfW5ceUyx0gXNvGRYQmO9B9JVnPwhMpJIfpblZUdZXIqGagQKK5Z96jk8Lar4RCwn2rRSBidcDVkHyHrjVM/VOhDgkZzlll0ouobxsapCUwcBnme4=; Received: from [10.0.0.151] (helo=jggl.edm.orcorp.ca) by quartz.orcorp.ca with esmtps (TLS1.2:ECDHE_RSA_AES_128_CBC_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1bmphG-0003vd-DO; Wed, 21 Sep 2016 16:08:54 -0600 From: Jason Gunthorpe To: linux-rdma@vger.kernel.org Cc: Sean Hefty Subject: [PATCH 13/23] rdmacm: Fix leading \'s in rcopy man page Date: Wed, 21 Sep 2016 16:08:39 -0600 Message-Id: <1474495729-17604-14-git-send-email-jgunthorpe@obsidianresearch.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1474495729-17604-1-git-send-email-jgunthorpe@obsidianresearch.com> References: <1474495729-17604-1-git-send-email-jgunthorpe@obsidianresearch.com> X-Broken-Reverse-DNS: no host name found for IP address 10.0.0.151 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Debian's Lintian remarks: W: rdma-plumbing: manpage-has-errors-from-man usr/share/man/man1/rcopy.1.gz 15: warning: numeric expression expected (got `u') And indeed the man page displays corrupted. The leading \ is only needed if the text starts with - so drop it on all other cases. Signed-off-by: Jason Gunthorpe --- librdmacm/man/rcopy.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/librdmacm/man/rcopy.1 b/librdmacm/man/rcopy.1 index a5ad76aa8742..e875458bf162 100644 --- a/librdmacm/man/rcopy.1 +++ b/librdmacm/man/rcopy.1 @@ -12,13 +12,13 @@ Uses sockets over RDMA interface to copy a source file to the specified destination. .SH "OPTIONS" .TP -\source +source The name and path of the source file to copy. .TP -\server +server The name or address of the destination server. .TP -\:destination +:destination An optional destination filename and path. If not given, the destination filename will match that of the source. .TP