summaryrefslogtreecommitdiff
path: root/include/mpm_common.h
diff options
context:
space:
mode:
authorSander Temme <sctemme@apache.org>2007-07-03 23:02:32 +0000
committerSander Temme <sctemme@apache.org>2007-07-03 23:02:32 +0000
commit10fd249eeac047725eaa9f9fdb4ea0df6dac9b01 (patch)
treeeebf91dbc8650fb7c743572d77c604822890b5c7 /include/mpm_common.h
parent368e758aee272b0599b676c7d56f75b5dd60b61a (diff)
downloadhttpd-10fd249eeac047725eaa9f9fdb4ea0df6dac9b01.tar.gz
Use correct Doxygen keywords for functions and variables. TODO: figure out whether those keywords are actually necessary. HTML-ify some documentation comments for benefit of Doxygen.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@553013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mpm_common.h')
-rw-r--r--include/mpm_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h
index 30786751c9..27bca5da7b 100644
--- a/include/mpm_common.h
+++ b/include/mpm_common.h
@@ -199,7 +199,7 @@ void ap_sock_disable_nagle(apr_socket_t *s);
* Convert a username to a numeric ID
* @param name The name to convert
* @return The user id corresponding to a name
- * @deffunc uid_t ap_uname2id(const char *name)
+ * @fn uid_t ap_uname2id(const char *name)
*/
AP_DECLARE(uid_t) ap_uname2id(const char *name);
#endif
@@ -209,7 +209,7 @@ AP_DECLARE(uid_t) ap_uname2id(const char *name);
* Convert a group name to a numeric ID
* @param name The name to convert
* @return The group id corresponding to a name
- * @deffunc gid_t ap_gname2id(const char *name)
+ * @fn gid_t ap_gname2id(const char *name)
*/
AP_DECLARE(gid_t) ap_gname2id(const char *name);
#endif