Skip to content

Commit

Permalink
usrloc: renamed dmq specific flag from FL_RPL to FL_DMQRPL
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Jan 19, 2018
1 parent 72bbf92 commit 0640853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/usrloc/usrloc.h
Expand Up @@ -61,7 +61,7 @@ typedef enum cstate {
typedef enum flags {
FL_NONE = 0, /*!< No flags set */
FL_MEM = 1 << 0, /*!< Update memory only */
FL_RPL = 1 << 1, /*!< DMQ replication */
FL_DMQRPL = 1 << 1, /*!< DMQ replication */
FL_ALL = (int)0xFFFFFFFF /*!< All flags set */
} flags_t;

Expand Down

2 comments on commit 0640853

@charlesrchance
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the flag can be removed completely. It is unused since b5f94a9.

@miconda
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK. I was thinking to ask about, but I thought there is maybe some branch not merged yet using it -- first step was to make it clear a flag related to dmq.

Please sign in to comment.