Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/heimdal/dist/lib/krb5 kill extra )



details:   https://anonhg.NetBSD.org/src/rev/13b6f2ca497e
branches:  trunk
changeset: 329167:13b6f2ca497e
user:      christos <christos%NetBSD.org@localhost>
date:      Mon May 12 18:46:27 2014 +0000

description:
kill extra )

diffstat:

 crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 40046d62fb8d -r 13b6f2ca497e crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c
--- a/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c   Mon May 12 17:27:23 2014 +0000
+++ b/crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c   Mon May 12 18:46:27 2014 +0000
@@ -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 @@
     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)



Home | Main Index | Thread Index | Old Index