s4/net: Use d_printf consistently when reporting errors.
authorJelmer Vernooij <jelmer@samba.org>
Mon, 28 Dec 2009 15:06:04 +0000 (16:06 +0100)
committerJelmer Vernooij <jelmer@ganieda.vernstok.nl>
Tue, 29 Dec 2009 15:26:20 +0000 (16:26 +0100)
source4/utils/net/net.c

index 31bade32a51f7d8172de7e89835efbb184c56a2b..9725402c7ffdcc4b9770edcf6dbd027187c13dd0 100644 (file)
@@ -113,7 +113,7 @@ static PyObject *py_commands(void)
        }
 
        if (!PyDict_Check(py_cmds)) {
-               fprintf(stderr, "Python net commands is not a dictionary\n");
+               d_printf("Python net commands is not a dictionary\n");
                return NULL;
        }
 
@@ -240,7 +240,7 @@ static int net_help_python(void)
                char *name, *desc;
                PyObject *py_desc;
                if (!PyString_Check(key)) {
-                       fprintf(stderr, "Command name not a string\n");
+                       d_printf("Command name not a string\n");
                        return 1;
                }
                name = PyString_AsString(key);
@@ -250,7 +250,8 @@ static int net_help_python(void)
                        return 1;
                }
                if (!PyString_Check(py_desc)) {
-                       fprintf(stderr, "Command description for %s not a string\n", name);
+                       d_printf("Command description for %s not a string\n", 
+                               name);
                        return 1;
                }
                desc = PyString_AsString(py_desc);