fixed #28183 - user module shadowfile update on SunOS (#28276)

* fixed #28183 - user module shadowfile update on SunOS
(cherry picked from commit b5a00d05d3)
This commit is contained in:
Mike 2017-08-19 16:14:58 -04:00 committed by Toshio Kuratomi
parent bb4283edc4
commit 75facf5324

View file

@ -1356,6 +1356,7 @@ class SunOS(User):
try:
lines = []
for line in open(self.SHADOWFILE, 'rb').readlines():
line = to_native(line, errors='surrogate_or_strict')
fields = line.strip().split(':')
if not fields[0] == self.name:
lines.append(line)
@ -1450,6 +1451,7 @@ class SunOS(User):
try:
lines = []
for line in open(self.SHADOWFILE, 'rb').readlines():
line = to_native(line, errors='surrogate_or_strict')
fields = line.strip().split(':')
if not fields[0] == self.name:
lines.append(line)