Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/tests/hammer/pp.c
34889 views
1
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
/* tests/hammer/pp.c */
3
/*
4
* Copyright 1991 by the Massachusetts Institute of Technology.
5
* All Rights Reserved.
6
*
7
* For copying and distribution information, please see the file
8
* <krb5/copyright.h>.
9
*/
10
11
#include "krb5.h"
12
13
void
14
print_principal(p)
15
krb5_principal p;
16
{
17
char *buf;
18
krb5_error_code retval;
19
20
if (retval = krb5_unparse_name(p, &buf)) {
21
com_err("DEBUG: Print_principal", retval,
22
"while unparsing name");
23
exit(1);
24
}
25
printf("%s\n", buf);
26
free(buf);
27
}
28
29