[openssh-commits] [openssh] 12/13: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Oct 13 11:42:18 EST 2014
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 5c0dafd38bf66feeeb45fa0741a5baf5ad8039ba
Author: djm at openbsd.org <djm at openbsd.org>
Date: Wed Oct 8 22:15:27 2014 +0000
upstream commit
another -Wpointer-sign from clang
---
compat.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/compat.c b/compat.c
index 4d286e8..8f0f10c 100644
--- a/compat.c
+++ b/compat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: compat.c,v 1.85 2014/04/20 02:49:32 djm Exp $ */
+/* $OpenBSD: compat.c,v 1.86 2014/10/08 22:15:27 djm Exp $ */
/*
* Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
*
@@ -234,7 +234,7 @@ filter_proposal(char *proposal, const char *filter)
debug2("Compat: skipping algorithm \"%s\"", cp);
}
buffer_append(&b, "\0", 1);
- fix_prop = xstrdup(buffer_ptr(&b));
+ fix_prop = xstrdup((char *)buffer_ptr(&b));
buffer_free(&b);
free(orig_prop);
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list