From 40497fa667d15aaaa8f6befdc45cff40cc544616 Mon Sep 17 00:00:00 2001 From: Rod Widdowson Date: Sun, 23 Jan 2011 14:32:04 +0000 Subject: [PATCH] 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 --- src/vol/ntops.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vol/ntops.c b/src/vol/ntops.c index 15cf555074..6931fb132a 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();