commit be37c2e655dc550635c6a766a9b43700482c85c1 from: Stefan Sperling date: Tue Apr 24 20:21:09 2018 UTC don't pass redundant program name to setproctitle() commit - 28ec8409d3a376afcb924387e0c7727729c6acb8 commit + be37c2e655dc550635c6a766a9b43700482c85c1 blob - cbbdbbd6ffba89973ab28142874c933cb805a823 blob + 73858c5ee156e66a6ef9dc8fc390e0542bdaf55a --- lib/object.c +++ lib/object.c @@ -225,7 +225,7 @@ read_object_header_privsep_child(int obj_fd, int imsg_ FILE *f = NULL; int status = 0; - setproctitle("got: read object header"); + setproctitle("read object header"); close(imsg_fds[0]); imsg_init(&ibuf, imsg_fds[1]); @@ -755,7 +755,7 @@ read_commit_object_privsep_child(struct got_object *ob FILE *f = NULL; int status = 0; - setproctitle("got: read commit object"); + setproctitle("read commit object"); close(imsg_fds[0]); imsg_init(&ibuf, imsg_fds[1]); @@ -906,7 +906,7 @@ read_tree_object_privsep_child(struct got_object *obj, FILE *f = NULL; int status = 0; - setproctitle("got: read tree object"); + setproctitle("read tree object"); close(imsg_fds[0]); imsg_init(&ibuf, imsg_fds[1]); @@ -1029,7 +1029,7 @@ read_blob_object_privsep_child(int outfd, int infd, in int status = 0; size_t size; - setproctitle("got: read blob object"); + setproctitle("read blob object"); close(imsg_fds[0]); imsg_init(&ibuf, imsg_fds[1]);