summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/keytab/ktdefault.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/krb5/keytab/ktdefault.c')
-rw-r--r--src/lib/krb5/keytab/ktdefault.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/krb5/keytab/ktdefault.c b/src/lib/krb5/keytab/ktdefault.c
index 3d7ee0946c..7a4d68f1b2 100644
--- a/src/lib/krb5/keytab/ktdefault.c
+++ b/src/lib/krb5/keytab/ktdefault.c
@@ -1,3 +1,4 @@
+/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* lib/krb5/keytab/ktdefault.c
*
@@ -8,7 +9,7 @@
* require a specific license from the United States Government.
* It is the responsibility of any person or organization contemplating
* export to obtain such a license before exporting.
- *
+ *
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
* distribute this software and its documentation for any purpose and
* without fee is hereby granted, provided that the above copyright
@@ -22,7 +23,7 @@
* M.I.T. makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
- *
+ *
*
* Get a default keytab.
*/
@@ -38,9 +39,8 @@ krb5_kt_default(krb5_context context, krb5_keytab *id)
krb5_error_code retval;
if ((retval = krb5_kt_default_name(context, defname, sizeof(defname))))
- return retval;
+ return retval;
return krb5_kt_resolve(context, defname, id);
}
#endif /* LEAN_CLIENT */
-