Don't include krb5_copy_context in a small heimdal

This commit is contained in:
Love Hornquist Astrand
2009-08-19 16:53:03 -07:00
parent 850f9be110
commit 2f4ca1347f

View File

@@ -328,8 +328,10 @@ out:
return ret; return ret;
} }
#ifndef HEIMDAL_SMALLER
/** /**
* Make a copy for the Kerberos 5 context, allocated krb5_contex shoud * Make a copy for the Kerberos 5 context, the new krb5_context shoud
* be freed with krb5_free_context(). * be freed with krb5_free_context().
* *
* @param context the Kerberos context to copy * @param context the Kerberos context to copy
@@ -421,6 +423,8 @@ krb5_copy_context(krb5_context context, krb5_context *out)
return ret; return ret;
} }
#endif
/** /**
* Frees the krb5_context allocated by krb5_init_context(). * Frees the krb5_context allocated by krb5_init_context().
* *