gssd.c:291:7: error: ISO C does not support the 'm' scanf flag [-Werror=format=] gssd.c:291:7: error: format '%s' expects argument of type 'char *', but argument 4 has type 'char **' [-Werror=format=] Signed-off-by: Steve Dickson <steved@xxxxxxxxxx> --- utils/gssd/gssd.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/utils/gssd/gssd.c b/utils/gssd/gssd.c index 2c14e5f..7b21ee2 100644 --- a/utils/gssd/gssd.c +++ b/utils/gssd/gssd.c @@ -279,16 +279,16 @@ gssd_read_service_info(int dirfd, struct clnt_info *clp) * (commit bf19aacecbeebccb2c3d150a8bd9416b7dba81fe) */ numfields = fscanf(info, - "RPC server: %ms\n" - "service: %ms (%d) version %d\n" - "address: %ms\n" - "protocol: %ms\n" - "port: %ms\n", - &server, - &service, &program, &version, - &address, - &protoname, - &port); + "RPC server: %s\n" + "service: %s (%d) version %d\n" + "address: %s\n" + "protocol: %s\n" + "port: %s\n", + (char *)&server, + (char *)&service, &program, &version, + (char *)&address, + (char *)&protoname, + (char *)&port); switch (numfields) { -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html