summaryrefslogtreecommitdiffstats
path: root/server/tools/sss_useradd.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/tools/sss_useradd.c')
-rw-r--r--server/tools/sss_useradd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tools/sss_useradd.c b/server/tools/sss_useradd.c
index 2880182c0..b28417988 100644
--- a/server/tools/sss_useradd.c
+++ b/server/tools/sss_useradd.c
@@ -516,13 +516,13 @@ int main(int argc, const char **argv)
ret = data->error;
switch (ret) {
case EEXIST:
- ERROR("The user %s already exists\n", data->name);
+ ERROR("A user with the same name or UID already exists\n");
break;
default:
DEBUG(1, ("sysdb operation failed (%d)[%s]\n",
ret, strerror(ret)));
- ERROR("Transaction error. Could not modify user.\n");
+ ERROR("Transaction error. Could not add user.\n");
break;
}
ret = EXIT_FAILURE;