X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fsend.c;h=c8b77f7a547caf74aa26a48eec2caf99442ae674;hb=104b36e0a37bafe6620062334fa78d484dce321c;hp=43f4c0223de8178415429889a6eb0627dc408f67;hpb=7b98850d3b8b2453b473fdfb6db52f4aa3fe39b6;p=mmh diff --git a/uip/send.c b/uip/send.c index 43f4c02..c8b77f7 100644 --- a/uip/send.c +++ b/uip/send.c @@ -2,8 +2,6 @@ /* * send.c -- send a composed message * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -15,12 +13,6 @@ #include -#ifndef CYRUS_SASL -# define SASLminc(a) (a) -#else /* CYRUS_SASL */ -# define SASLminc(a) 0 -#endif /* CYRUS_SASL */ - static struct swit switches[] = { #define ALIASW 0 { "alias aliasfile", 0 }, @@ -96,12 +88,6 @@ static struct swit switches[] = { { "server host", 6 }, #define SNOOPSW 36 { "snoop", 5 }, -#define SASLSW 37 - { "sasl", SASLminc(4) }, -#define SASLMECHSW 38 - { "saslmech mechanism", SASLminc(-5) }, -#define USERSW 39 - { "user username", SASLminc(-4) }, #define ATTACHSW 40 { "attach", 6 }, #define ATTACHFORMATSW 41 @@ -264,7 +250,6 @@ main (int argc, char **argv) case SENDSW: case SOMLSW: case SNOOPSW: - case SASLSW: vec[vecp++] = --cp; continue; @@ -273,8 +258,6 @@ main (int argc, char **argv) case WIDTHSW: case CLIESW: case SERVSW: - case SASLMECHSW: - case USERSW: case PORTSW: vec[vecp++] = --cp; if (!(cp = *argp++) || *cp == '-') @@ -423,7 +406,7 @@ go_to_it: && (distsw = atoi (cp)) && altmsg) { vec[vecp++] = "-dist"; - distfile = getcpy (m_scratch (altmsg, invo_name)); + distfile = getcpy (m_mktemp2 (altmsg, invo_name, NULL, NULL)); if (link (altmsg, distfile) == NOTOK) { if (errno != EXDEV #ifdef EISREMOTE @@ -432,7 +415,7 @@ go_to_it: ) adios (distfile, "unable to link %s to", altmsg); free (distfile); - distfile = getcpy (m_tmpfil (invo_name)); + distfile = getcpy (m_mktemp2(NULL, invo_name, NULL, NULL)); { int in, out; struct stat st;