From 60bb2d0bddb3fba3f210679322036aec5289989e Mon Sep 17 00:00:00 2001
From: red-agent <hell.director@gmail.com>
Date: Mon, 5 Oct 2009 17:33:50 +0300
Subject: [PATCH] Process name should correspond to the binary name

---
 src/gajim.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gajim.py b/src/gajim.py
index 0182dec88e..f02c4166d4 100644
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -167,9 +167,9 @@ else:
 	libc = CDLL(find_library('c'))
 	
 	if sysname == 'Linux':
-		libc.prctl(15, 'Gajim', 0, 0, 0)
+		libc.prctl(15, 'gajim', 0, 0, 0)
 	elif sysname in ('FreeBSD', 'OpenBSD', 'NetBSD'):
-		libc.setproctitle('Gajim')
+		libc.setproctitle('gajim')
 
 	if gtk.pygtk_version < (2, 12, 0):
 		pritext = _('Gajim needs PyGTK 2.12 or above')
-- 
GitLab