* src/gpasswd.c: Fix the usage of the unused macro.

This commit is contained in:
nekral-guest 2009-04-11 18:37:59 +00:00
parent cab74eddef
commit 80a30dfe6f
2 changed files with 16 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2009-04-11 Nicolas François <nicolas.francois@centraliens.net>
* src/gpasswd.c: Fix the usage of the unused macro.
2009-04-11 Nicolas François <nicolas.francois@centraliens.net>
* lib/prototypes.h, libmisc/age.c, src/expiry.c, src/login.c: A

View File

@ -111,16 +111,16 @@ static void update_group (struct group *gr);
static void change_passwd (struct group *gr);
#endif
static void log_gpasswd_failure (const char *suffix);
static void log_gpasswd_failure_system (void *unused(arg));
static void log_gpasswd_failure_group (void *unused(arg));
static void log_gpasswd_failure_system (unused void *arg);
static void log_gpasswd_failure_group (unused void *arg);
#ifdef SHADOWGRP
static void log_gpasswd_failure_gshadow (void *unused(arg));
static void log_gpasswd_failure_gshadow (unused void *arg);
#endif
static void log_gpasswd_success (const char *suffix);
static void log_gpasswd_success_system (void *unused(arg));
static void log_gpasswd_success_group (void *unused(arg));
static void log_gpasswd_success_system (unused void *arg);
static void log_gpasswd_success_group (unused void *arg);
#ifdef SHADOWGRP
static void log_gpasswd_success_gshadow (void *unused(arg));
static void log_gpasswd_success_gshadow (unused void *arg);
#endif
/*
@ -499,12 +499,12 @@ static void log_gpasswd_failure (const char *suffix)
}
}
static void log_gpasswd_failure_system (void *unused(arg))
static void log_gpasswd_failure_system (unused void *arg)
{
log_gpasswd_failure ("");
}
static void log_gpasswd_failure_group (void *unused(arg))
static void log_gpasswd_failure_group (unused void *arg)
{
char buf[1024];
snprintf (buf, 1023, " in %s", gr_dbname ());
@ -513,7 +513,7 @@ static void log_gpasswd_failure_group (void *unused(arg))
}
#ifdef SHADOWGRP
static void log_gpasswd_failure_gshadow (void *unused(arg))
static void log_gpasswd_failure_gshadow (unused void *arg)
{
char buf[1024];
snprintf (buf, 1023, " in %s", sgr_dbname ());
@ -633,12 +633,12 @@ static void log_gpasswd_success (const char *suffix)
}
}
static void log_gpasswd_success_system (void *unused(arg))
static void log_gpasswd_success_system (unused void *arg)
{
log_gpasswd_success ("");
}
static void log_gpasswd_success_group (void *unused(arg))
static void log_gpasswd_success_group (unused void *arg)
{
char buf[1024];
snprintf (buf, 1023, " in %s", gr_dbname ());
@ -647,7 +647,7 @@ static void log_gpasswd_success_group (void *unused(arg))
}
#ifdef SHADOWGRP
static void log_gpasswd_success_gshadow (void *unused(arg))
static void log_gpasswd_success_gshadow (unused void *arg)
{
char buf[1024];
snprintf (buf, 1023, " in %s", sgr_dbname ());