commit - c8fcdde846ed3f6e2694cb0a3f7e6508b32098bf
commit + 6e58d3c9404cfe3f05729f28b8478e6b8c2155d2
blob - b35ab29a7bf7de38825cb9a4cb6b51c291725f48
blob + 43dacf20c7b2d23ff032cdb48ebbd511772503bf
--- gotsh/gotsh.c
+++ gotsh/gotsh.c
if (pledge("stdio recvfd unix unveil", NULL) == -1)
err(1, "pledge");
#endif
+
+ unix_socket_path = getenv("GOTD_UNIX_SOCKET");
+ if (unix_socket_path == NULL)
+ unix_socket_path = GOTD_UNIX_SOCKET;
+
+ error = apply_unveil(unix_socket_path);
+ if (error)
+ goto done;
+
if (strcmp(argv[0], GOT_SERVE_CMD_SEND) == 0 ||
strcmp(argv[0], GOT_SERVE_CMD_FETCH) == 0) {
if (argc != 2)
if (error)
goto done;
- unix_socket_path = getenv("GOTD_UNIX_SOCKET");
- if (unix_socket_path == NULL)
- unix_socket_path = GOTD_UNIX_SOCKET;
-
- error = apply_unveil(unix_socket_path);
- if (error)
- goto done;
-
-#ifndef PROFILE
- if (pledge("stdio recvfd unix", NULL) == -1)
- err(1, "pledge");
-#endif
if ((gotd_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
err(1, "socket");