]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Terminology cleanup
authorJohn Wolfe <jwolfe@vmware.com>
Tue, 27 Oct 2020 00:29:54 +0000 (17:29 -0700)
committerJohn Wolfe <jwolfe@vmware.com>
Tue, 27 Oct 2020 00:29:54 +0000 (17:29 -0700)
open-vm-tools/vgauth/service/main.c
open-vm-tools/vgauth/service/servicePosix.c

index 9f0f337f8a306f75c514eeae26adf86371a4002e..5d3d440e20abf99d76b7b23b8764031fd442bcc3 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 2011-2019 VMware, Inc. All rights reserved.
+ * Copyright (C) 2011-2020 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -104,7 +104,7 @@ ServiceHelp(char *arg)
    printf("\t-s\tRun as a normal program, sending logging to a file.\n");
 #else
 #if USE_POSIX_SERVICE
-   printf("\t-k\tKill the running instance that was started as a daemon.\n");
+   printf("\t-k\tShut down the running instance that was started as a daemon.\n");
    printf("\t-s\tRun in daemon mode.\n");
    printf("\t-b\tRun in background mode, using a pid lock file.\n");
 #endif
index ad275efd04f9e5678952d268cabf47e123900de8..68bb9a9d0ef89025cf0f1a79affd8a8cb50628aa 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 2011-2017,2019 VMware, Inc. All rights reserved.
+ * Copyright (C) 2011-2017,2019-2020 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -174,7 +174,7 @@ ServiceSuicide(const char *pidPath)
                  pid);
          goto done;
       }
-      Debug("%s: killing service at pid %d\n", __FUNCTION__, pid);
+      Debug("%s: sending SIGTERM to service at pid %d\n", __FUNCTION__, pid);
       ret = kill(pid, SIGTERM);
       errCode = errno;
       if (0 != ret) {