[3/4] Fix typos in getrlimit64.c and setrlimit64.c

Message ID 20171230184441.25392-4-aurelien@aurel32.net
State New, archived
Headers

Commit Message

Aurelien Jarno Dec. 30, 2017, 6:44 p.m. UTC
  Changelog:
	* sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
	comment.
	* sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
	comment.
	(settrlimit): Rename into setrlimit.
	(__sttrlimit): Rename into __setrlimit.
---
 ChangeLog                             | 9 +++++++++
 sysdeps/unix/sysv/linux/getrlimit64.c | 2 +-
 sysdeps/unix/sysv/linux/setrlimit64.c | 6 +++---
 3 files changed, 13 insertions(+), 4 deletions(-)
  

Comments

Adhemerval Zanella Netto Dec. 31, 2017, 7:34 p.m. UTC | #1
On 30/12/2017 16:44, Aurelien Jarno wrote:
> Changelog:
> 	* sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
> 	comment.
> 	* sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
> 	comment.
> 	(settrlimit): Rename into setrlimit.
> 	(__sttrlimit): Rename into __setrlimit.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>

> ---
>  ChangeLog                             | 9 +++++++++
>  sysdeps/unix/sysv/linux/getrlimit64.c | 2 +-
>  sysdeps/unix/sysv/linux/setrlimit64.c | 6 +++---
>  3 files changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/ChangeLog b/ChangeLog
> index 1e8740530d..663a9186e4 100644
> --- a/ChangeLog
> +++ b/ChangeLog
> @@ -1,3 +1,12 @@
> +2017-12-30  Aurelien Jarno <aurelien@aurel32.net>
> +
> +	* sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
> +	comment.
> +	* sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
> +	comment.
> +	(settrlimit): Rename into setrlimit.
> +	(__sttrlimit): Rename into __setrlimit.
> +
>  2017-12-30  Aurelien Jarno <aurelien@aurel32.net>
>  
>  	* sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIM_INFINITY,
> diff --git a/sysdeps/unix/sysv/linux/getrlimit64.c b/sysdeps/unix/sysv/linux/getrlimit64.c
> index 37827e5f42..53cb4bb4d8 100644
> --- a/sysdeps/unix/sysv/linux/getrlimit64.c
> +++ b/sysdeps/unix/sysv/linux/getrlimit64.c
> @@ -21,7 +21,7 @@
>  #include <shlib-compat.h>
>  
>  /* Add this redirection so the strong_alias for __RLIM_T_MATCHES_RLIM64_T
> -   linking getlimit64 to {__}getrlimit does not throw a type error.  */
> +   linking getrlimit64 to {__}getrlimit does not throw a type error.  */
>  #undef getrlimit
>  #undef __getrlimit
>  #define getrlimit getrlimit_redirect
> diff --git a/sysdeps/unix/sysv/linux/setrlimit64.c b/sysdeps/unix/sysv/linux/setrlimit64.c
> index ff835c8733..2b1d3d172e 100644
> --- a/sysdeps/unix/sysv/linux/setrlimit64.c
> +++ b/sysdeps/unix/sysv/linux/setrlimit64.c
> @@ -21,9 +21,9 @@
>  #include <shlib-compat.h>
>  
>  /* Add this redirection so the strong_alias for __RLIM_T_MATCHES_RLIM64_T
> -   linking setlimit64 to {__}setrlimit does not throw a type error.  */
> -#undef settrlimit
> -#undef __sttrlimit
> +   linking setrlimit64 to {__}setrlimit does not throw a type error.  */
> +#undef setrlimit
> +#undef __setrlimit
>  #define setrlimit setrlimit_redirect
>  #define __setrlimit __setrlimit_redirect
>  #include <sys/resource.h>
>
  

Patch

diff --git a/ChangeLog b/ChangeLog
index 1e8740530d..663a9186e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@ 
+2017-12-30  Aurelien Jarno <aurelien@aurel32.net>
+
+	* sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
+	comment.
+	* sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
+	comment.
+	(settrlimit): Rename into setrlimit.
+	(__sttrlimit): Rename into __setrlimit.
+
 2017-12-30  Aurelien Jarno <aurelien@aurel32.net>
 
 	* sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIM_INFINITY,
diff --git a/sysdeps/unix/sysv/linux/getrlimit64.c b/sysdeps/unix/sysv/linux/getrlimit64.c
index 37827e5f42..53cb4bb4d8 100644
--- a/sysdeps/unix/sysv/linux/getrlimit64.c
+++ b/sysdeps/unix/sysv/linux/getrlimit64.c
@@ -21,7 +21,7 @@ 
 #include <shlib-compat.h>
 
 /* Add this redirection so the strong_alias for __RLIM_T_MATCHES_RLIM64_T
-   linking getlimit64 to {__}getrlimit does not throw a type error.  */
+   linking getrlimit64 to {__}getrlimit does not throw a type error.  */
 #undef getrlimit
 #undef __getrlimit
 #define getrlimit getrlimit_redirect
diff --git a/sysdeps/unix/sysv/linux/setrlimit64.c b/sysdeps/unix/sysv/linux/setrlimit64.c
index ff835c8733..2b1d3d172e 100644
--- a/sysdeps/unix/sysv/linux/setrlimit64.c
+++ b/sysdeps/unix/sysv/linux/setrlimit64.c
@@ -21,9 +21,9 @@ 
 #include <shlib-compat.h>
 
 /* Add this redirection so the strong_alias for __RLIM_T_MATCHES_RLIM64_T
-   linking setlimit64 to {__}setrlimit does not throw a type error.  */
-#undef settrlimit
-#undef __sttrlimit
+   linking setrlimit64 to {__}setrlimit does not throw a type error.  */
+#undef setrlimit
+#undef __setrlimit
 #define setrlimit setrlimit_redirect
 #define __setrlimit __setrlimit_redirect
 #include <sys/resource.h>