Lots of random changes.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1107 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
12
lib/krb5/get_host_realm.c
Normal file
12
lib/krb5/get_host_realm.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "krb5_locl.h"
|
||||
|
||||
krb5_error_code
|
||||
krb5_get_host_realm(krb5_context context,
|
||||
const char *host,
|
||||
char ***realms)
|
||||
{
|
||||
*realms = malloc(2 * sizeof(char*));
|
||||
(*realms)[0] = strdup("FOO.SE");
|
||||
(*realms)[1] = NULL;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user