From: John Kohl Date: Thu, 19 Apr 1990 14:14:45 +0000 (+0000) Subject: use manifest constant for file name X-Git-Tag: krb5-1.0-alpha2~885 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ffac46f52ee47e229d1f432005e9fe7692946599;p=krb5.git use manifest constant for file name git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@510 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/os/osconfig.c b/src/lib/krb5/os/osconfig.c index f4a814649..b9216b51d 100644 --- a/src/lib/krb5/os/osconfig.c +++ b/src/lib/krb5/os/osconfig.c @@ -5,9 +5,13 @@ * Copyright 1990 by the Massachusetts Institute of Technology. * * For copying and distribution information, please see the file - * . + * . * * Definition of default config file pathname. */ -char *krb5_config_file = "/etc/krb.conf"; +#include +#include + +char *krb5_config_file = DEFAULT_CONFIG_FILENAME; +