raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=fc89c4f78cfa7ef7d9499767a830d39aa3785ab6
commit fc89c4f78cfa7ef7d9499767a830d39aa3785ab6 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed May 27 09:19:47 2020 +0100 e ckpasswd - clean some vars to be static and a fprintf status --- src/bin/e_ckpasswd_main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bin/e_ckpasswd_main.c b/src/bin/e_ckpasswd_main.c index 2521483c3..1212f53c3 100644 --- a/src/bin/e_ckpasswd_main.c +++ b/src/bin/e_ckpasswd_main.c @@ -16,10 +16,10 @@ #include <Ecore.h> #include <Eldbus.h> -uid_t uid = -1; // uid of person running me -gid_t gid = -1; // gid of person running me -char *user_name = NULL; -char *group_name = NULL; +static uid_t uid = -1; // uid of person running me +static gid_t gid = -1; // gid of person running me +static char *user_name = NULL; +static char *group_name = NULL; #if defined(__OpenBSD__) @@ -229,7 +229,7 @@ polkit_auth(const char *cookie, unsigned int auth_uid) if (!vari) BARF("Cannot create new iter container"); if (!eldbus_message_iter_basic_append(vari, 'u', auth_uid)) - BARF("Cannot append 'u' arg for auth_id"); + BARF("Cannot append 'u' arg for auth_uid"); eldbus_message_iter_container_close(dict, vari); eldbus_message_iter_container_close(array, dict); eldbus_message_iter_container_close(subj, array); --
