@@ -337,13 +337,13 @@ static VALUE rb_connect(VALUE self, VALUE user, VALUE pass, VALUE host, VALUE po
337
337
VALUE rv ;
338
338
GET_CLIENT (self );
339
339
340
- args .host = NIL_P (host ) ? NULL : StringValueCStr (host );
341
- args .unix_socket = NIL_P (socket ) ? NULL : StringValueCStr (socket );
342
- args .port = NIL_P (port ) ? 0 : NUM2INT (port );
343
- args .user = NIL_P (user ) ? NULL : StringValueCStr (user );
344
- args .passwd = NIL_P (pass ) ? NULL : StringValueCStr (pass );
345
- args .db = NIL_P (database ) ? NULL : StringValueCStr (database );
346
- args .mysql = wrapper -> client ;
340
+ args .host = NIL_P (host ) ? NULL : StringValueCStr (host );
341
+ args .unix_socket = NIL_P (socket ) ? NULL : StringValueCStr (socket );
342
+ args .port = NIL_P (port ) ? 0 : NUM2INT (port );
343
+ args .user = NIL_P (user ) ? NULL : StringValueCStr (user );
344
+ args .passwd = NIL_P (pass ) ? NULL : StringValueCStr (pass );
345
+ args .db = NIL_P (database ) ? NULL : StringValueCStr (database );
346
+ args .mysql = wrapper -> client ;
347
347
args .client_flag = NUM2ULONG (flags );
348
348
349
349
if (wrapper -> connect_timeout )
@@ -1183,9 +1183,9 @@ static VALUE set_ssl_options(VALUE self, VALUE key, VALUE cert, VALUE ca, VALUE
1183
1183
GET_CLIENT (self );
1184
1184
1185
1185
mysql_ssl_set (wrapper -> client ,
1186
- NIL_P (key ) ? NULL : StringValueCStr (key ),
1187
- NIL_P (cert ) ? NULL : StringValueCStr (cert ),
1188
- NIL_P (ca ) ? NULL : StringValueCStr (ca ),
1186
+ NIL_P (key ) ? NULL : StringValueCStr (key ),
1187
+ NIL_P (cert ) ? NULL : StringValueCStr (cert ),
1188
+ NIL_P (ca ) ? NULL : StringValueCStr (ca ),
1189
1189
NIL_P (capath ) ? NULL : StringValueCStr (capath ),
1190
1190
NIL_P (cipher ) ? NULL : StringValueCStr (cipher ));
1191
1191
0 commit comments