Enlightenment CVS committal
Author : chaos
Project : e17
Module : apps/evfs
Dir : e17/apps/evfs/src/plugins/file
Modified Files:
evfs_fs_bzip2.c evfs_fs_ftp.c evfs_fs_gzip.c evfs_fs_posix.c
evfs_fs_samba.c evfs_fs_sftp.c evfs_fs_tar.c evfs_fs_trash.c
evfs_fs_vfolder.c
Log Message:
* Make the plugins quieter as a client exits
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_bzip2.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evfs_fs_bzip2.c 28 Dec 2006 16:58:16 -0000 1.5
+++ evfs_fs_bzip2.c 25 Jun 2007 07:15:23 -0000 1.6
@@ -112,8 +112,8 @@
int
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_bzip2.c for client %lu\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_bzip2.c for client
%lu\n",
+ client->id);*/
return 1;
}
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_ftp.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- evfs_fs_ftp.c 21 Apr 2006 15:10:17 -0000 1.1
+++ evfs_fs_ftp.c 25 Jun 2007 07:15:23 -0000 1.2
@@ -357,8 +357,8 @@
{
/*Temp, move to plugin unloading when avaliable. Closes the curl library,
and
* resets the connection cache. This will just destroy the cache when
moved. */
- printf("Received disconnect for client at evfs_fs_ftp.c for client %ld\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_ftp.c for client %ld\n",
+ client->id);*/
curl_global_cleanup();
ecore_hash_destroy(connections);
ecore_hash_new(ecore_str_hash, ecore_str_compare);
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_gzip.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evfs_fs_gzip.c 28 Dec 2006 16:58:16 -0000 1.5
+++ evfs_fs_gzip.c 25 Jun 2007 07:15:23 -0000 1.6
@@ -121,8 +121,8 @@
int
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_gzip.c for client %lu\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_gzip.c for client
%lu\n",
+ client->id);*/
return 1;
}
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_posix.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- evfs_fs_posix.c 28 Dec 2006 17:03:57 -0000 1.7
+++ evfs_fs_posix.c 25 Jun 2007 07:15:23 -0000 1.8
@@ -123,16 +123,16 @@
char *key;
Ecore_List *watched_keys = ecore_list_new();
- printf("Received disconnect for client at evfs_fs_posix.c for client %lu\n",
+ /*printf("Received disconnect for client at evfs_fs_posix.c for client
%lu\n",
client->id);
- printf("Scanning monitors for client and removing...\n");
+ printf("Scanning monitors for client and removing...\n");*/
mon_list = ecore_hash_keys(posix_monitor_hash);
if (mon_list)
{
while ((key = ecore_list_remove_first(mon_list)))
{
- printf("Looking for clients for '%s'\n", key);
+ /*printf("Looking for clients for '%s'\n", key);*/
indiv_list = ecore_hash_get(posix_monitor_hash, key);
ecore_list_goto_first(indiv_list);
@@ -149,7 +149,7 @@
}
else
{
- printf("No directories/files monitored by any client\n");
+ /*printf("No directories/files monitored by any client\n");*/
}
while ((key = ecore_list_remove_first(watched_keys)))
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_samba.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- evfs_fs_samba.c 17 Sep 2006 09:15:07 -0000 1.10
+++ evfs_fs_samba.c 25 Jun 2007 07:15:23 -0000 1.11
@@ -68,8 +68,8 @@
int
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_samba.c for client %d\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_samba.c for client
%d\n",
+ client->id);*/
}
void
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_sftp.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- evfs_fs_sftp.c 28 Dec 2006 16:58:16 -0000 1.7
+++ evfs_fs_sftp.c 25 Jun 2007 07:15:23 -0000 1.8
@@ -808,8 +808,8 @@
int
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_sftp.c for client %lu\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_sftp.c for client
%lu\n",
+ client->id);*/
return 1;
}
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_tar.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- evfs_fs_tar.c 28 Dec 2006 17:20:57 -0000 1.7
+++ evfs_fs_tar.c 25 Jun 2007 07:15:23 -0000 1.8
@@ -332,8 +332,8 @@
int
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_tar.c for client %lu\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_tar.c for client %lu\n",
+ client->id);*/
return 1;
}
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_trash.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- evfs_fs_trash.c 28 Dec 2006 16:51:13 -0000 1.13
+++ evfs_fs_trash.c 25 Jun 2007 07:15:23 -0000 1.14
@@ -208,8 +208,8 @@
int
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_posix.c for client %lu\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_posix.c for client
%lu\n",
+ client->id);*/
return 0;
}
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/plugins/file/evfs_fs_vfolder.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- evfs_fs_vfolder.c 28 Dec 2006 16:58:16 -0000 1.16
+++ evfs_fs_vfolder.c 25 Jun 2007 07:15:23 -0000 1.17
@@ -129,7 +129,7 @@
evfs_client_disconnect(evfs_client * client)
{
- printf("Received disconnect for client at evfs_fs_vfolder.c for client
%lu\n",
- client->id);
+ /*printf("Received disconnect for client at evfs_fs_vfolder.c for client
%lu\n",
+ client->id);*/
return 1;
}
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs