diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-06-10 03:46:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-06-10 03:46:11 +0000 |
commit | 524da855ff764eba7aa88624259d359e0cd406ac (patch) | |
tree | 589cb504da7884a9fd39d3f279cfabc3446d2723 | |
parent | 093116c49fbf914f0a886dfa073f004396ac1f36 (diff) | |
download | samba-524da855ff764eba7aa88624259d359e0cd406ac.tar.gz samba-524da855ff764eba7aa88624259d359e0cd406ac.tar.bz2 samba-524da855ff764eba7aa88624259d359e0cd406ac.zip |
don't call a function error_message() as that conflicts with a
kerberos name
(This used to be commit 8fa737f2235abfdc6c78b0af707aea2c67243597)
-rw-r--r-- | source3/client/tree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/tree.c b/source3/client/tree.c index 94fd93c210..3b90d15f65 100644 --- a/source3/client/tree.c +++ b/source3/client/tree.c @@ -36,7 +36,7 @@ struct tree_data { }; -void error_message(gchar *message) { +static void tree_error_message(gchar *message) { GtkWidget *dialog, *label, *okay_button; @@ -344,7 +344,7 @@ static void cb_itemsignal( GtkWidget *item, slprintf(errmsg, sizeof(errmsg), "cb_itemsignal: Could not open dir %s, %s\n", get_path(item), strerror(errno)); - error_message(errmsg); + tree_error_message(errmsg); /* gtk_main_quit();*/ @@ -363,7 +363,7 @@ static void cb_itemsignal( GtkWidget *item, slprintf(errmsg, sizeof(errmsg), "cb_itemsignal: Could not read dir smbc://, %s\n", strerror(errno)); - error_message(errmsg); + tree_error_message(errmsg); /* gtk_main_quit();*/ |