INN commit: trunk/nnrpd (commands.c)

INN Commit Russ_Allbery at isc.org
Fri Aug 29 05:45:58 UTC 2008


    Date: Thursday, August 28, 2008 @ 22:45:57
  Author: iulius
Revision: 7986

Fix a warning at compilation time because of an unused argument.

Modified:
  trunk/nnrpd/commands.c

------------+
 commands.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Modified: commands.c
===================================================================
--- commands.c	2008-08-28 21:51:06 UTC (rev 7985)
+++ commands.c	2008-08-29 05:45:57 UTC (rev 7986)
@@ -164,9 +164,13 @@
     return 0;
 }
 
-/* ARGSUSED */
+
+/*
+** The AUTHINFO command.
+** Arguments are used (ac is used for SASL).
+*/
 void
-CMDauthinfo(int ac, char *av[])
+CMDauthinfo(int ac UNUSED, char *av[])
 {
     static char	User[SMBUF];
     static char	Password[SMBUF];



More information about the inn-committers mailing list