summaryrefslogtreecommitdiff
path: root/src/worker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/worker.c')
-rw-r--r--src/worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/worker.c b/src/worker.c
index 4360432..733718c 100644
--- a/src/worker.c
+++ b/src/worker.c
@@ -335,7 +335,7 @@ static char *expand_system_variables( const char *s )
state = COPYING;
} else if( strncmp( var, "HOST", 4 ) == 0 ) {
char hostname[100];
- gethostname( hostname, sizeof( hostname ) );
+ system_hostname( hostname, sizeof( hostname ) );
strncpy( d, hostname, strlen( hostname ) );
d += strlen( hostname );
state = COPYING;