projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
aca803d
)
fix for unpack('u') failures on OS/390
Peter Prymmer [Mon, 10 Aug 1998 16:58:22 +0000 (09:58 -0700)]
Message-Id: <
9808102358
.AA10616@forte.com>
p4raw-id: //depot/maint-5.005/perl@1793
pp.c
patch
|
blob
|
blame
|
history
diff --git
a/pp.c
b/pp.c
index
35b1552
..
1320486
100644
(file)
--- a/
pp.c
+++ b/
pp.c
@@
-3574,7
+3574,7
@@
PP(pp_unpack)
char hunk[4];
hunk[3] = '\0';
- len = (*s++ - ' ') & 077;
+ len = uudmap[*s++] & 077;
while (len > 0) {
if (s < strend && ISUUCHAR(*s))
a = uudmap[*s++] & 077;