projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f42599
)
(quotearg_buffer): Use `7' as the mask, not `3'.
author
Jim Meyering
<jim@meyering.net>
Fri, 11 Dec 1998 14:14:16 +0000
(14:14 +0000)
committer
Jim Meyering
<jim@meyering.net>
Fri, 11 Dec 1998 14:14:16 +0000
(14:14 +0000)
From Bruno Haible.
lib/quotearg.c
patch
|
blob
|
history
diff --git
a/lib/quotearg.c
b/lib/quotearg.c
index b5fa7355df9a540892e145087d6c2419d636cc4c..4f21abb1c511b9d635bf6c8a9a5f7544658740b1 100644
(file)
--- a/
lib/quotearg.c
+++ b/
lib/quotearg.c
@@
-258,8
+258,8
@@
quotearg_buffer (char *buffer, size_t buffersize,
{
STORE ('\\');
STORE ('0' + (c >> 6));
- STORE ('0' + ((c >> 3) &
3
));
- c = '0' + (c &
3
);
+ STORE ('0' + ((c >> 3) &
7
));
+ c = '0' + (c &
7
);
goto store_c;
}
break;