Fixed function prototype in maxadmin

The DoUsage function had a difference between the prototype and the real signature.
This commit is contained in:
Markus Makela 2015-12-07 17:18:03 +02:00
parent 4b625567d3
commit 689ef73705

View File

@ -67,7 +67,7 @@ static int setipaddress(struct in_addr *a, char *p);
static int authMaxScale(int so, char *user, char *password);
static int sendCommand(int so, char *cmd);
static void DoSource(int so, char *cmd);
static void DoUsage();
static void DoUsage(const char*);
static int isquit(char *buf);
static void PrintVersion(const char *progname);
static void read_inifile(char **hostname, char **port, char **user, char **passwd,int*);