From 3e75f222bcdf114238cc4f2bcc61332dc059135f Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Dec 2007 23:27:42 +0100 Subject: r26539: Remove unnecessary statics. (This used to be commit e53e79eebef3ece6978f0a2b4a1ee0a0814bb5d2) --- source4/client/cifsdd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client') diff --git a/source4/client/cifsdd.c b/source4/client/cifsdd.c index 08c152c3a5..c692aa1bc3 100644 --- a/source4/client/cifsdd.c +++ b/source4/client/cifsdd.c @@ -59,7 +59,7 @@ static void dd_handle_signal(int sig) static const char * argtype_str(enum argtype arg_type) { - static const struct { + const struct { enum argtype arg_type; const char * arg_name; } names [] = @@ -295,7 +295,7 @@ static void cifsdd_help_message(poptContext pctx, const char * parg, void * pdata) { - static const char notes[] = + const char notes[] = "FILE can be a local filename or a UNC path of the form //server/share/path.\n"; char prefix[24]; -- cgit