summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2004-05-30 09:55:42 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2004-05-30 09:55:42 +0000
commitf38111a4a71b3035c8d2f704eaf307ca006f414d (patch)
treedcde405e93a5bfc10ebc550edea72c5a4b943507 /net-mail/ssmtp/files/ssmtp-2.60.4-md5.patch
parentmake sure we KEYWORD before we release (diff)
downloadgentoo-2-f38111a4a71b3035c8d2f704eaf307ca006f414d.tar.gz
gentoo-2-f38111a4a71b3035c8d2f704eaf307ca006f414d.tar.bz2
gentoo-2-f38111a4a71b3035c8d2f704eaf307ca006f414d.zip
Moving to mail-mta/ssmtp
Diffstat (limited to 'net-mail/ssmtp/files/ssmtp-2.60.4-md5.patch')
-rw-r--r--net-mail/ssmtp/files/ssmtp-2.60.4-md5.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/net-mail/ssmtp/files/ssmtp-2.60.4-md5.patch b/net-mail/ssmtp/files/ssmtp-2.60.4-md5.patch
deleted file mode 100644
index 07e0ba0568b2..000000000000
--- a/net-mail/ssmtp/files/ssmtp-2.60.4-md5.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-diff -rup ssmtp-2.60/Makefile.in ssmtp-2.60-gentoo/Makefile.in
---- ssmtp-2.60/Makefile.in 2003-08-21 13:27:23.000000000 +1200
-+++ ssmtp-2.60-gentoo/Makefile.in 2003-08-21 13:30:41.000000000 +1200
-@@ -23,7 +23,7 @@ INSTALLED_REVALIASES_FILE=$(REVALIASES_F
- # Programs
- GEN_CONFIG=$(srcdir)/generate_config
-
--SRCS=ssmtp.c arpadate.c base64.c
-+SRCS=ssmtp.c arpadate.c base64.c @SRCS@
-
- OBJS=$(SRCS:.c=.o)
-
-diff -rup ssmtp-2.60/configure ssmtp-2.60-gentoo/configure
---- ssmtp-2.60/configure 2003-08-21 13:27:23.000000000 +1200
-+++ ssmtp-2.60-gentoo/configure 2003-08-21 13:31:54.000000000 +1200
-@@ -1503,6 +1503,7 @@ s%@FFLAGS@%$FFLAGS%g
- s%@DEFS@%$DEFS%g
- s%@LDFLAGS@%$LDFLAGS%g
- s%@LIBS@%$LIBS%g
-+s%@SRCS@%$SRCS%g
- s%@exec_prefix@%$exec_prefix%g
- s%@prefix@%$prefix%g
- s%@program_transform_name@%$program_transform_name%g
-diff -rup ssmtp-2.60/ssmtp.c ssmtp-2.60-gentoo/ssmtp.c
---- ssmtp-2.60/ssmtp.c 2003-08-21 13:27:23.000000000 +1200
-+++ ssmtp-2.60-gentoo/ssmtp.c 2003-08-21 13:31:20.000000000 +1200
-@@ -1257,7 +1257,7 @@ int ssmtp(char *argv[])
- /* Try to log in if username was supplied */
- if(auth_user) {
- #ifdef MD5AUTH
-- if(auth_pass == (char *)NULL)
-+ if(auth_pass == (char *)NULL) {
- auth_pass = strdup("");
- }
-
-@@ -1271,7 +1271,7 @@ int ssmtp(char *argv[])
- strncpy(challenge, strchr(buf,' ') + 1, sizeof(challenge));
-
- memset(buf, 0, sizeof(buf));
-- crammd5(challenge, authUsername, authPassword, buf);
-+ crammd5(challenge, auth_user, auth_pass, buf);
- }
- else {
- #endif