fix bug 46111 by testing for /<root@/ instead of / root@/
authoragriffis <agriffis@gentoo.org>
Mon, 29 Mar 2004 16:23:37 +0000 (16:23 -0000)
committeragriffis <agriffis@gentoo.org>
Mon, 29 Mar 2004 16:23:37 +0000 (16:23 -0000)
svn path=/; revision=97

trunk/src/echangelog/ChangeLog
trunk/src/echangelog/echangelog

index 2a100cb0525a239ea08970bef901d415701dc55c..b079e5335942541da000a25e59a4c88be51f4544 100644 (file)
@@ -1,3 +1,6 @@
+29 Mar 2004 Aron Griffis <agriffis@gentoo.org>
+       * fix bug 46111 by testing for /<root@/ instead of / root@/
+
 28 Mar 2004 Aron Griffis <agriffis@gentoo.org>
        * apply patch from plasmaroo, with minor modifications, to enable EDITOR
          and +- support
index 8b7805168282ee6a9ce64fb02dd327df5ebd66bc..3a8c3c545316170a32a3c2287f1ca5b7480a66e3 100644 (file)
@@ -163,7 +163,7 @@ $input =~ s/^/  /gm;        # add indentation
 $user = $ENV{'ECHANGELOG_USER'} ||
         sprintf("%s <%s\@gentoo.org>", (getpwuid($<))[6,0]);
 # Make sure that we didn't get "root"
-die "Please set ECHANGELOG_USER or run as non-root\n" if $user =~ / root@/;
+die "Please set ECHANGELOG_USER or run as non-root\n" if $user =~ /<root@/;
 $date = strftime("%d %b %Y", localtime);
 $entry = "$date; $user ";
 $entry .= join ', ', map "$actions{$_}$_", grep !/files.digest|Manifest/, @files;