Squash errors from doxygen (fix typos and unescaped command characters).
authorMichael Poole <mdpoole@troilus.org>
Thu, 30 Sep 2004 02:42:17 +0000 (02:42 +0000)
committerMichael Poole <mdpoole@troilus.org>
Thu, 30 Sep 2004 02:42:17 +0000 (02:42 +0000)
git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1198 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

include/s_conf.h
include/s_stats.h
ircd/ircd_crypt.c
ircd/ircd_crypt_native.c

index fc178d7de72e7455d1409e6604765af2db358fae..c02ae97e18b2ae32ed721537a0e49a25774e1ff0 100644 (file)
@@ -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. */
index a0de3e0c68ebd78b64c7e03f07046ab7eea57c6d..9bc3825d1399c422d49e8dfa79476a6fd641086b 100644 (file)
@@ -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 */
index e64ff13a690b23fa48cb119c8dce61b495720094..98ee5882cd09d69b975b3824437941e74ef3f40c 100644 (file)
@@ -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)
index 1b1037c6e2f2abc930c4056f015c327e8404da64..e3a8fbe31297e83a50079c455c542f3e424f2782 100644 (file)
@@ -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