Skip to content

Commit 9e4f24e

Browse files
committed
clang-format
1 parent ca4396b commit 9e4f24e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/phongo_client.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ static inline char* php_phongo_fetch_string(zval* zarr, const char* key)
689689
char* value;
690690

691691
value = php_array_fetch_string(zarr, key, &plen, &pfree);
692-
692+
693693
return pfree ? value : estrndup(value, plen);
694694
}
695695

@@ -729,12 +729,12 @@ static mongoc_ssl_opt_t* php_phongo_make_ssl_opt(mongoc_uri_t* uri, zval* driver
729729
/* Apply driver options that don't have a corresponding URI option. These
730730
* are set directly on the SSL options struct. */
731731
if (php_array_existsc(driverOptions, "ca_dir")) {
732-
ssl_opt->ca_dir = php_phongo_fetch_string(driverOptions, "ca_dir");
732+
ssl_opt->ca_dir = php_phongo_fetch_string(driverOptions, "ca_dir");
733733
any_ssl_option_set = true;
734734
}
735735

736736
if (php_array_existsc(driverOptions, "crl_file")) {
737-
ssl_opt->crl_file = php_phongo_fetch_string(driverOptions, "crl_file");
737+
ssl_opt->crl_file = php_phongo_fetch_string(driverOptions, "crl_file");
738738
any_ssl_option_set = true;
739739
}
740740

0 commit comments

Comments
 (0)