Update of /cvsroot/monetdb/clients/src/perl/MonetDB-CLI-MapiLib
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19561/MonetDB-CLI-MapiLib

Modified Files:
      Tag: Clients_1-20
        MapiLib.pm 
Log Message:
mapi_connect needs a database argument for some time now, ie time to bring
perl in line.


Index: MapiLib.pm
===================================================================
RCS file: /cvsroot/monetdb/clients/src/perl/MonetDB-CLI-MapiLib/MapiLib.pm,v
retrieving revision 1.2
retrieving revision 1.2.6.1
diff -u -d -r1.2 -r1.2.6.1
--- MapiLib.pm  3 Jan 2007 12:18:12 -0000       1.2
+++ MapiLib.pm  20 Oct 2007 19:14:19 -0000      1.2.6.1
@@ -9,9 +9,9 @@
 
 sub connect
 {
-  my ($class, $host, $port, $user, $pass, $lang) = @_;
+  my ($class, $host, $port, $user, $pass, $lang, $db) = @_;
 
-  my $h = MapiLib::mapi_connect( $host, $port, $user, $pass, $lang )
+  my $h = MapiLib::mapi_connect( $host, $port, $user, $pass, $lang, $db )
     or die 'Handle is undefined';
   die MapiLib::mapi_error_str( $h )
     if MapiLib::mapi_error( $h );


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to