diff options
author | Volker Lendecke <vl@samba.org> | 2010-03-28 14:21:49 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-03-28 15:25:14 +0200 |
commit | 3caaca90219c1fd8f7f9d668d3a537f6368b9417 (patch) | |
tree | a7c72cec1c631681a1a96681024fbbf5f9b44a2e | |
parent | 09a676a4712b86ad0406487f38a8a1a4e6a9e115 (diff) | |
download | samba-3caaca90219c1fd8f7f9d668d3a537f6368b9417.tar.gz samba-3caaca90219c1fd8f7f9d668d3a537f6368b9417.tar.bz2 samba-3caaca90219c1fd8f7f9d668d3a537f6368b9417.zip |
s3: Fix typos in a debug message in vfs_init_custom
-rw-r--r-- | source3/smbd/vfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index e34454b08f..7df51cff95 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -111,7 +111,8 @@ bool vfs_init_custom(connection_struct *conn, const char *vfs_object) const struct vfs_init_function_entry *entry; if (!conn||!vfs_object||!vfs_object[0]) { - DEBUG(0,("vfs_init_custon() called with NULL pointer or emtpy vfs_object!\n")); + DEBUG(0, ("vfs_init_custom() called with NULL pointer or " + "empty vfs_object!\n")); return False; } |