From patchwork Thu Feb 9 10:02:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Lindner X-Patchwork-Id: 1519 Return-Path: Received: from nm12.bullet.mail.ukl.yahoo.com (nm12.bullet.mail.ukl.yahoo.com [217.146.183.186]) by open-mesh.org (Postfix) with SMTP id 4F512600854 for ; Thu, 9 Feb 2012 11:02:25 +0100 (CET) Authentication-Results: open-mesh.org; dkim=pass (1024-bit key) header.i=@yahoo.de; dkim-adsp=none Received: from [217.146.183.180] by nm12.bullet.mail.ukl.yahoo.com with NNFMP; 09 Feb 2012 10:02:24 -0000 Received: from [77.238.184.74] by tm11.bullet.mail.ukl.yahoo.com with NNFMP; 09 Feb 2012 10:02:24 -0000 Received: from [127.0.0.1] by smtp143.mail.ukl.yahoo.com with NNFMP; 09 Feb 2012 10:02:24 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1328781744; bh=p4CYxqxo4KjV4kTi93gjM1b1x8k9fRW1jFj86vChEEc=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:From:To:Cc:Subject:Date:Message-Id:X-Mailer; b=QoScFGCJiVEAh8pMwYmU6ggM0LvPKtB60qTGSvUs7PvfDIVikF/fgS2zrUM/hpmzQAmNDqNHdq0Z77C/obHBNRfT5ncxL73cmwoQsSI3BR7gwUf4lYQJL6l+p6R7/1PwX25y6cBAAOZbftsI0o20haFJ+5uCCdVSjWf3DKN+PLo= X-Yahoo-Newman-Id: 617595.96337.bm@smtp143.mail.ukl.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: qg12y5oVM1knqvQ1bGQ.1lFzFRbh5BMqDUyWNBpzwitdsNM zedXF3KEqyz2K_7hqPhDi6sgN2VQnkaXGdx5uQL1WAuunNCummUf0wprJ7ES jIkcGrvczk.6n_F71Gx9bSTEQb8_WVN8.NzABqQOkH3HjGCRQaagt9l74q5m rDPs6x1Nyd.8lvOQ0R1nTC1N7E7fwu_t3Lnblgcs9GB_ef4HAS1OYUIf4xlD 1ajUu._tKFDgsAuwrsR.Xe_VbjdzNz4RIkxarPcCZY_xoKfB_.zRdTCeAQA2 o5vg.yHqfj0mbula4cuoV51CHI9tcrZI43.e4xBR15I2Lp_yk85ZXwXYIUEB Ahb5OTs6dN1KeUwiyn1dKHavLAMO7O84Wi6WP64mAR4QaMy9gi1rHffAaCZU nAQ-- X-Yahoo-SMTP: tW.h3tiswBBMXO2coYcbPigGD5Lt6zY_.Zc- Received: from localhost (lindner_marek@210.177.7.38 with plain) by smtp143.mail.ukl.yahoo.com with SMTP; 09 Feb 2012 10:02:23 +0000 GMT From: Marek Lindner To: b.a.t.m.a.n@lists.open-mesh.org Date: Thu, 9 Feb 2012 18:02:13 +0800 Message-Id: <1328781734-2792-1-git-send-email-lindner_marek@yahoo.de> X-Mailer: git-send-email 1.7.5.4 Cc: Marek Lindner Subject: [B.A.T.M.A.N.] [PATCH 1/2] batctl: restate missing sysfs folder error message X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Feb 2012 10:02:25 -0000 Signed-off-by: Marek Lindner --- functions.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/functions.c b/functions.c index 0729f15..69a1385 100644 --- a/functions.c +++ b/functions.c @@ -113,7 +113,8 @@ static int check_sys_dir(char *dir) return EXIT_SUCCESS; printf("Error - the folder '%s' was not found within the sys filesystem\n", dir); - printf("Please make sure that the batman-adv kernel module is loaded\n"); + printf("Please make sure that the batman-adv kernel module is loaded and\n"); + printf("that you have activated your mesh by adding interfaces to batman-adv\n"); return EXIT_FAILURE; }