about summary refs log tree commit diff
path: root/elf/ldd.bash.in
diff options
context:
space:
mode:
Diffstat (limited to 'elf/ldd.bash.in')
-rw-r--r--elf/ldd.bash.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/ldd.bash.in b/elf/ldd.bash.in
index 32a9405422..6f4da3d8f9 100644
--- a/elf/ldd.bash.in
+++ b/elf/ldd.bash.in
@@ -49,7 +49,7 @@ Written by Roland McGrath and Ulrich Drepper."
   -d, --data-relocs       process data relocations
   -r, --function-relocs   process data and function relocations
   -v, --verbose           print all information
-Report bugs using the \`glibcbug' script to <bugs@gnu.ai.mit.edu>."
+Report bugs using the \`glibcbug' script to <bugs@gnu.org>."
     exit 0 ;;
   -d | --d | --da | --dat | --data | --data- | --data-r | --data-re | \
   --data-rel | --data-relo | --data-reloc | --data-relocs)
@@ -88,7 +88,7 @@ case $# in
 1)
   # We don't list the file name when there is only one.
   case "$1" in
-  /*) file="$1" ;;
+  */*) file="$1" ;;
   *) file="./$1" ;;
   esac
   if test ! -f "$file"; then
@@ -124,7 +124,7 @@ case $# in
   for file; do
     echo "${file}:"
     case "$file" in
-    /*) : ;;
+    */*) : ;;
     *) file="./$file" ;;
     esac
     if test ! -f "$file"; then