diff options
Diffstat (limited to 'libntp/findconfig.c')
-rw-r--r-- | libntp/findconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libntp/findconfig.c b/libntp/findconfig.c index ecf6a4b..562c017 100644 --- a/libntp/findconfig.c +++ b/libntp/findconfig.c @@ -28,7 +28,7 @@ FindConfig( /* First choice is my hostname */ if (gethostname(hostname, BUFSIZ) >= 0) { - (void) sprintf(result, "%s/%s", base, hostname); + snprintf(result, sizeof(result), "%s/%s", base, hostname); if (stat(result, &sbuf) == 0) { goto outahere; } else { @@ -39,13 +39,13 @@ FindConfig( cp = unamebuf.machine + 5; else cp = unamebuf.machine; - (void) sprintf(result, "%s/default.%s", base, cp); + snprintf(result, sizeof(result), "%s/default.%s", base, cp); if (stat(result, &sbuf) == 0) { goto outahere; } else { /* Last choice is just default */ - (void) sprintf(result, "%s/default", base); + snprintf(result, sizeof(result), "%s/default", base); if (stat(result, &sbuf) == 0) { goto outahere; } else { |