MXS-1346: Rename users.cc to user.cc
user.cc better describes the contents of the file as it defines the User class.
This commit is contained in:
@ -6,7 +6,7 @@ if(BISON_FOUND AND FLEX_FOUND)
|
||||
add_flex_bison_dependency(token ruleparser)
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
||||
add_library(dbfwfilter-core STATIC ${BISON_ruleparser_OUTPUTS} ${FLEX_token_OUTPUTS} rules.cc users.cc)
|
||||
add_library(dbfwfilter-core STATIC ${BISON_ruleparser_OUTPUTS} ${FLEX_token_OUTPUTS} rules.cc user.cc)
|
||||
add_library(dbfwfilter SHARED dbfwfilter.cc)
|
||||
target_link_libraries(dbfwfilter maxscale-common MySQLCommon dbfwfilter-core)
|
||||
set_target_properties(dbfwfilter PROPERTIES VERSION "1.0.0")
|
||||
|
@ -77,7 +77,7 @@
|
||||
#include <maxscale/alloc.h>
|
||||
|
||||
#include "rules.hh"
|
||||
#include "users.hh"
|
||||
#include "user.hh"
|
||||
|
||||
MXS_BEGIN_DECLS
|
||||
#include "ruleparser.yy.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
* Public License.
|
||||
*/
|
||||
|
||||
#include "users.hh"
|
||||
#include "user.hh"
|
||||
|
||||
#include <maxscale/alloc.h>
|
||||
#include <maxscale/modutil.h>
|
Reference in New Issue
Block a user