about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2018-11-28 07:00:48 +0100
committerFlorian Weimer <fweimer@redhat.com>2018-12-12 12:03:36 +0100
commit9dd07a91dba984c223730af30741565cb9bd88d5 (patch)
tree88a80ece6ee8c0e59efb5883bfff76de79eaf369
parent4718b053dfef495a4d5189e4210bc66106873522 (diff)
downloadglibc-9dd07a91dba984c223730af30741565cb9bd88d5.tar.gz
glibc-9dd07a91dba984c223730af30741565cb9bd88d5.tar.xz
glibc-9dd07a91dba984c223730af30741565cb9bd88d5.zip
support_quote_string: Do not use str parameter name
This avoids a build failure if this identifier is used as a macro
in a test.

(cherry picked from commit 47d8d9a2172f827a8dde7695f415aa6f78a82d0e)
-rw-r--r--ChangeLog5
-rw-r--r--support/support.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index aaeb1fc706..a979f53811 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-11-28  Florian Weimer  <fweimer@redhat.com>
+
+	* support/support.h (support_quote_string): Do not use str
+	parameter name.
+
 2018-11-27  Florian Weimer  <fweimer@redhat.com>
 
 	* support/support.h (support_quote_string): Declare.
diff --git a/support/support.h b/support/support.h
index 4d9f7528a6..4ea92e1c21 100644
--- a/support/support.h
+++ b/support/support.h
@@ -65,10 +65,10 @@ void support_write_file_string (const char *path, const char *contents);
    the result).  */
 char *support_quote_blob (const void *blob, size_t length);
 
-/* Quote the contents of the at STR, in such a way that the result
+/* Quote the contents of the string, in such a way that the result
    string can be included in a C literal (in single/double quotes,
    without putting the quotes into the result).  */
-char *support_quote_string (const char *str);
+char *support_quote_string (const char *);
 
 /* Error-checking wrapper functions which terminate the process on
    error.  */