From e37e499c9bbd1eb6d9dc69da50976f2f2cf7a801 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Sat, 19 Jun 2010 17:30:15 +0200 Subject: [PATCH] typo fix in error message --- core/sems.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sems.cpp b/core/sems.cpp index 8c1fe8fe..df2f6e60 100644 --- a/core/sems.cpp +++ b/core/sems.cpp @@ -485,7 +485,7 @@ int main(int argc, char* argv[]) gid = grnam->gr_gid; } else{ - ERROR("Cannot not find group '%s' in the group database.\n", + ERROR("Cannot find group '%s' in the group database.\n", AmConfig::DaemonGid.c_str()); goto error; } @@ -506,7 +506,7 @@ int main(int argc, char* argv[]) uid = pwnam->pw_uid; } else{ - ERROR("Cannot not find user '%s' in the user database.\n", + ERROR("Cannot find user '%s' in the user database.\n", AmConfig::DaemonUid.c_str()); goto error; }