You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2020/09/19 18:42:11 UTC

[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on issue #1838: Do we still need IFF_DOWN?

xiaoxiang781216 edited a comment on issue #1838:
URL: https://github.com/apache/incubator-nuttx/issues/1838#issuecomment-695342966


   Same question for me, should we remove one? or change the code from:
   ```
   #define IFF_DOWN           (1 << 0) /* Interface is down */
   #define IFF_UP             (1 << 1) /* Interface is up */
   ```
   to:
   ```
   #define IFF_DOWN           (0 << 1) /* Interface is down */
   #define IFF_UP             (1 << 1) /* Interface is up */
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org