From: Michael Poole Date: Mon, 15 Feb 2010 21:01:56 +0000 (-0500) Subject: Convert a C++-style comment to C style for -ansi compilation mode. X-Git-Url: http://git.pk910.de/?p=srvx.git;a=commitdiff_plain;h=2c698a7dae97139c8b292ccfaf22eff41112f47f Convert a C++-style comment to C style for -ansi compilation mode. src/nickserv.c (opt_fakehost): Convert a // comment to a /* */ comment. --- diff --git a/src/nickserv.c b/src/nickserv.c index a48565d..4ba4250 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -2672,7 +2672,7 @@ static OPTION_FUNC(opt_fakehost) safestrncpy(mask, argv[1], sizeof(mask)); if ((host = strrchr(mask, '@')) && host != mask) { - // If ident@host was used and the user doesn't have access to set idents, do not change anything. + /* If ident@host was used and the user doesn't have access to set idents, do not change anything. */ if (!oper_has_access(user, nickserv, nickserv_conf.set_fakeident_level, 0)) { host = NULL; ident = NULL;