virgl/vtest: Use default socket name from protocol header

No functional change as the socket name is the same,
just removing the double definition of the path.

Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
Signed-off-by: Jakob Bornecrantz <jakob@collabora.com>
This commit is contained in:
Jakob Bornecrantz 2018-11-12 14:55:43 +00:00
parent e869481ef3
commit 6a9be6fc0c

View file

@ -30,8 +30,6 @@
#include <os/os_process.h>
#include <util/u_format.h>
/* connect to remote socket */
#define VTEST_SOCKET_NAME "/tmp/.virgl_test"
#include "virgl_vtest_winsys.h"
#include "virgl_vtest_public.h"
@ -163,7 +161,7 @@ int virgl_vtest_connect(struct virgl_vtest_winsys *vws)
memset(&un, 0, sizeof(un));
un.sun_family = AF_UNIX;
snprintf(un.sun_path, sizeof(un.sun_path), "%s", VTEST_SOCKET_NAME);
snprintf(un.sun_path, sizeof(un.sun_path), "%s", VTEST_DEFAULT_SOCKET_NAME);
do {
ret = 0;