From 15f832d1c2c14327b971cacc200d48fce3077043 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 9 Jan 2008 19:11:56 +0000 Subject: fix compiler warning --- lib/tftp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/tftp.c') diff --git a/lib/tftp.c b/lib/tftp.c index fcc193da3..69e3aba13 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2007, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -613,7 +613,8 @@ static CURLcode tftp_connect(struct connectdata *conn, bool *done) sessionhandle, deal with it */ Curl_reset_reqproto(conn); - if(!(state = conn->data->state.proto.tftp)) { + state = conn->data->state.proto.tftp; + if(!state) { state = conn->data->state.proto.tftp = calloc(sizeof(tftp_state_data_t), 1); if(!state) -- cgit v1.2.3