projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f62e04
)
Small fix: make istext static
author
Richard Levitte
<levitte@openssl.org>
Sun, 6 Sep 2015 20:43:25 +0000
(22:43 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Sun, 6 Sep 2015 21:41:12 +0000
(23:41 +0200)
This takes away a build failure in some cases.
Reviewed-by: Tim Hudson <tjh@openssl.org>
apps/apps.c
patch
|
blob
|
history
diff --git
a/apps/apps.c
b/apps/apps.c
index d4af862a18580ea0cac9a173da91684ae2c11963..5c36a374f5031b96e293768a240fbf53fd6e10ef 100644
(file)
--- a/
apps/apps.c
+++ b/
apps/apps.c
@@
-2721,7
+2721,7
@@
int raw_write_stdout(const void *buf, int siz)
* does impact behavior on some platform, such as differentiating between
* text and binary input/output on non-Unix platforms
*/
-
inline
int istext(int format)
+
static
int istext(int format)
{
return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
}