Commit d44250b3 by Tycho Andersen Committed by Stéphane Graber

utils: dialback setproctitle failure message

This isn't in any way fatal, so let's only warn about it with INFO, not ERROR. Signed-off-by: 's avatarTycho Andersen <tycho.andersen@canonical.com> Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent c508ea10
...@@ -1458,7 +1458,7 @@ int setproctitle(char *title) ...@@ -1458,7 +1458,7 @@ int setproctitle(char *title)
if (ret == 0) if (ret == 0)
strcpy((char*)arg_start, title); strcpy((char*)arg_start, title);
else else
SYSERROR("setting cmdline failed"); INFO("setting cmdline failed - %s", strerror(errno));
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment