From: Jaroslav Kysela Date: Sun, 3 Apr 2016 14:31:12 +0000 (+0200) Subject: access: mark index/password2 entries as non-ui X-Git-Tag: v4.2.1~751 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd8807f9e5ebf03c5f9f8758939b6fb104347f79;p=thirdparty%2Ftvheadend.git access: mark index/password2 entries as non-ui --- diff --git a/src/access.c b/src/access.c index 47eeef4b1..70387a0dc 100644 --- a/src/access.c +++ b/src/access.c @@ -1452,7 +1452,7 @@ const idclass_t access_entry_class = { .id = "index", .name = N_("Index"), .off = offsetof(access_entry_t, ae_index), - .opts = PO_RDONLY | PO_HIDDEN, + .opts = PO_RDONLY | PO_HIDDEN | PO_NOUI, }, { .type = PT_BOOL, @@ -1935,7 +1935,7 @@ const idclass_t passwd_entry_class = { .id = "password2", .name = N_("Password2"), .off = offsetof(passwd_entry_t, pw_password2), - .opts = PO_PASSWORD | PO_HIDDEN | PO_EXPERT | PO_WRONCE, + .opts = PO_PASSWORD | PO_HIDDEN | PO_EXPERT | PO_WRONCE | PO_NOUI, .set = passwd_entry_class_password2_set, }, {