Untabify a recent gssapi_alloc.h change
[krb5.git] / src / lib / gssapi / generic / gssapi_alloc.h
index a28533ed4f802b5610adadfa34cb9c14f7aa896e..713c89537e945168fbcc605e39066576560b0d56 100644 (file)
@@ -1,3 +1,4 @@
+/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
 /* To the extent possible under law, Painless Security, LLC has waived
  * all copyright and related or neighboring rights to GSS-API Memory
  * Management Header. This work is published from: United States.
@@ -60,7 +61,7 @@ gssalloc_strdup(const char *str)
     char *copy = gssalloc_malloc(size);
     if (copy) {
         memcpy(copy, str, size);
-       copy[size-1] = '\0';
+        copy[size-1] = '\0';
     }
     return copy;
 }