mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
14 lines
499 B
Plaintext
14 lines
499 B
Plaintext
$NetBSD: patch-ah,v 1.1 2004/02/28 18:36:38 snj Exp $
|
|
|
|
--- init.c.orig 2004-02-28 10:13:29.000000000 -0800
|
|
+++ init.c 2004-02-28 10:14:17.000000000 -0800
|
|
@@ -438,7 +438,7 @@ static void HandleDisplayErrors(displayN
|
|
WarningMessage("Your X Window system display variable is not set.");
|
|
else
|
|
{
|
|
- sprintf(string, "Cannot connect to display called <%s>.", displayName);
|
|
+ snprintf(string, sizeof(string), "Cannot connect to display called <%s>.", displayName);
|
|
WarningMessage(string);
|
|
}
|
|
}
|