X-Git-Url: https://git.openafs.org/?p=openafs.git;a=blobdiff_plain;f=src%2FWINNT%2Fbosctlsvc%2Fbosctlsvc.c;h=ae20e2c1222e79a743fcf7a1089e8507579501b6;hp=c58ac5365b165dd63d4e9fef2cb6f313fba209e9;hb=85caa4d1ded464b2d89eb8d2a14a6cedf93de08c;hpb=87c10e8d7f05dbbdf12ee9e8651dcec07e08af3f diff --git a/src/WINNT/bosctlsvc/bosctlsvc.c b/src/WINNT/bosctlsvc/bosctlsvc.c index c58ac53..ae20e2c 100644 --- a/src/WINNT/bosctlsvc/bosctlsvc.c +++ b/src/WINNT/bosctlsvc/bosctlsvc.c @@ -1,5 +1,10 @@ -/* Copyright (C) 1998 Transarc Corporation. All rights reserved. - * +/* + * Copyright 2000, International Business Machines Corporation and others. + * All Rights Reserved. + * + * This software has been released under the terms of the IBM Public + * License. For details, see the LICENSE file in the top-level source + * directory or online at http://www.openafs.org/dl/license10.html */ /* This file implements the AFS BOS control service. Basically, it provides @@ -228,14 +233,14 @@ BosCtlMain(DWORD argc, LPTSTR *argv) if ((bosCtlEvent[BOS_STOP_EVENT] = CreateEvent(NULL, FALSE /* manual reset */, FALSE /* initial state */, - NULL)) == NULL) { + TEXT("BosCtlSvc Stop Event"))) == NULL) { status = GetLastError(); } if ((bosCtlEvent[BOS_EXIT_EVENT] = CreateEvent(NULL, FALSE /* manual reset */, FALSE /* initial state */, - NULL)) == NULL) { + TEXT("BosCtlSvc Exit Event"))) == NULL) { status = GetLastError(); }