if ((server_major != SDB_VERSION_MAJOR)
|| (server_minor != SDB_VERSION_MINOR)
|| (server_patch != SDB_VERSION_PATCH)) {
- fprintf(stderr, "* The version of SDB client (%d.%d.%d) is not same with that of SDB server (%d.%d.%d).\n It may cause version compatibility problems.\n It is recommended to use SDB server with version %d.%d.%d. *\n", SDB_VERSION_MAJOR, SDB_VERSION_MINOR, SDB_VERSION_PATCH, server_major, server_minor, server_patch, SDB_VERSION_MAJOR, SDB_VERSION_MINOR, SDB_VERSION_PATCH);
+ fprintf(stderr, "* The version of SDB client (%d.%d.%d) and server (%d.%d.%d) are different.\n This may cause version compatibility problems.\n It is recommended to use SDB server %d.%d.%d. *\n", SDB_VERSION_MAJOR, SDB_VERSION_MINOR, SDB_VERSION_PATCH, server_major, server_minor, server_patch, SDB_VERSION_MAJOR, SDB_VERSION_MINOR, SDB_VERSION_PATCH);
}
} else {
int ver = 0;
}
if(fd == -2) {
- fprintf(stdout,"* server not running. starting it now on port %d *\n", DEFAULT_SDB_PORT);
+ fprintf(stdout,"* Server is not running. Start it now on port %d *\n", DEFAULT_SDB_PORT);
launch_server:
if (!strcmp(service, "host:start-server:only-detect-tizen"))
only_detect_tizen_device = 1;
print_error(SDB_MESSAGE_ERROR, ERR_GENERAL_START_SERVER_FAIL, NULL);
return -1;
} else {
- fprintf(stdout,"* server started successfully *\n");
+ fprintf(stdout,"* Server has started successfully *\n");
}
}
const char* ERR_GENERAL_WRITE_MESSAGE_SIZE_FAIL = "failed to write message size";
const char* ERR_GENERAL_INVALID_PORT = "invalid port '%s'";
const char* ERR_GENERAL_START_SERVER_FAIL = "failed to start server";
-const char* ERR_GENERAL_SERVER_NOT_RUN = "server not running";
+const char* ERR_GENERAL_SERVER_NOT_RUN = "Server is not running";
const char* ERR_GENERAL_LOG_FAIL = "failed to log";
const char* ERR_GENERAL_DUPLICATE_FAIL = "failed to duplicate '%s'";
const char* ERR_GENERAL_LAUNCH_APP_FAIL = "failed to launch application";
const char* ERR_SYNC_NOT_DIRECTORY = "'%s' is not a directory";
const char* ERR_SYNC_LOCKED = "'%s' is locked";
const char* ERR_SYNC_CANNOT_ACCESS = "cannot access '%s'";
-const char* MSG_SYNC_SECURE_WARNING = "WARNING: Your data is to be sent over an unencrypted connection and could be read by others.";
+const char* MSG_SYNC_SECURE_WARNING = "WARNING: Your data are to be sent over an unencrypted connection and could be read by others.";
const char* ERR_CONNECT_MORE_THAN_ONE_TARGET = "more than one target found. Specify the target with -s option.";
const char* ERR_CONNECT_MORE_THAN_ONE_EMUL = "more than one emulator found. Specify the emulator with -e option.";