|
From: Jelmer V. <je...@sa...> - 2008-05-15 10:49:13
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Collen, Collen Blijenberg wrote: > i was thinking to use a separated branche or tree for the 3.2.x > versions of pdbsql. sorry if i put my name in the copyright, i > thought that releasing a new version and making it work would be ok > for that. > guess a maintainer who puts in, and change code isn't copyright > worth it.. (what thanks for the motivation jelmer...) Please note that attribution and copyright are different things. It's the claiming of copyright on a file for changing a single word in that file that I was objecting to, not the putting your name in AUTHORS. Cheers, Jelmer > Jelmer Vernooij wrote: Collen, > > Sorry it's been so long since I've actually read this list... > Thanks for working on a 3.2-compatible release! I'm still happy to > answer any questions wrt the plugin, though you may have to ping me > personally since I don't read the list very often. > > Could you please copy the actual branch rather than the individual > files? This messes up the history of the files, removing some of > the usefulness of Subversion, and it spams the list like crazy. > Somewhat related to this; please only claim copyright on a file > when you make more than a trivial contribution (such as a typo). > > Happy hacking :-) > > Cheers, > > Jelmer > > co...@us... wrote: > >>>> Revision: 90 >>>> http://pdbsql.svn.sourceforge.net/pdbsql/?rev=90&view=rev >>>> Author: collen Date: 2008-01-09 08:12:43 -0800 (Wed, 09 >>>> Jan 2008) >>>> >>>> Log Message: ----------- Beta -> 3.0.25 - 3.0.28 >>>> >>>> Added Paths: ----------- >>>> branches/pdbsql/samba-pdbsql-3028/pdb_sql.h >>>> >>>> Copied: branches/pdbsql/samba-pdbsql-3028/pdb_sql.h (from rev >>>> 89, trunk/pdb_sql.h) >>>> =================================================================== >>>> --- branches/pdbsql/samba-pdbsql-3028/pdb_sql.h (rev 0) +++ >>>> branches/pdbsql/samba-pdbsql-3028/pdb_sql.h > 2008-01-09 >>>> 16:12:43 UTC (rev 90) @@ -0,0 +1,47 @@ +/* + * Common PDB SQL >>>> backend functions + * Copyright (C) Jelmer Vernooij >>>> 2003-2004 + * + * This program is free software; you can >>>> redistribute it and/or modify it under + * the terms of the >>>> GNU General Public License as published by the Free + * >>>> Software Foundation; either version 2 of the License, or (at >>>> your option) + * any later version. + * + * This program is >>>> distributed in the hope that it will be useful, but WITHOUT + >>>> * ANY WARRANTY; without even the implied warranty of >>>> MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See >>>> the GNU General Public License for + * more details. + * + * >>>> You should have received a copy of the GNU General Public >>>> License along with + * this program; if not, write to the >>>> Free Software Foundation, Inc., 675 + * Mass Ave, Cambridge, >>>> MA 02139, USA. + */ + +#include "includes.h" + +#ifndef >>>> _PDB_SQL_H +#define _PDB_SQL_H + +enum sql_search_field { + >>>> SQL_SEARCH_NONE = 0, + > SQL_SEARCH_USER_SID = >>>> 1, + SQL_SEARCH_USER_NAME = 2 +}; + + +char >>>> *sql_escape_string(TALLOC_CTX *mem_ctx, const char *unesc); + >>>> +char *sql_account_query_select(TALLOC_CTX *mem_ctx, const >>>> char *data, + BOOL update, enum sql_search_field field, > + const >>>> > char > >>>> *value); + +char *sql_account_query_delete(TALLOC_CTX >>>> *mem_ctx, const char *data, + const >>>> char *esc); + +char *sql_account_query_update(TALLOC_CTX >>>> *mem_ctx, const char *location, + >>>> struct samu *newpwd, char isupdate); + +BOOL >>>> sql_account_config_valid(const char *data); + +#endif /* >>>> _PDB_SQL_H */ + >>>> >>>> >>>> This was sent by the SourceForge.net collaborative >>>> development platform, the world's largest Open Source >>>> development site. >>>> >>>> > ------------------------------------------------------------------------- > >>>> Check out the new SourceForge.net Marketplace. It's the best >>>> place to buy or sell services for just about anything Open >>>> Source. >>>> > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace > >>>> >>>> >>>> > >> >> - ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > ---------------------------------------------------------------------- > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Defy all challenges. > Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iQCVAwUBSCwVGwy0JeEGD2blAQJrPAP+Nerda0GcGUQ1+/k8WfcQCRwrisENbkRX mjp//HBYBCQwBHcltrcxuZd2WWFfNzC5M1nJlvRwK9JPfsJg/XdhZx9/FZGcWs0j NmeisX8map3bCQfNOO/ZhFCXKhQ7gOC+EZGtWlicOe6JttXEdD4Eczjp7okUkIcn JWA5cm1jJGc= =jHj7 -----END PGP SIGNATURE----- |