summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorweingart <weingart@openbsd.org>2008-10-16 21:23:21 +0000
committerweingart <weingart@openbsd.org>2008-10-16 21:23:21 +0000
commitd244a50c7ffe81717b526c86d4da9c00f9e4bdd0 (patch)
treeef1b504643fec9f3698e1ec2de388aca8d91e6c1
parentSwitch the existing TX VLAN hardware support over to having the (diff)
downloadwireguard-openbsd-d244a50c7ffe81717b526c86d4da9c00f9e4bdd0.tar.xz
wireguard-openbsd-d244a50c7ffe81717b526c86d4da9c00f9e4bdd0.zip
Fix ovious uninitialized variable.
Ok deraadt@
-rw-r--r--kerberosV/src/kdc/hprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kerberosV/src/kdc/hprop.c b/kerberosV/src/kdc/hprop.c
index 1ddc85e116f..3e50f061c09 100644
--- a/kerberosV/src/kdc/hprop.c
+++ b/kerberosV/src/kdc/hprop.c
@@ -749,7 +749,7 @@ main(int argc, char **argv)
HDB *db = NULL;
int optind = 0;
- int type;
+ int type = 0;
if(getarg(args, num_args, argc, argv, &optind))
usage(1);