commit e8e04b4c8fd63d075ffa6b85327c4b90d7005051 from: Alexander Barton date: Tue Oct 30 00:48:31 2018 UTC Fix typos/errors/... in file comments Found by Xcode/Clang code analyzer. No functional changes. commit - a38eea8987b32f3d17ae04eabdd9d114af57bd25 commit + e8e04b4c8fd63d075ffa6b85327c4b90d7005051 blob - 01ec3c09510ae18324900d4fd3651ea63865b401 blob + 3a796f038c00ead7b6a650d320a90a57f875e7f1 --- src/ngircd/conf.c +++ src/ngircd/conf.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2018 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -711,7 +711,6 @@ Conf_NickIsService(int ConfServer, const char *Nick) /** * Check if the given nickname is blocked for "normal client" use. * - * @param ConfServer The server index or NONE to check all configured servers. * @param Nick The nickname to check. * @returns true if the given nickname belongs to an "IRC service". */ @@ -845,7 +844,7 @@ no_listenports(void) * * This function is used to read the MOTD and help text file, for example. * - * @param filename Name of the file to read. + * @param Filename Name of the file to read. * @return true, when the file has been read in. */ static bool @@ -887,9 +886,9 @@ Read_TextFile(const char *Filename, const char *Name, * Please note that this function uses exit(1) on fatal errors and therefore * can result in ngIRCd terminating! * - * @param ngircd_starting Flag indicating if ngIRCd is starting or not. - * @returns true when the configuration file has been read - * successfully; false otherwise. + * @param IsStarting Flag indicating if ngIRCd is starting or not. + * @returns true when the configuration file has been read + * successfully; false otherwise. */ static bool Read_Config(bool TestOnly, bool IsStarting) blob - b6e82849b0c6ae98f9441cafff8f67d5487d58f7 blob + ed58f7280254bfad8b647fe57c2383253cbcd3c4 --- src/ngircd/conn-func.c +++ src/ngircd/conn-func.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2018 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -85,7 +85,7 @@ Conn_LastPing( CONN_ID Idx ) * is read. This function only increases the penalty, it is not possible to * decrease the penalty time. * - * @param Idex Connection index. + * @param Idx Connection index. * @param Seconds Seconds to add. * @see Conn_ResetPenalty */ blob - af35b0788f16c1d41365f60d86048527c7e114bf blob + e211d1841cc1167719bbd19dcc936d9d091f7ffb --- src/ngircd/conn.c +++ src/ngircd/conn.c @@ -2402,7 +2402,7 @@ Conn_GetFromProc(int fd) * @param Reason The reason, see THROTTLE_xxx constants. * @param Idx The connection index. * @param Client The client of this connection. - * @param Seconds The time to delay this connection. + * @param Value The time to delay this connection. */ static void Throttle_Connection(const CONN_ID Idx, CLIENT *Client, const int Reason, blob - 92e8cfe39047992bdaff2d700ec192bb24a58483 blob + 8f3fd53d58ecb5b4805663f74756e1b8d7a5c9e6 --- src/ngircd/irc-write.c +++ src/ngircd/irc-write.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2018 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -380,11 +380,10 @@ va_dcl * Send a message to all the servers in the network using a specific prefix * and matching a "client flag" using a callback function. * - * @param Client The sending client, excluded while forwarding the message. + * @param ExceptOf The sending client, excluded while forwarding the message. * @param Prefix The prefix to use. * @param Flag Client flag that must be set on the target. * @param callback Callback function. - * @param Format Format string. */ GLOBAL void IRC_WriteStrServersPrefixFlag_CB(CLIENT *ExceptOf, CLIENT *Prefix, char Flag, blob - eae046d3eab11703c00fd695307abce7ede115d2 blob + 3113a4ba8fe22f3933f339b46b12a60f1d9736cf --- src/ngircd/irc.c +++ src/ngircd/irc.c @@ -415,7 +415,7 @@ IRC_KillClient(CLIENT *Client, CLIENT *From, const cha * Send help for a given topic to the client. * * @param Client The client requesting help. - * @param Topoc The help topic requested. + * @param Topic The help topic requested. * @return CONNECTED or DISCONNECTED. */ static bool blob - b842ec82e319bbf3812d3b8a16a93e5b0bbe5c39 blob + 38b3b0e8031fc9f52480748dbf8b2de84e079d11 --- src/ngircd/lists.c +++ src/ngircd/lists.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2018 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -39,7 +39,7 @@ struct list_elem { /** * Get IRC mask stored in list element. * - * @param list_elem List element. + * @param e List element. * @return Pointer to IRC mask */ GLOBAL const char * @@ -52,7 +52,7 @@ Lists_GetMask(const struct list_elem *e) /** * Get optional "reason" text stored in list element. * - * @param list_elem List element. + * @param e List element. * @return Pointer to "reason" text or empty string (""). */ GLOBAL const char * @@ -65,7 +65,7 @@ Lists_GetReason(const struct list_elem *e) /** * Get "validity" value stored in list element. * - * @param list_elem List element. + * @param e List element. * @return Validity: 0=unlimited, >0 until this time stamp. */ GLOBAL time_t @@ -78,7 +78,7 @@ Lists_GetValidity(const struct list_elem *e) /** * Get "onlyonce" value stored in list element. * - * @param list_elem List element. + * @param e List element. * @return True if the element was stored for single use, false otherwise. */ GLOBAL bool blob - c1119a50d9edd917840a85b94a29e95ed0f98ce7 blob + 940a5d9e9fef4137906dca7d8857ddf352163452 --- src/ngircd/match.c +++ src/ngircd/match.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2018 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -77,7 +77,7 @@ MatchCaseInsensitive(const char *Pattern, const char * /** * Match string with pattern case-insensitive. * - * @param pattern Pattern to match with + * @param Pattern Pattern to match with * @param String Input string, at most COMMAND_LEN-1 characters long * @param Separator Character separating the individual patterns in the list * @return true if pattern matches blob - cd62e1270c7e3945f92a31defde914037dfdb610 blob + 79d01860fc1ec5fa2b315e980c64c475d2e3363b --- src/ngircd/op.c +++ src/ngircd/op.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2018 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -58,7 +58,7 @@ Op_NoPrivileges(CLIENT * Client, REQUEST * Req) * Check that the originator of a request is an IRC operator and allowed * to administer this server. * - * @param CLient Client from which the command has been received. + * @param Client Client from which the command has been received. * @param Req Request structure. * @return CLIENT structure of the client that initiated the command or * NULL if client is not allowed to execute operator commands.