From eab5a80417540369c9d8bf2c3bf225cd43ddfb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sat, 18 Aug 2001 10:48:55 +0000 Subject: [PATCH] Remove a blank line that snuck in with the previous commit. Set the default timeout to 120 seconds instead of 0 (no timeout). --- usr.bin/fetch/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index f48faebf0f7..a8ef3a68d2e 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -70,7 +70,7 @@ int R_flag; /* -R: don't delete partially transferred files */ int r_flag; /* -r: restart previously interrupted transfer */ off_t S_size; /* -S: require size to match */ int s_flag; /* -s: show size, don't fetch */ -u_int T_secs = 0; /* -T: transfer timeout in seconds */ +u_int T_secs = 120; /* -T: transfer timeout in seconds */ int t_flag; /*! -t: workaround TCP bug */ int U_flag; /* -U: do not use high ports */ int v_level = 1; /* -v: verbosity level */