Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/kadmin/cli/keytab_local.c
34907 views
1
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
/*
3
* A wrapper around keytab.c used by kadmin.local to expose the -norandkey
4
* flag. This avoids building two object files from the same source file,
5
* which is otherwise tricky with compilers that don't support -c and -o
6
* at the same time.
7
*/
8
9
#define KADMIN_LOCAL
10
#include "keytab.c"
11
12