From: Sooyoung Ha Date: Thu, 6 Jul 2017 09:08:17 +0000 (+0900) Subject: client: increase limit of command message length X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9916b6db487d4b1b7347919e7a0f4ea707acb155;p=sdk%2Ftools%2Fsdb.git client: increase limit of command message length Signed-off-by: Sooyoung Ha --- diff --git a/src/sdb_client.c b/src/sdb_client.c index f5fca34..2dc68f7 100644 --- a/src/sdb_client.c +++ b/src/sdb_client.c @@ -66,7 +66,7 @@ int send_service_with_length(int fd, const char* service, int host_fd) { } return -1; } - else if (len > 1024) { + else if (len > 2048) { if(host_fd == 0) { print_error(SDB_MESSAGE_ERROR, ERR_GENERAL_TOO_LONG_SERVICE_NAME, NULL); }