diff options
-rw-r--r-- | plugin/dnsnotify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/dnsnotify.c b/plugin/dnsnotify.c index d610414..fd9d722 100644 --- a/plugin/dnsnotify.c +++ b/plugin/dnsnotify.c @@ -322,7 +322,7 @@ dnsnotify_post_modify (const char *dn, LDAPMod **mods) for (m = mods; *m; ++m) { mod = *m; trace (mod->mod_type); - if (strcmp (mod->mod_type, dnsnotify_soa_attribute) == 0) { + if (strcasecmp (mod->mod_type, dnsnotify_soa_attribute) == 0) { if (load_soa_ns_attributes (dn, &soa, &ns)) { notify_dns_slaves (soa, ns); slapi_ch_array_free (ns); |