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:
f2f351c
)
Get rid of a nasty debugging message which was forgotten here...
author
Ralf S. Engelschall
<rse@openssl.org>
Tue, 23 Feb 1999 08:53:04 +0000
(08:53 +0000)
committer
Ralf S. Engelschall
<rse@openssl.org>
Tue, 23 Feb 1999 08:53:04 +0000
(08:53 +0000)
apps/req.c
patch
|
blob
|
history
diff --git
a/apps/req.c
b/apps/req.c
index 9a100aef7596c4521376636c950b2ef864594a04..8535a1e6dbcee6f0cd218f3626f6b1d28dc81e7b 100644
(file)
--- a/
apps/req.c
+++ b/
apps/req.c
@@
-1189,7
+1189,9
@@
char *end;
slen = strlen(str);
if(elen > slen) return 1;
tmp = str + slen - elen;
-fprintf(stderr, "Matching %s, %s %s\n", str, end, tmp);
+#ifdef DEBUG
+ fprintf(stderr, "Matching %s, %s %s\n", str, end, tmp);
+#endif
return strcmp(tmp, end);
}