aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index ec383746f0..f706723f37 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -132,7 +132,21 @@ EShell_register_service (PortableServer_Servant servant,
const CORBA_char *uri,
CORBA_Environment *ev)
{
- printf ("toto\n");
+ char *service_type_desc = NULL;
+
+ switch (type) {
+
+ case Evolution_Shell_MAIL_STORE :
+ service_type_desc = "store";
+ break;
+ case Evolution_Shell_MAIL_TRANSPORT :
+ service_type_desc = "transport";
+ break;
+ default :
+ service_type_desc = "service of unknown type";
+ }
+
+ printf ("A component has registered a %s with uri \"%s\"\n", service_type_desc, uri);
}