From 371b73fe1cc153f699efc34ec31dee7190afab46 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Wed, 22 Apr 1998 22:54:19 +0000 Subject: [PATCH] Fix mismatched parenthesis. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4791 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/popper/pop_dropcopy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appl/popper/pop_dropcopy.c b/appl/popper/pop_dropcopy.c index 8232236c1..499ca7be8 100644 --- a/appl/popper/pop_dropcopy.c +++ b/appl/popper/pop_dropcopy.c @@ -41,7 +41,7 @@ pop_dropcopy(POP *p, struct passwd *pwp) */ strcpy(template, POP_TMPDROP); - if ((tf_fd = mkstemp(template) < 0) || + if ((tf_fd = mkstemp(template)) < 0 || (tf = fdopen(tf_fd, "w+")) == NULL) { pop_log(p,POP_PRIORITY, "Unable to create temporary temporary maildrop '%s': %s",template,