summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/passwd/passwd.c2
-rw-r--r--usr.bin/sockstat/sockstat.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/passwd/passwd.c b/usr.bin/passwd/passwd.c
index d35458c..2d399c5 100644
--- a/usr.bin/passwd/passwd.c
+++ b/usr.bin/passwd/passwd.c
@@ -67,7 +67,7 @@ int
main(int argc, char *argv[])
{
char hostname[MAXHOSTNAMELEN];
- struct passwd *pwd;
+ struct passwd *pwd = NULL; /* Keep compiler happy. */
int o, pam_err;
uid_t uid;
diff --git a/usr.bin/sockstat/sockstat.c b/usr.bin/sockstat/sockstat.c
index 1b2f141..1a5af42 100644
--- a/usr.bin/sockstat/sockstat.c
+++ b/usr.bin/sockstat/sockstat.c
@@ -496,8 +496,8 @@ printaddr(int af, struct sockaddr_storage *ss)
{
char addrstr[INET6_ADDRSTRLEN] = { '\0', '\0' };
struct sockaddr_un *sun;
- void *addr;
- int off, port;
+ void *addr = NULL; /* Keep compiler happy. */
+ int off, port = 0;
switch (af) {
case AF_INET:
OpenPOWER on IntegriCloud