Skip to content

Commit 01c3bce

Browse files
committed
Last minute Whitespace / Debug output cleansing before merge to mainline
1 parent 2efc1a7 commit 01c3bce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/bin/psql/common.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ request_password_from_external_source(char **username, char **password, const ch
180180
bool found_username = false;
181181
jsmn_parser p;
182182
jsmntok_t t[128]; /* We expect no more than 128 tokens */
183-
183+
184184
strcpy(filebuffer, " ");
185185
/* Open the command for reading. */
186-
186+
187187
new_username = stripIAMFromUsernameIfExists(*username);
188188
stripped_host = stripSubDomainFromHost(host);
189189

@@ -204,7 +204,6 @@ request_password_from_external_source(char **username, char **password, const ch
204204
while (fgets(linebuffer, sizeof(linebuffer)-1, fp) != NULL)
205205
{
206206
strncat(filebuffer, linebuffer, sizeof(linebuffer));
207-
//printf("Filebuffer: %s\n", filebuffer);
208207
}
209208

210209
pclose (fp);

0 commit comments

Comments
 (0)