Changeset 745 for trunk/server/source4/heimdal/kdc/log.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/heimdal/kdc/log.c
r414 r745 3 3 * (Royal Institute of Technology, Stockholm, Sweden). 4 4 * All rights reserved. 5 * 6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved. 5 7 * 6 8 * Redistribution and use in source and binary forms, with or without … … 33 35 34 36 #include "kdc_locl.h" 35 RCSID("$Id$");36 37 37 38 void 38 39 kdc_openlog(krb5_context context, 40 const char *service, 39 41 krb5_kdc_configuration *config) 40 42 { 41 43 char **s = NULL, **p; 42 44 krb5_initlog(context, "kdc", &config->logf); 43 s = krb5_config_get_strings(context, NULL, "kdc", "logging", NULL);45 s = krb5_config_get_strings(context, NULL, service, "logging", NULL); 44 46 if(s == NULL) 45 s = krb5_config_get_strings(context, NULL, "logging", "kdc", NULL);47 s = krb5_config_get_strings(context, NULL, "logging", service, NULL); 46 48 if(s){ 47 49 for(p = s; *p; p++)
Note:
See TracChangeset
for help on using the changeset viewer.