Typo in perl.c: Printing NO_EMBED for perl -V
Gisle Aas [Sun, 30 Mar 1997 19:22:11 +0000 (21:22 +0200)]
p5p-msgid: 199703301922.VAA13509@furubotn.sn.no

perl.c

diff --git a/perl.c b/perl.c
index fd39779..5846c82 100644 (file)
--- a/perl.c
+++ b/perl.c
@@ -619,13 +619,13 @@ setuid perl scripts securely.\n");
 #else
                sv_catpv(Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\",");
 #endif
-#if defined(DEBUGGING) || defined(NOEMBED) || defined(MULTIPLICITY)
+#if defined(DEBUGGING) || defined(NO_EMBED) || defined(MULTIPLICITY)
                strcpy(buf,"\"  Compile-time options:");
 #  ifdef DEBUGGING
                strcat(buf," DEBUGGING");
 #  endif
-#  ifdef NOEMBED
-               strcat(buf," NOEMBED");
+#  ifdef NO_EMBED
+               strcat(buf," NO_EMBED");
 #  endif
 #  ifdef MULTIPLICITY
                strcat(buf," MULTIPLICITY");