Module Name:    src
Committed By:   uwe
Date:           Mon Dec  2 21:54:33 UTC 2019

Modified Files:
        src/distrib/notes/common: extract-contrib-string.pl

Log Message:
Don't use an undefined variable.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/distrib/notes/common/extract-contrib-string.pl

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/notes/common/extract-contrib-string.pl
diff -u src/distrib/notes/common/extract-contrib-string.pl:1.16 src/distrib/notes/common/extract-contrib-string.pl:1.17
--- src/distrib/notes/common/extract-contrib-string.pl:1.16	Mon Dec  2 16:59:28 2019
+++ src/distrib/notes/common/extract-contrib-string.pl	Mon Dec  2 21:54:33 2019
@@ -303,7 +303,7 @@ while(<>) {
 		    }
 
 		    $copyrights{$msg} = 1;
-		    $lc_copyrights{$lc_msg} = 1;
+		    $lc_copyrights{lc($msg)} = 1;
 		}		 
 
 	    } else {

Reply via email to