aboutsummaryrefslogtreecommitdiffstats
path: root/wireshark-qt.cpp
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-01-02 20:06:34 -0800
committerGuy Harris <guy@alum.mit.edu>2015-01-03 04:07:02 +0000
commit16fe32f408c49f21206d750b7601de5c4ddca41c (patch)
tree1b81a5f31c1d2edf63afee4bf17378755f8b4c4d /wireshark-qt.cpp
parent33ba8d384d8e2e721bad4cb61737bb58dec0e142 (diff)
Temporarily #if 0 out the call to read_keytab_file().
If this fixes the Win64 build, somehow HAVE_KERBEROS is getting defined when this is built but we're not actually building read_keytab_file in packet-kerberos.c. If that *doesn't* fix the Win64 build's failure to find read_keytab_file(), something Really Weird is going on, because nobody should be looking for it. Change-Id: If607e0eeeff854693cf9ce2ea1009d34a20a9992 Reviewed-on: https://code.wireshark.org/review/6259 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wireshark-qt.cpp')
-rw-r--r--wireshark-qt.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/wireshark-qt.cpp b/wireshark-qt.cpp
index 1bd2f6d61b..1919b17a5e 100644
--- a/wireshark-qt.cpp
+++ b/wireshark-qt.cpp
@@ -876,7 +876,8 @@ int main(int argc, char *argv[])
arg_error = TRUE;
#endif
break;
-#ifdef HAVE_KERBEROS
+#if 0
+/* #ifdef HAVE_KERBEROS */
case 'K': /* Kerberos keytab file */
read_keytab_file(optarg);
break;