From 2c698a7dae97139c8b292ccfaf22eff41112f47f Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Mon, 15 Feb 2010 16:01:56 -0500 Subject: [PATCH] Convert a C++-style comment to C style for -ansi compilation mode. src/nickserv.c (opt_fakehost): Convert a // comment to a /* */ comment. --- src/nickserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1