temp commit - searching for bugs on buildbots
diff --git a/programs/http_client.c b/programs/http_client.c
index 246371f..60c314b 100644
--- a/programs/http_client.c
+++ b/programs/http_client.c
@@ -261,8 +261,9 @@
 		} else {
 			result = RETVAL_CATCHALL;
 		}
+		printf("result %d - errno %d\n", result, errno);
+
 		usrsctp_close(sock);
-		printf("errno = %d\n", errno);
 
 		goto out;
 	}
diff --git a/programs/http_client_upcall.c b/programs/http_client_upcall.c
index 9f4e957..5245fc7 100644
--- a/programs/http_client_upcall.c
+++ b/programs/http_client_upcall.c
@@ -310,8 +310,10 @@
 			} else {
 				result = RETVAL_CATCHALL;
 			}
+			printf("result %d - errno %d\n", result, errno);
+
 			usrsctp_close(sock);
-			printf("result = %d\n", result);
+
 			goto out;
 		}
 	}