Univention Bugzilla – Attachment 5960 Details for
Bug 25196
Absturz des UMC-Servers bei speziellem Operationset
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Correct traceback
bug25196_correction.patch (text/plain), 795 bytes, created by
Alexander Kläser
on 2014-06-13 16:43:03 CEST
(
hide
)
Description:
Correct traceback
Filename:
MIME Type:
Creator:
Alexander Kläser
Created:
2014-06-13 16:43:03 CEST
Size:
795 bytes
patch
obsolete
>--- /usr/lib/pymodules/python2.6/univention/management/console/acl.py.orig 2014-06-13 16:16:39.104000000 +0200 >+++ /usr/lib/pymodules/python2.6/univention/management/console/acl.py 2014-06-13 16:39:32.636000000 +0200 >@@ -153,7 +153,11 @@ > return hosts > > def __parse_command(self, command): >- data, sep, command = command.partition(':') >+ if command.find( ':' ) != -1: >+ data = command.split( ':' )[ 1 ] >+ command = command.split( ':' )[ 0 ] >+ else: >+ data = [ ] > options = {} > if data: > elements = data.split(',') >@@ -225,7 +229,7 @@ > if cmd1 == cmd2: > return ACLs.MATCH_FULL > >- if cmd1[ -1 ] == '*' and cmd2.startswith( cmd1[ : -1 ] ): >+ if cmd1.endswith('*') and cmd2.startswith( cmd1[ : -1 ] ): > return ACLs.MATCH_PART > > return ACLs.MATCH_NONE
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 25196
:
5936
|
5946
|
5947
| 5960