Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
authorWilfried Goesgens <willi@arangodb.com>
Wed, 7 Oct 2015 12:37:52 +0000 (14:37 +0200)
committerWilfried Goesgens <willi@arangodb.com>
Wed, 7 Oct 2015 12:37:52 +0000 (14:37 +0200)
citadel/modules/vcard/serv_vcard.c

index a86127fb42ad58f529e3e427eb0d2d45eb96eddc..5c3a3a7259adfad4a3ef82f8963e23d3742e7a8b 100644 (file)
@@ -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);
                }
            }