aboutsummaryrefslogtreecommitdiff
path: root/security/gnupg1/files/patch-openfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/gnupg1/files/patch-openfile.c')
-rw-r--r--security/gnupg1/files/patch-openfile.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/security/gnupg1/files/patch-openfile.c b/security/gnupg1/files/patch-openfile.c
new file mode 100644
index 000000000000..833b06cdafbf
--- /dev/null
+++ b/security/gnupg1/files/patch-openfile.c
@@ -0,0 +1,12 @@
+--- g10/openfile.c.orig Tue Nov 28 07:13:53 2006
++++ g10/openfile.c Tue Nov 28 07:18:30 2006
+@@ -144,8 +144,8 @@
+
+ s = _("Enter new filename");
+
+- n = strlen(s) + namelen + 10;
+ defname = name && namelen? make_printable_string( name, namelen, 0): NULL;
++ n = strlen(s) + (defname?strlen (defname):0) + 10;
+ prompt = xmalloc(n);
+ if( defname )
+ sprintf(prompt, "%s [%s]: ", s, defname );