Imported Upstream version 14.45.0
[platform/upstream/libzypp.git] / zypp / Glob.cc
index 0ff1eaf..a7281eb 100644 (file)
@@ -25,11 +25,11 @@ namespace zypp
 
     int Glob::add( const char * pattern_r, Flags flags_r )
     {
-      static Flags kAppend( GLOB_APPEND ); // not published
+      static Flags _APPEND( GLOB_APPEND ); // not published
       if ( ! flags_r )
         flags_r = _defaultFlags;
       if ( _result )
-        flags_r |= kAppend;
+        flags_r |= _APPEND;
       else
         _result.reset( new ::glob_t );
       return( _lastGlobReturn = ::glob( pattern_r, flags_r, NULL, &(*_result) ) );