Ident variable assignments to respect coding style
This commit is contained in:
parent
d34d5db9d9
commit
1558412cee
1 changed files with 6 additions and 6 deletions
|
@ -139,7 +139,7 @@ void initService(struct Service *service, const char *arg) {
|
|||
free(host);
|
||||
host = malloc(size);
|
||||
memset(host, 0, size);
|
||||
memcpy(host, ptr , size-1);
|
||||
memcpy(host, ptr , size - 1);
|
||||
sshPort = strdup (tmp + 1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue