Eliminate \n from _gss_mg_log() calls
This commit is contained in:
committed by
Nico Williams
parent
abd35b246a
commit
e11f8a8823
@@ -167,7 +167,7 @@ do { \
|
||||
m->gm_mech.gm_ ## name = (_gss_##name##_t *)dlsym(so, "gss_" #name); \
|
||||
if (!m->gm_mech.gm_ ## name || \
|
||||
m->gm_mech.gm_ ##name == gss_ ## name) { \
|
||||
_gss_mg_log(1, "can't find symbol gss_" #name "\n"); \
|
||||
_gss_mg_log(1, "can't find symbol gss_" #name); \
|
||||
goto bad; \
|
||||
} \
|
||||
} while (0)
|
||||
@@ -346,7 +346,7 @@ _gss_load_mech(void)
|
||||
|
||||
so = dlopen(lib, RTLD_LAZY | RTLD_LOCAL | RTLD_GROUP);
|
||||
if (so == NULL) {
|
||||
_gss_mg_log(1, "dlopen: %s\n", dlerror());
|
||||
_gss_mg_log(1, "dlopen: %s", dlerror());
|
||||
goto bad;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user