From: Rod Widdowson Date: Sun, 23 Jan 2011 14:32:04 +0000 (+0000) Subject: Windows: remove unused label in ntops.c X-Git-Tag: upstream/1.8.0_pre1^2~4242 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=40497fa667d15aaaa8f6befdc45cff40cc544616;p=packages%2Fo%2Fopenafs.git Windows: remove unused label in ntops.c The label 'retry' in nt_open is not used and was causing a warning. Remove it. Change-Id: I964d954e4f9cdb672c689a6e757a5f62bea8f65c Reviewed-on: http://gerrit.openafs.org/3747 Reviewed-by: Derrick Brashear Tested-by: BuildBot --- diff --git a/src/vol/ntops.c b/src/vol/ntops.c index 15cf55507..6931fb132 100644 --- a/src/vol/ntops.c +++ b/src/vol/ntops.c @@ -119,7 +119,6 @@ nt_open(char *name, int flags, int mode) break; } - retry: fh = CreateFile(name, nt_access, nt_share, NULL, nt_create, FandA, NULL); if (fh == INVALID_HANDLE_VALUE) { DWORD gle = GetLastError();