Skip to content

Commit

Permalink
Further adjustment to the fopen() call that opens SYS$LOGIN:SQLITERC.…
Browse files Browse the repository at this point in the history
…DAT.

I had missed an argument delimiter.  Thanks to @hb-- for catchign this one
too.

This references issue #5.

This also cleans up another mess I have with unconverted files.  Bring on
the finished libgit2!

Revert "Addition of L specifier to indicate a 64-bit float constant to prevent"

This reverts commit 79da44f.
  • Loading branch information
tesneddon committed Mar 30, 2013
1 parent 0f1a865 commit 4c24b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -2916,7 +2916,7 @@ static int process_sqliterc(
sqlite3_initialize();
sqliterc = "SQLITERC";
}
in = fopen(sqliterc,"rb" "dna=SYS$LOGIN:.DAT");
in = fopen(sqliterc,"rb", "dna=SYS$LOGIN:.DAT");
#endif /* !VMS */
if( in ){
if( stdin_is_interactive ){
Expand Down

0 comments on commit 4c24b97

Please sign in to comment.