From 8ac31b503433ae6150da9523e58c338aff27e561 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 28 Jan 2005 21:55:45 +0000 Subject: r5066: A couple of small fixes from James Peach @ SGI. Jeremy. (This used to be commit 9d131e94195df79e07c8fad20e12ba1b67441a81) --- source3/lib/util.c | 5 +++++ source3/lib/util_str.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/util.c b/source3/lib/util.c index 455f87aaab..d910dff547 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1534,6 +1534,11 @@ void smb_panic2(const char *why, BOOL decrement_pid_count ) ZERO_ARRAY(names); ZERO_ARRAY(namebuf); + /* We need to be root so we can open our /proc entry to walk + * our stack. It also helps when we want to dump core. + */ + become_root(); + for (i = 0; i < BACKTRACE_STACK_SIZE; i++) { names[i] = namebuf + (i * NAMESIZE); } diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 6b6581b4a7..394c8e27cf 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -1558,8 +1558,8 @@ int fstr_sprintf(fstring s, const char *fmt, ...) size_t strnlen(const char *s, size_t n) { - int i; - for (i=0; s[i] && i