From 061e0172510debb6cd8920caa717c29a10e1b233 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Thu, 01 Mar 2007 23:48:24 +0000
Subject: [PATCH] Fixed spelling error of a debug method (org.opends.server.loggers.debug.DebugLogger.debugCought should be debugCaught).
---
opends/src/server/org/opends/server/extensions/GSSAPISASLMechanismHandler.java | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/GSSAPISASLMechanismHandler.java b/opends/src/server/org/opends/server/extensions/GSSAPISASLMechanismHandler.java
index fffaa8d..f9a7480 100644
--- a/opends/src/server/org/opends/server/extensions/GSSAPISASLMechanismHandler.java
+++ b/opends/src/server/org/opends/server/extensions/GSSAPISASLMechanismHandler.java
@@ -56,7 +56,7 @@
import org.opends.server.types.ResultCode;
import static org.opends.server.config.ConfigConstants.*;
-import static org.opends.server.loggers.debug.DebugLogger.debugCought;
+import static org.opends.server.loggers.debug.DebugLogger.debugCaught;
import static org.opends.server.loggers.debug.DebugLogger.debugEnabled;
import org.opends.server.types.DebugLogLevel;
import static org.opends.server.messages.ExtensionsMessages.*;
@@ -161,7 +161,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_IDENTITY_MAPPER;
@@ -196,7 +196,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_SERVER_FQDN;
@@ -227,7 +227,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_KDC_ADDRESS;
@@ -258,7 +258,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_REALM;
@@ -288,7 +288,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_KEYTAB_FILE;
@@ -405,7 +405,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, ie);
+ debugCaught(DebugLogLevel.ERROR, ie);
}
bindOperation.setAuthFailureReason(ie.getMessageID(), ie.getMessage());
@@ -442,7 +442,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
}
}
@@ -587,7 +587,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_IDENTITY_MAPPER;
@@ -615,7 +615,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_SERVER_FQDN;
@@ -639,7 +639,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_KDC_ADDRESS;
@@ -663,7 +663,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_REALM;
@@ -746,7 +746,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_IDENTITY_MAPPER;
@@ -784,7 +784,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_SERVER_FQDN;
@@ -817,7 +817,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_KDC_ADDRESS;
@@ -850,7 +850,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_SASLGSSAPI_CANNOT_GET_REALM;
--
Gitblit v1.10.0