From: John Wolfe Date: Tue, 27 Oct 2020 00:29:54 +0000 (-0700) Subject: Terminology cleanup X-Git-Tag: stable-11.3.0~281 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90aeb31d98be541fdd2324e97160cef7abad93cf;p=thirdparty%2Fopen-vm-tools.git Terminology cleanup --- diff --git a/open-vm-tools/vgauth/service/main.c b/open-vm-tools/vgauth/service/main.c index 9f0f337f8..5d3d440e2 100644 --- a/open-vm-tools/vgauth/service/main.c +++ b/open-vm-tools/vgauth/service/main.c @@ -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 diff --git a/open-vm-tools/vgauth/service/servicePosix.c b/open-vm-tools/vgauth/service/servicePosix.c index ad275efd0..68bb9a9d0 100644 --- a/open-vm-tools/vgauth/service/servicePosix.c +++ b/open-vm-tools/vgauth/service/servicePosix.c @@ -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) {