Blame SOURCES/gdb-rhbz1842691-corefile-mem-access-15of15.patch

0efd7d
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
0efd7d
From: Keith Seitz <keiths@redhat.com>
0efd7d
Date: Tue, 28 Jul 2020 09:49:56 -0400
0efd7d
Subject: gdb-rhbz1842691-corefile-mem-access-15of15.patch
0efd7d
0efd7d
;; Add period to help text for maint print core-file-backed-mappings
0efd7d
;; Kevin Buettner, RH BZ 1842961
0efd7d
0efd7d
   Author: Kevin Buettner <kevinb@redhat.com>
0efd7d
   Date:   Thu Jul 23 13:26:44 2020 -0700
0efd7d
0efd7d
    Fix BZ 26294 - Add period to help text for maint print core-file-backed-mappings
0efd7d
0efd7d
    gdb/ChangeLog:
0efd7d
0efd7d
    	PR corefiles/26294
0efd7d
    	* corelow.c (_initialize_corelow): Add period to help text
0efd7d
    	for "maintenance print core-file-backed-mappings".
0efd7d
0efd7d
diff --git a/gdb/corelow.c b/gdb/corelow.c
0efd7d
--- a/gdb/corelow.c
0efd7d
+++ b/gdb/corelow.c
0efd7d
@@ -1267,6 +1267,6 @@ Show whether CORE-FILE loads the build-id associated files automatically."),
0efd7d
 			   &setlist, &showlist);
0efd7d
   add_cmd ("core-file-backed-mappings", class_maintenance,
0efd7d
            maintenance_print_core_file_backed_mappings,
0efd7d
-	   _("Print core file's file-backed mappings"),
0efd7d
+	   _("Print core file's file-backed mappings."),
0efd7d
 	   &maintenanceprintlist);
0efd7d
 }