X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fvcard%2Fserv_vcard.c;fp=citadel%2Fmodules%2Fvcard%2Fserv_vcard.c;h=5c3a3a7259adfad4a3ef82f8963e23d3742e7a8b;hp=a86127fb42ad58f529e3e427eb0d2d45eb96eddc;hb=9571de81331e169c042c630800bff1bde499c8a9;hpb=9af50cb0641f0168c770554af3f446e35fc1008c diff --git a/citadel/modules/vcard/serv_vcard.c b/citadel/modules/vcard/serv_vcard.c index a86127fb4..5c3a3a725 100644 --- a/citadel/modules/vcard/serv_vcard.c +++ b/citadel/modules/vcard/serv_vcard.c @@ -880,7 +880,7 @@ void vcard_newuser(struct ctdluser *usbuf) { #endif // HAVE_GETPWUID_R snprintf(buf, sizeof buf, "%s@%s", pwd.pw_name, CtdlGetConfigStr("c_fqdn")); vcard_add_prop(v, "email;internet", buf); - need_default_vcard=0; + need_default_vcard = 0; } } #endif @@ -901,7 +901,7 @@ void vcard_newuser(struct ctdluser *usbuf) { if (Ctdl_LDAP_to_vCard(ldap_dn, v)) { /* Allow global address book and internet directory update without login long enough to write this. */ CC->vcard_updated_by_ldap++; /* Otherwise we'll only update the user config. */ - need_default_vcard=0; + need_default_vcard = 0; syslog(LOG_DEBUG, "LDAP Created Initial Vcard for %s\n",usbuf->fullname); } }