diff options
author | Paul Smith <psmith@gnu.org> | 2012-03-04 00:24:20 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2012-03-04 00:24:20 +0000 |
commit | 23c2b99e9d23e726ede9442728272616e66d416f (patch) | |
tree | 80b69e1fde31e8c4a39ee43b57546a06f77de353 /remote-cstms.c | |
parent | 405c89ba1e33e013f7e582e28f969fc3f39b9b2c (diff) | |
download | gunmake-23c2b99e9d23e726ede9442728272616e66d416f.tar.gz |
Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.
Fixes Savannah bug #34530.
Diffstat (limited to 'remote-cstms.c')
-rw-r--r-- | remote-cstms.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/remote-cstms.c b/remote-cstms.c index bbdf1c3..92d1ed4 100644 --- a/remote-cstms.c +++ b/remote-cstms.c @@ -34,7 +34,7 @@ this program. If not, see <http://www.gnu.org/licenses/>. */ char *remote_description = "Customs"; -/* File name of the Customs `export' client command. +/* File name of the Customs 'export' client command. A full path name can be used to avoid some path-searching overhead. */ #define EXPORT_COMMAND "/usr/local/bin/export" @@ -175,7 +175,7 @@ start_remote_job (char **argv, char **envp, int stdin_fd, len = Customs_MakeWayBill (&permit, normalized_cwd, argv[0], argv, envp, retport, waybill); - /* Modify the waybill as if the remote child had done `child_access ()'. */ + /* Modify the waybill as if the remote child had done 'child_access ()'. */ { WayBill *wb = (WayBill *) waybill; wb->ruid = wb->euid; @@ -232,7 +232,7 @@ start_remote_job (char **argv, char **envp, int stdin_fd, } else if (pid == 0) { - /* Child side. Run `export' to handle the connection. */ + /* Child side. Run 'export' to handle the connection. */ static char sock_buf[20], retsock_buf[20], id_buf[20]; static char *new_argv[6] = { EXPORT_COMMAND, "-id", sock_buf, retsock_buf, id_buf, 0 }; @@ -253,7 +253,7 @@ start_remote_job (char **argv, char **envp, int stdin_fd, exec_command (new_argv, envp); } - /* Parent side. Return the `export' process's ID. */ + /* Parent side. Return the 'export' process's ID. */ (void) close (retsock); (void) close (sock); *is_remote = 0; |