From 7842e38587634ed76d66d112f93893eba1cc2761 Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Wed, 27 Sep 2000 19:57:13 +0000 Subject: [PATCH] Minor fix. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2961 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/quotes/gnc-prices.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quotes/gnc-prices.in b/src/quotes/gnc-prices.in index 4181caccb0..4b72e5489b 100644 --- a/src/quotes/gnc-prices.in +++ b/src/quotes/gnc-prices.in @@ -132,7 +132,7 @@ die "Usage: $0 " if $#ARGV < 0; # open the file, read all of the accounts print "Opening file $ARGV[0]\n"; $sess = gnucash::xaccMallocSession (); -$grp = gnucash::xaccSessionBeginFile ($sess,$ARGV[0]); +$grp = gnucash::xaccSessionBegin ($sess, "file:".$ARGV[0]); die "failed to read file $ARGV[0], maybe its locked? " if (! $grp);