diff options
author | Stefan Fritsch <sf@apache.org> | 2013-06-10 23:31:35 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2013-06-10 23:31:35 +0200 |
commit | ce89a22dffa0ccb6957d0bcfbc4f935b1bee48e3 (patch) | |
tree | 11002ae53e0866487ccff2f8949c7dea1e2189c5 /modules/arch | |
parent | const goodness with nasty strrchr and strchr functions (diff) | |
download | apache2-ce89a22dffa0ccb6957d0bcfbc4f935b1bee48e3.tar.xz apache2-ce89a22dffa0ccb6957d0bcfbc4f935b1bee48e3.zip |
fix typo
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1491610 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/arch')
-rw-r--r-- | modules/arch/netware/mod_netware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arch/netware/mod_netware.c b/modules/arch/netware/mod_netware.c index 1c5950daa0..b34a5222bb 100644 --- a/modules/arch/netware/mod_netware.c +++ b/modules/arch/netware/mod_netware.c @@ -128,7 +128,7 @@ static apr_status_t ap_cgi_build_command(const char **cmd, const char ***argv, for (ptr = cmd_only; *ptr && (*ptr != ' '); ptr++); *ptr = '\0'; - /* Figure out what the extension is so that we can matche it. */ + /* Figure out what the extension is so that we can match it. */ ext = strrchr(apr_filepath_name_get(cmd_only), '.'); /* If there isn't an extension then give it an empty string */ |