Skip to content
Snippets Groups Projects
Commit f3d16a35 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

fileutils: comment out logs

Change-Id: Ia5e9a88c18f8cec577a58bbdd96a948031716bad
parent 665d1110
No related branches found
No related tags found
No related merge requests found
...@@ -131,20 +131,20 @@ expand_path(const std::string& path) ...@@ -131,20 +131,20 @@ expand_path(const std::string& path)
switch (ret) { switch (ret) {
case WRDE_BADCHAR: case WRDE_BADCHAR:
JAMI_ERR("Illegal occurrence of newline or one of |, &, ;, <, >, " /*JAMI_ERR("Illegal occurrence of newline or one of |, &, ;, <, >, "
"(, ), {, }."); "(, ), {, }.");*/
return result; return result;
case WRDE_BADVAL: case WRDE_BADVAL:
JAMI_ERR("An undefined shell variable was referenced"); //JAMI_ERR("An undefined shell variable was referenced");
return result; return result;
case WRDE_CMDSUB: case WRDE_CMDSUB:
JAMI_ERR("Command substitution occurred"); //JAMI_ERR("Command substitution occurred");
return result; return result;
case WRDE_SYNTAX: case WRDE_SYNTAX:
JAMI_ERR("Shell syntax error"); //JAMI_ERR("Shell syntax error");
return result; return result;
case WRDE_NOSPACE: case WRDE_NOSPACE:
JAMI_ERR("Out of memory."); //JAMI_ERR("Out of memory.");
// This is the only error where we must call wordfree // This is the only error where we must call wordfree
break; break;
default: default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment