X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Fptlrpc%2Fgss%2Fgss_null_mech.c;h=68609421b711d886453a047000d723b49259dac8;hb=f625f670afbe954030ff81f0f8522137d6cdd335;hp=3021d7d5c606a56e9abe4acd7cc7fce5effc1db1;hpb=1f1d3a376d488d715dd1b0c94d5b66ea05c1e6ca;p=fs%2Flustre-release.git diff --git a/lustre/ptlrpc/gss/gss_null_mech.c b/lustre/ptlrpc/gss/gss_null_mech.c index 3021d7d..6860942 100644 --- a/lustre/ptlrpc/gss/gss_null_mech.c +++ b/lustre/ptlrpc/gss/gss_null_mech.c @@ -21,6 +21,9 @@ */ /* * Copyright (C) 2013, Trustees of Indiana University + * + * Copyright (c) 2014, Intel Corporation. + * * Author: Andrew Korty */ @@ -56,7 +59,7 @@ __u32 gss_import_sec_context_null(rawobj_t *inbuf, struct gss_ctx *gss_context) return GSS_S_FAILURE; gss_context->internal_ctx_id = null_context; - CDEBUG(D_SEC, "succesfully imported null context\n"); + CDEBUG(D_SEC, "successfully imported null context\n"); return GSS_S_COMPLETE; } @@ -75,7 +78,7 @@ __u32 gss_copy_reverse_context_null(struct gss_ctx *gss_context_old, null_context_old = gss_context_old->internal_ctx_id; memcpy(null_context_new, null_context_old, sizeof(*null_context_new)); gss_context_new->internal_ctx_id = null_context_new; - CDEBUG(D_SEC, "succesfully copied reverse null context\n"); + CDEBUG(D_SEC, "successfully copied reverse null context\n"); return GSS_S_COMPLETE; }