Module Name:    src
Committed By:   christos
Date:           Mon May 12 18:46:27 UTC 2014

Modified Files:
        src/crypto/external/bsd/heimdal/dist/lib/krb5: send_to_kdc.c

Log Message:
kill extra )


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
    src/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c
diff -u src/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c:1.2 src/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c:1.3
--- src/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c:1.2	Mon May 12 11:20:41 2014
+++ src/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c	Mon May 12 14:46:27 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: send_to_kdc.c,v 1.2 2014/05/12 15:20:41 christos Exp $	*/
+/*	$NetBSD: send_to_kdc.c,v 1.3 2014/05/12 18:46:27 christos Exp $	*/
 
 /*
  * Copyright (c) 1997 - 2002 Kungliga Tekniska Högskolan
@@ -62,7 +62,7 @@ timed_connect(int s, struct addrinfo *ad
     if (flags == -1)
 	return -1;
 
-    if (fcntl(s, F_SETFL, flags | O_NONBLOCK)) == -1)
+    if (fcntl(s, F_SETFL, flags | O_NONBLOCK) == -1)
 	return -1;
     ret = connect(s, addr->ai_addr, addr->ai_addrlen);
     if (ret == -1 && errno != EINPROGRESS)

Reply via email to