Detect SSL error code mishandling.
authorBodo Möller <bodo@openssl.org>
Sun, 8 Jan 2006 20:03:08 +0000 (20:03 +0000)
committerBodo Möller <bodo@openssl.org>
Sun, 8 Jan 2006 20:03:08 +0000 (20:03 +0000)
util/mkerr.pl

index 4cb48f996450fb69ac2f12e5201f4ffa1afbd0f3..a5ba05a7966d7593eb519b626a973960b0cd8b19 100644 (file)
@@ -205,6 +205,13 @@ while (($hdr, $lib) = each %libinc)
                }
        }
 
+       if ($lib eq "SSL") {
+               if ($rmax{$lib} >= 1000) {
+                       print STDERR "!! ERROR: SSL error codes 1000+ are reserved for alerts.\n";
+                       print STDERR "!!        Any new alerts must be added to $config.\n";
+                       print STDERR "\n";
+               }
+       }
        close IN;
 }