commit-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Inetutils branch, master, updated. inetutils-1_8-10-g72e891b


From: Sergey Poznyakoff
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_8-10-g72e891b
Date: Mon, 16 Aug 2010 16:46:27 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  72e891b83a41264f2f54183edbf7f264eab488aa (commit)
      from  3c0336109f709620b15f7b83474947016f56f4a2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=72e891b83a41264f2f54183edbf7f264eab488aa


commit 72e891b83a41264f2f54183edbf7f264eab488aa
Author: Sergey Poznyakoff <address@hidden>
Date:   Mon Aug 16 19:48:52 2010 +0300

    ifconfig/flags.c (flag_char_tab): Protect the uses of IFF_SLAVE and 
IFF_MASTER by #ifdefs.

diff --git a/ChangeLog b/ChangeLog
index 9411080..36dbb5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-08-16  Sergey Poznyakoff  <address@hidden>
+
+       * ifconfig/flags.c (flag_char_tab): Protect the
+       uses of IFF_SLAVE and IFF_MASTER by #ifdefs.
+
 2010-08-16  Alfred M. Szmidt  <address@hidden>
 
        * ifconfig/options.c (parse_cmdline): Error out if IFNX is NULL.
diff --git a/ifconfig/flags.c b/ifconfig/flags.c
index d927da5..35f4aa1 100644
--- a/ifconfig/flags.c
+++ b/ifconfig/flags.c
@@ -403,8 +403,12 @@ static struct if_flag_char flag_char_tab[] = {
   { IFF_NOTRAILERS,  'N' },
   { IFF_NOARP,       'O' },
   { IFF_POINTOPOINT, 'P' },
+#ifdef IFF_SLAVE
   { IFF_SLAVE,       's' },
+#endif
+#ifdef IFF_MASTER
   { IFF_MASTER,      'm' },
+#endif
   { IFF_RUNNING,     'R' },
   { IFF_UP,          'U' },
   { 0 }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |    5 +++++
 ifconfig/flags.c |    4 ++++
 2 files changed, 9 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]