Hello! I see you're the official xauth maintainer according to http://cgit.freedesktop.org/xorg/doc/xorg-docs/tree/MAINTAINERS#n80
Can you please take a look at the attached patch and merge it? Thanks, Thomas ----- Forwarded message from Thomas Klausner <[email protected]> ----- Date: Sun, 30 Jun 2013 13:29:44 +0200 From: Thomas Klausner <[email protected]> To: [email protected] Cc: Thomas Klausner <[email protected]> Subject: [PATCH:xauth] Use copystring to create non-const string. Fixes "error: assignment discards qualifiers from pointer target type" Signed-off-by: Thomas Klausner <[email protected]> --- process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.c b/process.c index 166b769..baac2cd 100644 --- a/process.c +++ b/process.c @@ -1892,7 +1892,7 @@ do_generate(const char *inputfilename, int lineno, int argc, const char **argv) auth_in->name = DEFAULT_PROTOCOL; } else - auth_in->name = protoname; + auth_in->name = copystring (protoname, strlen(protoname)); auth_in->name_length = strlen(auth_in->name); auth_in->data = authdata; auth_in->data_length = authdatalen; -- 1.8.3.1 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel ----- End forwarded message ----- _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
