summaryrefslogtreecommitdiffstats
path: root/gdbmdump.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2011-01-07 10:20:53 -0500
committerNalin Dahyabhai <nalin@redhat.com>2011-01-07 10:20:53 -0500
commit62fe8e1a5caa605fb77dabc01899fc9b5053b5eb (patch)
tree253eac9f31d8f1bf960a5b66500d05f14e11fc03 /gdbmdump.c
parent9bfa2050195a6a925c14926b3afbb48689503779 (diff)
downloadgdbmdump-62fe8e1a5caa605fb77dabc01899fc9b5053b5eb.tar.gz
gdbmdump-62fe8e1a5caa605fb77dabc01899fc9b5053b5eb.tar.xz
gdbmdump-62fe8e1a5caa605fb77dabc01899fc9b5053b5eb.zip
- also always make sure to hex-encode newline other whitespace valuesHEADmaster
Diffstat (limited to 'gdbmdump.c')
-rw-r--r--gdbmdump.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdbmdump.c b/gdbmdump.c
index afd177a..8aa8be5 100644
--- a/gdbmdump.c
+++ b/gdbmdump.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2008,2010 Red Hat, Inc.
+ * Copyright 2008,2010,2011 Red Hat, Inc.
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -66,8 +66,7 @@ dump_entry(datum key, datum value)
putchar(' ');
for (i = 0; i < key.dsize; i++) {
if (isprint(key.dptr[i]) &&
- (key.dptr[i] != ' ') &&
- (key.dptr[i] != '\t') &&
+ !isspace(key.dptr[i]) &&
(key.dptr[i] != '\\')) {
putchar(key.dptr[i]);
} else {