Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source4/heimdal/kdc/log.c

    r414 r745  
    33 * (Royal Institute of Technology, Stockholm, Sweden).
    44 * All rights reserved.
     5 *
     6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
    57 *
    68 * Redistribution and use in source and binary forms, with or without
     
    3335
    3436#include "kdc_locl.h"
    35 RCSID("$Id$");
    3637
    3738void
    3839kdc_openlog(krb5_context context,
     40            const char *service,
    3941            krb5_kdc_configuration *config)
    4042{
    4143    char **s = NULL, **p;
    4244    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);
    4446    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);
    4648    if(s){
    4749        for(p = s; *p; p++)
Note: See TracChangeset for help on using the changeset viewer.