Update of /cvsroot/monetdb/MonetDB5/src/mal
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29664

Modified Files:
        mal_module.mx 
Log Message:
Handle empt function names in help commands.


Index: mal_module.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/mal/mal_module.mx,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- mal_module.mx       28 Aug 2007 20:20:24 -0000      1.57
+++ mal_module.mx       29 Aug 2007 19:16:34 -0000      1.58
@@ -823,12 +823,12 @@
                *fcnnme++ = 0;
                if( strchr(modnme,'*'))
                        modnme="*";
-               if( strchr(fcnnme,'*'))
+               if( strchr(fcnnme,'*') || *fcnnme==0)
                        fcnnme="*";
        } else {
                modnme="*";
                fcnnme=pat;
-               if( strchr(fcnnme,'*'))
+               if( strchr(fcnnme,'*') || *fcnnme==0)
                        fcnnme="*";
        }
 


-------------------------------------------------------------------------
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