diff options
author | Cliff Woolley <jwoolley@apache.org> | 2002-05-02 22:16:34 +0200 |
---|---|---|
committer | Cliff Woolley <jwoolley@apache.org> | 2002-05-02 22:16:34 +0200 |
commit | 1532c1f996bd6fa70b992bc6bda132472038281d (patch) | |
tree | 6b6498b136b0af54e0468ef3ff37b6cd4170670c | |
parent | Done (diff) | |
download | apache2-1532c1f996bd6fa70b992bc6bda132472038281d.tar.xz apache2-1532c1f996bd6fa70b992bc6bda132472038281d.zip |
fix a typo
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94912 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | support/suexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/suexec.c b/support/suexec.c index 16c8e6e5a3..cb8e126965 100644 --- a/support/suexec.c +++ b/support/suexec.c @@ -381,7 +381,7 @@ int main(int argc, char *argv[]) } else { if ((pw = getpwuid(atoi(target_uname))) == NULL) { - log_err("invalud target user id: (%s)\n", target_uname); + log_err("invalid target user id: (%s)\n", target_uname); exit(121); } } |