diff --git a/src/main.cpp b/src/main.cpp index 7e23332..06d3f78 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -112,6 +112,7 @@ void test() */ #include +#include #include "actions.h" #include "algo_suite.h" @@ -330,6 +331,12 @@ int main (int argc, char**argv) //register all available algorithms fill_algorithm_suite (AS); + //default local user key from environment + if(user.empty()) { + const char*u=getenv("CCR_USER"); + if(u) user=u; + } + /* * cin/cout redirection */