projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
431a184
)
Fix an obvious thinko
author
Eric Andersen
<andersen@codepoet.org>
Fri, 18 Oct 2002 22:31:02 +0000
(22:31 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Fri, 18 Oct 2002 22:31:02 +0000
(22:31 -0000)
-Erik
archival/rpm2cpio.c
patch
|
blob
|
history
diff --git
a/archival/rpm2cpio.c
b/archival/rpm2cpio.c
index 9372dc5e17057f610bbd0efd44ea72caaf84ee7d..ecd9e7801dbc8c9486747f9c98fd31af97ccc020 100644
(file)
--- a/
archival/rpm2cpio.c
+++ b/
archival/rpm2cpio.c
@@
-91,7
+91,7
@@
extern int rpm2cpio_main(int argc, char **argv)
skip_header(rpm_fd);
xread_all(rpm_fd, &magic, 2);
- if ((magic[0] != 0x1f) || (magic[1] != 0x8b))
+ if ((magic[0] != 0x1f) || (magic[1] != 0x8b))
{
error_msg_and_die("Invalid gzip magic");
}