diff options
author | Simon Busch <morphis@gravedo.de> | 2011-10-30 18:32:27 +0100 |
---|---|---|
committer | Simon Busch <morphis@gravedo.de> | 2011-10-30 18:32:37 +0100 |
commit | 9e6ff91f3ae77e6e4006e59aa8102b788887f9fc (patch) | |
tree | 02ed2190ebc8bb4a9ce852329eacd080d7e76899 | |
parent | 924962f733f2b813af0e1ea72c8879a3a57a1be3 (diff) | |
download | external_libsamsung-ipc-9e6ff91f3ae77e6e4006e59aa8102b788887f9fc.zip external_libsamsung-ipc-9e6ff91f3ae77e6e4006e59aa8102b788887f9fc.tar.gz external_libsamsung-ipc-9e6ff91f3ae77e6e4006e59aa8102b788887f9fc.tar.bz2 |
Setting the the handlers for several operations should be done in higher levels of the app stack
Signed-off-by: Simon Busch <morphis@gravedo.de>
-rw-r--r-- | samsung-ipc/ipc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/samsung-ipc/ipc.c b/samsung-ipc/ipc.c index ecb2ad2..2119464 100644 --- a/samsung-ipc/ipc.c +++ b/samsung-ipc/ipc.c @@ -71,10 +71,6 @@ struct ipc_client* ipc_client_new(int client_type) client->handlers = (struct ipc_handlers *) malloc(sizeof(struct ipc_handlers)); client->log_handler = log_handler_default; - /* FIXME: WE DONT WANT THIS FOR FSO!!! */ - /* Set default handlers */ - ipc_client_set_handlers(client, &ipc_default_handlers); - return client; } |