From: Michael Poole Date: Thu, 30 Sep 2004 02:42:17 +0000 (+0000) Subject: Squash errors from doxygen (fix typos and unescaped command characters). X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=0afff0bb503432e13acf25dd472510f3f5b32327;p=ircu2.10.12-pk.git Squash errors from doxygen (fix typos and unescaped command characters). git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1198 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/include/s_conf.h b/include/s_conf.h index fc178d7..c02ae97 100644 --- a/include/s_conf.h +++ b/include/s_conf.h @@ -128,7 +128,7 @@ enum AuthorizationCheckResult { struct nick_host { struct nick_host *next; /**< Next nick_host struct in struct s_map. */ int nicklen; /**< offset of @ part of server string */ - char nick[1]; /**< start of nick@server string */ + char nick[1]; /**< start of nick\@server string */ }; /** Target set for a service pseudo-command. */ diff --git a/include/s_stats.h b/include/s_stats.h index a0de3e0..9bc3825 100644 --- a/include/s_stats.h +++ b/include/s_stats.h @@ -42,7 +42,7 @@ typedef void (*StatFunc)(struct Client *cptr, const struct StatDesc *sd, char *p /** Statistics entry. */ struct StatDesc { - char sd_c; /**< stats character (or '\0') */ + char sd_c; /**< stats character (or '\\0') */ char *sd_name; /**< full name for stats */ unsigned int sd_flags; /**< flags to control the stats */ enum Feature sd_control; /**< feature controlling stats */ diff --git a/ircd/ircd_crypt.c b/ircd/ircd_crypt.c index e64ff13..98ee588 100644 --- a/ircd/ircd_crypt.c +++ b/ircd/ircd_crypt.c @@ -109,7 +109,7 @@ crypt_mechs_t* crypt_mech; } /** Remove a crypt mechanism from the list - * @param Pointer to the mechanism we want to remove + * @param mechanism Pointer to the mechanism we want to remove * @return 0 on success, anything else on fail. */ int ircd_crypt_unregister_mech(crypt_mech_t* mechanism) diff --git a/ircd/ircd_crypt_native.c b/ircd/ircd_crypt_native.c index 1b1037c..e3a8fbe 100644 --- a/ircd/ircd_crypt_native.c +++ b/ircd/ircd_crypt_native.c @@ -43,7 +43,7 @@ /** Simple routine that just calls crypt() with the supplied password and salt * @param key The password we're encrypting. * @param salt The salt we're using to encrypt key - * @reutrn The encrypted password. + * @return The encrypted password. * * Well this bit is (kinda) intact from the original oper password routines :) * It's a very simple wrapper routine that just calls crypt and returns the