Merge in the libkdc/kdc configuration split from Andrew Bartlet <abartlet@samba.org>

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15529 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-06-30 01:03:35 +00:00
parent 3fe2a9b92f
commit 7132a9b084
18 changed files with 1204 additions and 730 deletions

View File

@@ -168,7 +168,6 @@ fix_salt(krb5_context context, hdb_entry *ent, int key_num)
{
size_t len;
int i;
krb5_error_code ret;
char *p;
len = 0;
@@ -219,7 +218,7 @@ int
mit_prop_dump(void *arg, const char *file)
{
krb5_error_code ret;
char buf [1024];
char line [2048];
FILE *f;
int lineno = 0;
struct hdb_entry ent;
@@ -230,8 +229,8 @@ mit_prop_dump(void *arg, const char *file)
if(f == NULL)
return errno;
while(fgets(buf, sizeof(buf), f)) {
char *p = buf, *q;
while(fgets(line, sizeof(line), f)) {
char *p = line, *q;
int i;