From patchwork Wed Aug 9 12:19:32 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arturo Borrero Gonzalez X-Patchwork-Id: 799737 X-Patchwork-Delegate: pablo@netfilter.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netfilter-devel-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xS9Lk2Hq0z9rxm for ; Wed, 9 Aug 2017 22:19:42 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752227AbdHIMTl (ORCPT ); Wed, 9 Aug 2017 08:19:41 -0400 Received: from smtp3.cica.es ([150.214.5.190]:45440 "EHLO smtp.cica.es" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751443AbdHIMTl (ORCPT ); Wed, 9 Aug 2017 08:19:41 -0400 Received: from localhost (unknown [127.0.0.1]) by smtp.cica.es (Postfix) with ESMTP id 534CF51F448 for ; Wed, 9 Aug 2017 12:19:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at cica.es Received: from smtp.cica.es ([127.0.0.1]) by localhost (mail.cica.es [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EKQwpaFsGN1P for ; Wed, 9 Aug 2017 14:19:34 +0200 (CEST) Received: from nfdev2.cica.es (nfdev2.cica.es [IPv6:2a00:9ac0:c1ca:31::221]) (Authenticated sender: servers@cica.es) by smtp.cica.es (Postfix) with ESMTP id E94A351F427 for ; Wed, 9 Aug 2017 14:19:33 +0200 (CEST) Subject: [conntrack-tools PATCH] conntrackd: remove warning for -S From: Arturo Borrero Gonzalez To: netfilter-devel@vger.kernel.org Date: Wed, 09 Aug 2017 14:19:32 +0200 Message-ID: <150228117223.32474.3290205091216581281.stgit@nfdev2.cica.es> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Remove the warning message for the -S option which has been deprecated for years now. Users calling conntrackd with this switch activated will now get an error. Signed-off-by: Arturo Borrero Gonzalez --- src/main.c | 3 --- 1 file changed, 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/src/main.c b/src/main.c index 3b19160..7062e12 100644 --- a/src/main.c +++ b/src/main.c @@ -281,9 +281,6 @@ int main(int argc, char *argv[]) action = STATS; } break; - case 'S': - dlog(LOG_WARNING,"-S option is obsolete. Ignoring."); - break; case 'n': set_operation_mode(&type, REQUEST, argv); action = REQUEST_DUMP;