Port bug fix from P4Ruby to P4Perl.
Certain variable names get
reused in tagged mode and this causes the hash members to lose
their earlier contents when the later value comes along. Specifically
this is otherLock and otherOpen in the output of "p4 fstat". This
slightly unpleasant fix simply renames the later variable name by
appending an "s" to it. So otherLock becomes otherLocks and otherOpen
becomes otherOpens.
Now otherOpen is an array containing the user/client of the other
users who have the file open and otherLock is a single-element
array containing the user/client of the user who has the file locked.
otherOpens contains the number of other users who have the file
opened.
otherLocks contains an empty string.
Since the latter two are quite redundant they may be explicitly
removed in a future release.