Imported Upstream version 2.7.3

This commit is contained in:
Arnaud Quette 2015-04-30 15:53:36 +02:00
parent a356b56d11
commit fd413a3168
283 changed files with 14978 additions and 6511 deletions

View file

@ -10,7 +10,8 @@ SYNOPSIS
--------
#include <upsclient.h>
int upscli_list_start(UPSCONN_t *ups, int numq, const char **query)
int upscli_list_start(UPSCONN_t *ups, unsigned int numq, const char **query)
DESCRIPTION
-----------
@ -46,7 +47,7 @@ To see the list of variables on a UPS called 'su700', the protocol command
would be `LIST VAR su700`. To start that list with this function, you
would populate query and numq as follows:
int numq;
unsigned int numq;
const char *query[2];
query[0] = "VAR";