Imported Upstream version 2.6.3

This commit is contained in:
Arnaud Quette 2012-01-24 11:22:33 +01:00
parent 45043b58d0
commit fad6ced6f6
255 changed files with 11081 additions and 4629 deletions

View file

@ -27,7 +27,7 @@
#include "netmisc.h"
void net_ver(ctype_t *client, int numarg, const char **arg)
void net_ver(nut_ctype_t *client, int numarg, const char **arg)
{
if (numarg != 0) {
send_err(client, NUT_ERR_INVALID_ARGUMENT);
@ -38,7 +38,7 @@ void net_ver(ctype_t *client, int numarg, const char **arg)
UPS_VERSION);
}
void net_help(ctype_t *client, int numarg, const char **arg)
void net_help(nut_ctype_t *client, int numarg, const char **arg)
{
if (numarg != 0) {
send_err(client, NUT_ERR_INVALID_ARGUMENT);
@ -49,7 +49,7 @@ void net_help(ctype_t *client, int numarg, const char **arg)
" USERNAME PASSWORD STARTTLS\n");
}
void net_fsd(ctype_t *client, int numarg, const char **arg)
void net_fsd(nut_ctype_t *client, int numarg, const char **arg)
{
upstype_t *ups;