Hi Dave,
The reason for all those bogus metadata was I wasn't using send-mail
command to send the patch instead i attached the patch file generated by
format-patch.
I'll keep in mind to send txt files from now. Attached is the txt version
of the patch.
Regards.
On Sun, Mar 25, 2012 at 4:52 PM, Davidlohr Bueso <[email protected]> wrote:
> Please, send your patches as text files within the message, it makes it
> easier to review the code changes through email. There's all sorts of
> bogus metadata in your patch, please remove:
>
> MIME-Version: 1.0
> Content-Type: multipart/mixed; boundary="------------1.7.5.4"
>
> This is a multi-part message in MIME format.
> --------------1.7.5.4
> Content-Type: text/plain; charset=UTF-8; format=fixed
> Content-Transfer-Encoding: 8bit
>
> ---
> plugins/cheetah/cmd.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> Thanks.
>
> On Sun, 2012-03-25 at 09:27 +0530, Sourabh Chandak wrote:
> > Hi,
> >
> >
> > Added a check for listen_address, if it is NULL then "Listen All
> > interfaces"
> >
> >
> > Please review and send you comments
> >
> >
> > --
> > Sourabh Chandak
> >
> >
> >
> >
> > _______________________________________________
> > Monkey mailing list
> > [email protected]
> > http://lists.monkey-project.com/listinfo/monkey
>
>
>
--
Sourabh Chandak
diff --git a/plugins/cheetah/cmd.c b/plugins/cheetah/cmd.c
index b3a8e7c..9fb4a8f 100644
--- a/plugins/cheetah/cmd.c
+++ b/plugins/cheetah/cmd.c
@@ -312,7 +312,7 @@ void mk_cheetah_cmd_config()
CHEETAH_WRITE("\n-------------------");
CHEETAH_WRITE("\nServer Port : %i", mk_api->config->serverport);
- if (strcmp(mk_api->config->listen_addr, "0.0.0.0") == 0) {
+ if (!mk_api->config->listen_addr || strcmp(mk_api->config->listen_addr,
"0.0.0.0") == 0) {
CHEETAH_WRITE("\nListen : All interfaces");
}
else {
--------------1.7.5.4--
_______________________________________________
Monkey mailing list
[email protected]
http://lists.monkey-project.com/listinfo/monkey