* tools/virsh.c (vshCmdDef): Change flags type.
* daemon/remote.c (remoteDispatchOpen): Likewise.
struct remote_open_args *args)
{
const char *name;
- int flags;
+ unsigned int flags;
struct daemonClientPrivate *priv = virNetServerClientGetPrivateData(client);
int rv = -1;
bool (*handler) (vshControl *, const vshCmd *); /* command handler */
const vshCmdOptDef *opts; /* definition of command options */
const vshCmdInfo *info; /* details about command */
- int flags; /* bitwise OR of VSH_CMD_FLAG */
+ unsigned int flags; /* bitwise OR of VSH_CMD_FLAG */
} vshCmdDef;
/*