[PATCH 07/11] lib: fwts_checkeuid: constify function arguments where appropriate

IvanHu ivan.hu at canonical.com
Mon Oct 22 09:33:08 UTC 2012


On 10/17/2012 03:20 AM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>   src/lib/include/fwts_checkeuid.h |    2 +-
>   src/lib/src/fwts_checkeuid.c     |    2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/lib/include/fwts_checkeuid.h b/src/lib/include/fwts_checkeuid.h
> index fb2ce29..3669e39 100644
> --- a/src/lib/include/fwts_checkeuid.h
> +++ b/src/lib/include/fwts_checkeuid.h
> @@ -22,6 +22,6 @@
>
>   #include "fwts_framework.h"
>
> -int fwts_check_root_euid(fwts_framework *fw, bool warn);
> +int fwts_check_root_euid(fwts_framework *fw, const bool warn);
>
>   #endif
> diff --git a/src/lib/src/fwts_checkeuid.c b/src/lib/src/fwts_checkeuid.c
> index da4c32c..756ed81 100644
> --- a/src/lib/src/fwts_checkeuid.c
> +++ b/src/lib/src/fwts_checkeuid.c
> @@ -28,7 +28,7 @@
>    *  fwts_check_root_euid()
>    *	Check if user has privileges to access ports, memory, etc
>    */
> -int fwts_check_root_euid(fwts_framework *fw, bool warn)
> +int fwts_check_root_euid(fwts_framework *fw, const bool warn)
>   {
>   	if (geteuid() != 0) {
>   		if (warn)
>

Acked-by: Ivan Hu <ivan.hu at canonical.com>




More information about the fwts-devel mailing list