s3: Make guest_user_info() static
authorVolker Lendecke <vl@samba.org>
Fri, 5 Feb 2010 14:50:11 +0000 (15:50 +0100)
committerVolker Lendecke <vl@samba.org>
Fri, 5 Feb 2010 20:11:17 +0000 (21:11 +0100)
source3/include/proto.h
source3/passdb/pdb_interface.c

index 8a170390687b4ba35a54a796e35fbacb8b903fbd..177c3334d9e628f53e9d1af6c29cc27531ddc150 100644 (file)
@@ -4575,7 +4575,6 @@ struct event_context *pdb_get_event_context(void);
 NTSTATUS make_pdb_method_name(struct pdb_methods **methods, const char *selected);
 struct pdb_domain_info *pdb_get_domain_info(TALLOC_CTX *mem_ctx);
 bool pdb_getsampwnam(struct samu *sam_acct, const char *username) ;
-bool guest_user_info( struct samu *user );
 bool pdb_getsampwsid(struct samu *sam_acct, const DOM_SID *sid) ;
 NTSTATUS pdb_create_user(TALLOC_CTX *mem_ctx, const char *name, uint32 flags,
                         uint32 *rid);
index bd85ded138a0d479d33d63b9a69670672ef3786f..130909e7fec39c8fc099e8cb678f605c41186dcc 100644 (file)
@@ -248,7 +248,7 @@ bool pdb_getsampwnam(struct samu *sam_acct, const char *username)
 /**********************************************************************
 **********************************************************************/
 
-bool guest_user_info( struct samu *user )
+static bool guest_user_info( struct samu *user )
 {
        struct passwd *pwd;
        NTSTATUS result;