diff options
author | hubertf <hubertf> | 1998-04-16 19:34:41 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1998-04-16 19:34:41 +0000 |
commit | 39ff7e9cec91417b81a838be5f89770217794fa3 (patch) | |
tree | 199d0e55b5df28455fb1e229789b91ec405f251f /mail | |
parent | 773cd43158dde3888188127bedbc9c970fdbac56 (diff) | |
download | pkgsrc-39ff7e9cec91417b81a838be5f89770217794fa3.tar.gz |
s/execl/execlp/ - fixes PR 5202 by Ty Sarna
Diffstat (limited to 'mail')
-rw-r--r-- | mail/elm/patches/patch-ad | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/elm/patches/patch-ad b/mail/elm/patches/patch-ad new file mode 100644 index 00000000000..b6a43b22d06 --- /dev/null +++ b/mail/elm/patches/patch-ad @@ -0,0 +1,11 @@ +]2;feyrer@miyu:/usr/pkgsrc/mail/elm/work.i386/elm2.4.ME+.32 ]1;miyu--- src/pgp.c Thu Apr 16 21:24:52 1998 ++++ src/pgp.c.orig Thu Apr 16 21:24:11 1998 +@@ -117,7 +117,7 @@ + dup (fd[1]); + close (fd[1]); + +- execlp(PGP_PATH, ++ execl(PGP_PATH, + PGP_PATH,"+verbose=0", "+language=en", "-kv", c, (char *)0); + + tmp = errno; |