Displaying 1 result from an estimated 1 matches for "bhints".
Did you mean:
hints
2002 Jan 07
1
rsync-2.5.1 / socket.c - unititialized variable breaks build.
...Sun Jan 6 08:40:51 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_src:socket.tpu on
6-JAN-20
02 08:40:51.01 OPENVMS_AXP */
/* -*- c-file-style: "linux" -*-
Copyright (C) 1992-2001 by Andrew Tridgell <tridge@samba.org>
@@ -105,7 +106,8 @@
bhints.ai_family = ai_family;
bhints.ai_socktype = ai_socktype;
bhints.ai_flags = AI_PASSIVE;
- if (getaddrinfo(bind_address, NULL, &bhints, &bres_all) == -1) {
+ error = getaddrinfo(bind_address, NULL, &bhints, &bres_all);
+ if (error == -1) {...