mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Do not attempt to connect to the socket as a client if systemd is active, from
Julien Moutinho in GitHub issue 3345.
This commit is contained in:
		
							
								
								
									
										6
									
								
								client.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								client.c
									
									
									
									
									
								
							@@ -284,6 +284,12 @@ client_main(struct event_base *base, int argc, char **argv, uint64_t flags,
 | 
			
		||||
	log_debug("flags are %#llx", (unsigned long long)client_flags);
 | 
			
		||||
 | 
			
		||||
	/* Initialize the client socket and start the server. */
 | 
			
		||||
#ifdef HAVE_SYSTEMD
 | 
			
		||||
	if (systemd_activated()) {
 | 
			
		||||
		/* socket-based activation, do not even try to be a client. */
 | 
			
		||||
		fd = server_start(client_proc, flags, base, 0, NULL);
 | 
			
		||||
	} else
 | 
			
		||||
#endif
 | 
			
		||||
	fd = client_connect(base, socket_path, client_flags);
 | 
			
		||||
	if (fd == -1) {
 | 
			
		||||
		if (errno == ECONNREFUSED) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user