Process name should correspond to the binary name

This commit is contained in:
red-agent 2009-10-05 17:33:50 +03:00
parent 563a2453ba
commit 60bb2d0bdd
1 changed files with 2 additions and 2 deletions

View File

@ -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')