From f9105fc04e041c426330dd1df31eb0b502e03ad4 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. Reviewed-on: http://gerrit.openafs.org/3747 Reviewed-by: Derrick Brashear Tested-by: BuildBot (cherry picked from commit 40497fa667d15aaaa8f6befdc45cff40cc544616) Change-Id: I7887e4ba31556b2bf6b1e2a4867aecd1e8b41297 Reviewed-on: http://gerrit.openafs.org/3860 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- src/vol/ntops.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vol/ntops.c b/src/vol/ntops.c index 18a847ccb..bbcfc9ae7 100644 --- a/src/vol/ntops.c +++ b/src/vol/ntops.c @@ -118,7 +118,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(); -- 2.39.5