Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/lib


Modified Files:
        libevfs.c 


Log Message:
Handle '.' characters in keywords, to handle sirkha's ftp plugin

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/lib/libevfs.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- libevfs.c   31 Oct 2005 03:32:55 -0000      1.17
+++ libevfs.c   2 Nov 2005 09:08:22 -0000       1.18
@@ -189,7 +189,7 @@
        //printf ("Lexing '%s'\n", uri);
 
        while (j < strlen(uri)) {
-               new_alpha = isalnum(l_uri[i]) | isspace(l_uri[i]);      
+               new_alpha = isalnum(l_uri[i]) | isspace(l_uri[i]) | l_uri[i] == 
'.';    
                
                strncpy(tmp_tok, l_uri, 3);
                tmp_tok[3] = '\0';




-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to