Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/demo


Modified Files:
        evfs_demo.c 


Log Message:
* Create the concept of an 'evfs_stat', because 'struct stat' cannot be 
portably transmitted between processes (because of byte-alignment)
* Checkin latest version of John Kha's FTP plugin.  Note that there are still 
some issues with directory listing here.


===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/demo/evfs_demo.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- evfs_demo.c 6 Nov 2005 04:54:24 -0000       1.20
+++ evfs_demo.c 9 Nov 2005 23:51:05 -0000       1.21
@@ -13,11 +13,11 @@
        } else if (data->type == EVFS_EV_STAT) {
                printf("Received stat event for file '%s'!\n", 
data->resp_command.file_command.files[0]->path);
                printf("File size: %ld\n", data->stat.stat_obj.st_size);
-               printf("File inode: %ld\n", data->stat.stat_obj.st_ino);
+               //printf("File inode: %ld\n", data->stat.stat_obj.st_ino);
                printf("File uid: %ld\n", data->stat.stat_obj.st_uid);
                printf("File gid: %ld\n", data->stat.stat_obj.st_gid);
-               printf("Last access: %ld\n", data->stat.stat_obj.st_atime);
-               printf("Last modify : %ld\n", data->stat.stat_obj.st_mtime);
+               printf("Last access: %ld\n", data->stat.stat_obj.ist_atime);
+               printf("Last modify : %ld\n", data->stat.stat_obj.ist_mtime);
        } else if (data->type == EVFS_EV_DIR_LIST) {
                evfs_filereference* ref;
                




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