aboutsummaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2000-03-17 21:46:59 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:53 +0000
commitbb70624e964126b7ac4ff085ba163a9c35ffa18f (patch)
treeba2dd4add13ada94b1899c6d4aca80195b80b74b /error.c
parentb72432fdcc59300c6fe7c9d6c8a31ad3447933f5 (diff)
downloadandroid_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.tar.gz
android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.tar.bz2
android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.zip
Imported from ../bash-2.04.tar.gz.
Diffstat (limited to 'error.c')
-rw-r--r--error.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/error.c b/error.c
index 0652efe..2631ab4 100644
--- a/error.c
+++ b/error.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU General Public License along
with Bash; see the file COPYING. If not, write to the Free Software
- Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#include "config.h"
@@ -64,7 +64,7 @@ extern int give_terminal_to ();
/* The current maintainer of the shell. You change this in the
Makefile. */
#if !defined (MAINTAINER)
-#define MAINTAINER "bash-maintainers@prep.ai.mit.edu"
+#define MAINTAINER "bash-maintainers@gnu.org"
#endif
char *the_current_maintainer = MAINTAINER;
@@ -121,7 +121,10 @@ programming_error (reason, arg1, arg2, arg3, arg4, arg5)
}
#endif
+#if 0
fprintf (stderr, "Report this to %s\n", the_current_maintainer);
+#endif
+
fprintf (stderr, "Stopping myself...");
fflush (stderr);
@@ -245,7 +248,10 @@ programming_error (format, va_alist)
}
#endif
+#if 0
fprintf (stderr, "Report this to %s\n", the_current_maintainer);
+#endif
+
fprintf (stderr, "Stopping myself...");
fflush (stderr);
@@ -455,7 +461,6 @@ itrace (format, va_alist)
fflush(stderr);
}
-#if 0
/* A trace function for silent debugging -- doesn't require a control
terminal. */
void
@@ -471,7 +476,7 @@ trace (format, va_alist)
static FILE *tracefp = (FILE *)NULL;
if (tracefp == NULL)
- tracefp = fopen("/usr/tmp/bash-trace.log", "a+");
+ tracefp = fopen("/tmp/bash-trace.log", "a+");
if (tracefp == NULL)
tracefp = stderr;
@@ -493,7 +498,6 @@ trace (format, va_alist)
fflush(tracefp);
}
-#endif /* 0 */
#endif /* USE_VARARGS */