srv_epmapper.c: Fix typo.
authorKarolin Seeger <kseeger@samba.org>
Mon, 18 Feb 2013 09:25:09 +0000 (10:25 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 18 Feb 2013 12:57:39 +0000 (13:57 +0100)
priviledge -> privilege

Signed-off-by: Karolin Seeger <kseeger@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon Feb 18 13:57:40 CET 2013 on sn-devel-104

source3/rpc_server/epmapper/srv_epmapper.c

index ac215cbbc01b777e278909e5baa2357d45998fe3..17db5a43f990402eed8131e0ffb88ff0da9756c9 100644 (file)
@@ -232,7 +232,7 @@ static uint32_t build_ep_list(TALLOC_CTX *mem_ctx,
        return total;
 }
 
-static bool is_priviledged_pipe(struct auth_session_info *info) {
+static bool is_privileged_pipe(struct auth_session_info *info) {
        /* If the user is not root, or has the system token, fail */
        if ((info->unix_token->uid != sec_initial_uid()) &&
            !security_token_is_system(info->security_token)) {
@@ -303,9 +303,9 @@ error_status_t _epm_Insert(struct pipes_struct *p,
        struct dcesrv_iface *iface;
        bool add_ep;
 
-       /* If this is not a priviledged users, return */
+       /* If this is not a privileged users, return */
        if (p->transport != NCALRPC ||
-           !is_priviledged_pipe(p->session_info)) {
+           !is_privileged_pipe(p->session_info)) {
                p->fault_state = DCERPC_FAULT_OP_RNG_ERROR;
                return EPMAPPER_STATUS_CANT_PERFORM_OP;
        }
@@ -440,9 +440,9 @@ error_status_t _epm_Delete(struct pipes_struct *p,
        DEBUG(3, ("_epm_Delete: Trying to delete %u entries.\n",
                  r->in.num_ents));
 
-       /* If this is not a priviledged users, return */
+       /* If this is not a privileged users, return */
        if (p->transport != NCALRPC ||
-           !is_priviledged_pipe(p->session_info)) {
+           !is_privileged_pipe(p->session_info)) {
                p->fault_state = DCERPC_FAULT_OP_RNG_ERROR;
                return EPMAPPER_STATUS_CANT_PERFORM_OP;
        }