Merge pull request #819 from brendanzagaeski/patch-1
[mono.git] / mcs / class / Mono.Posix / Mono.Unix.Native / Syscall.cs
index 7488f79b56f2217deecc2832d1f13822ee9bfc40..7ba53e922bf7d1dd53db2206246a8281c522af7c 100644 (file)
@@ -2305,7 +2305,7 @@ namespace Mono.Unix.Native {
                        // Syscall to getpwnam to retrieve user uid
                        Passwd pw = Syscall.getpwnam (username);
                        if (pw == null)
-                               throw new ArgumentException (string.Format ("User {0} does not exists",username), "username");
+                               throw new ArgumentException (string.Format ("User {0} does not exist", username), "username");
                        return getgrouplist (pw);
                }