summaryrefslogtreecommitdiff
path: root/misc/lifelines/files/patch-src_liflines_show.c
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2019-03-27 00:12:54 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2019-03-27 00:12:54 +0000
commitc2640d06ae220e9c3938dbe2142676fd60d7694a (patch)
treee22973ca4b6f39847a98b123e80bed9f9f4453e7 /misc/lifelines/files/patch-src_liflines_show.c
parentReinstate GSSAPI_NONE option. (diff)
misc/lifelines: Fix "person" entries show extraneous "Y" in DATE fields
- Fix patch files - Modernize with OPTIONS PR: 208698 Submitted by: matt@gsicomp.on.ca Reported by: david@catwhisker.org Approved by: matt@gsicomp.on.ca
Notes
Notes: svn path=/head/; revision=496931
Diffstat (limited to 'misc/lifelines/files/patch-src_liflines_show.c')
-rw-r--r--misc/lifelines/files/patch-src_liflines_show.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/misc/lifelines/files/patch-src_liflines_show.c b/misc/lifelines/files/patch-src_liflines_show.c
new file mode 100644
index 000000000000..df1bdfd1ee4f
--- /dev/null
+++ b/misc/lifelines/files/patch-src_liflines_show.c
@@ -0,0 +1,14 @@
+--- src/liflines/show.c.orig 2015-12-22 22:00:40 UTC
++++ src/liflines/show.c
+@@ -254,7 +254,10 @@ disp_person_birthdeath (ZSTR zstr, RECORD irec, struct
+ zs_apps(ztemp, place);
+ }
+ if (!date && !place) {
+- zs_apps(ztemp, "Y");
++ // Git #308: INDI with BIRT/DEAT without DATE/PLAC displays "Y"
++ // The 3.0.62 behaviour was to display nothing.
++ // This sounds more appropriate so reverting to that behaviour.
++ //zs_apps(ztemp, "Y");
+ }
+ if (ct>1) {
+ zs_appf(ztemp, " (%d alt)", ct-1);