]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 13 Sep 1998 15:00:27 +0000 (15:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 13 Sep 1998 15:00:27 +0000 (15:00 +0000)
1998-09-13  Ulrich Drepper  <drepper@cygnus.com>

* io/pwd.c (main): Add call to mtrace.

* malloc/mtrace.pl: Quote @ in string.

ChangeLog
io/pwd.c
malloc/mtrace.pl

index 3e6177284e52ab1adc5a3eabff31bf4f0e5ff984..47d33bb04af7acc9bcc1bf6fe2541fe5066822b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-09-13  Ulrich Drepper  <drepper@cygnus.com>
+
+       * io/pwd.c (main): Add call to mtrace.
+
+       * malloc/mtrace.pl: Quote @ in string.
+
 1998-09-13 19:25  Tim Waugh  <tim@cyberelk.demon.co.uk>
 
        * posix/wordexp.c (parse_arith): Fix memory leaks.
index 68ed1b924f599d732c87d02e1f19ed34474f220e..8dbd958762d06e15ed9e7983c9b36fc92398f009 100644 (file)
--- a/io/pwd.c
+++ b/io/pwd.c
 int
 main (void)
 {
-  char *dir = getcwd ((char *) NULL, 0);
+  char *dir;
+
+  /* Let this program be used for debugging.  */
+  mtrace ();
+
+  dir = getcwd ((char *) NULL, 0);
 
   if (dir == NULL)
     perror ("getcwd");
index e2032d4c0a859695447db704449d855e49246170..3cd217c0987268ddee6142014b9e2ee6c887fa26 100644 (file)
@@ -1,7 +1,7 @@
 #! @PERL@
 eval "exec @PERL@ -S $0 $*"
     if 0;
-# Copyright (C) 1997 Free Software Foundation, Inc.
+# Copyright (C) 1997, 1998 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 # Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1997.
 # Based on the mtrace.awk script.
@@ -30,7 +30,7 @@ sub usage {
     print "  --help       print this help, then exit\n";
     print "  --version    print version number, then exit\n";
     print "\n";
-    print "Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n";
+    print "Report bugs using the `glibcbug' script to <bugs\@gnu.org>.\n";
     exit 0;
 }
 
This page took 0.049703 seconds and 5 git commands to generate.