aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2014-05-24 11:35:30 -0400
committerGreg Hudson <ghudson@mit.edu>2014-06-05 11:21:16 -0400
commitba2879ca8f8ba84d2431a9a40de4ac7ee1e758f8 (patch)
treeff0f49a5e0b499e7475d259a1468c4c58e1002ed /src/include
parentac98187641f6943ae571606c0b6a97f236f9b60c (diff)
downloadkrb5-ba2879ca8f8ba84d2431a9a40de4ac7ee1e758f8.zip
krb5-ba2879ca8f8ba84d2431a9a40de4ac7ee1e758f8.tar.gz
krb5-ba2879ca8f8ba84d2431a9a40de4ac7ee1e758f8.tar.bz2
Remove DEBUG_ERROR_LOCATIONS support
It wasn't being used and it added too much complexity to the error-handling functions.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/k5-err.h19
-rw-r--r--src/include/k5-int.h12
2 files changed, 0 insertions, 31 deletions
diff --git a/src/include/k5-err.h b/src/include/k5-err.h
index 083dee4..d929207 100644
--- a/src/include/k5-err.h
+++ b/src/include/k5-err.h
@@ -61,28 +61,9 @@ void k5_vset_error(struct errinfo *ep, long code, const char *fmt,
#endif
;
-void k5_set_error_fl(struct errinfo *ep, long code, const char *file, int line,
- const char *fmt, ...)
-#if !defined(__cplusplus) && (__GNUC__ > 2)
- __attribute__((__format__(__printf__, 5, 6)))
-#endif
- ;
-
-void k5_vset_error_fl(struct errinfo *ep, long code, const char *file,
- int line, const char *fmt, va_list args)
-#if !defined(__cplusplus) && (__GNUC__ > 2)
- __attribute__((__format__(__printf__, 5, 0)))
-#endif
- ;
-
const char *k5_get_error(struct errinfo *ep, long code);
void k5_free_error(struct errinfo *ep, const char *msg);
void k5_clear_error(struct errinfo *ep);
void k5_set_error_info_callout_fn(const char *(KRB5_CALLCONV *f)(long));
-#ifdef DEBUG_ERROR_LOCATIONS
-#define k5_set_error(ep, code, ...) \
- k5_set_error_fl(ep, code, __FILE__, __LINE__, __VA_ARGS__)
-#endif
-
#endif /* K5_ERR_H */
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index 187d16d..3b6aa9c 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -2271,16 +2271,4 @@ krb5_boolean k5_etypes_contains(const krb5_enctype *list, krb5_enctype etype);
void k5_change_error_message_code(krb5_context ctx, krb5_error_code oldcode,
krb5_error_code newcode);
-#ifdef DEBUG_ERROR_LOCATIONS
-#define krb5_set_error_message(ctx, code, ...) \
- krb5_set_error_message_fl(ctx, code, __FILE__, __LINE__, __VA_ARGS__)
-#endif
-void KRB5_CALLCONV_C
-krb5_set_error_message_fl(krb5_context ctx, krb5_error_code code,
- const char *file, int line, const char *fmt, ...)
-#ifdef __GNUC__
- __attribute__((__format__(printf,5,6)))
-#endif
- ;
-
#endif /* _KRB5_INT_H */