[Pkg-samba-maint] r1516 - in trunk/samba/debian: . patches

vorlon at alioth.debian.org vorlon at alioth.debian.org
Sun Sep 23 21:31:43 UTC 2007


Author: vorlon
Date: 2007-09-23 21:31:43 +0000 (Sun, 23 Sep 2007)
New Revision: 1516

Modified:
   trunk/samba/debian/changelog
   trunk/samba/debian/patches/fhs.patch
Log:
* fhs.patch: net usershares should also be stored under /var/lib, not under
  /var/run.  No transition handling in maintainer scripts, since this
  feature is not activated by default.

Modified: trunk/samba/debian/changelog
===================================================================
--- trunk/samba/debian/changelog	2007-09-18 04:11:02 UTC (rev 1515)
+++ trunk/samba/debian/changelog	2007-09-23 21:31:43 UTC (rev 1516)
@@ -1,3 +1,11 @@
+samba (3.0.26a-2) UNRELEASED; urgency=low
+
+  * fhs.patch: net usershares should also be stored under /var/lib, not under
+    /var/run.  No transition handling in maintainer scripts, since this
+    feature is not activated by default.
+
+ -- Steve Langasek <vorlon at debian.org>  Sun, 23 Sep 2007 14:29:29 -0700
+
 samba (3.0.26a-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/samba/debian/patches/fhs.patch
===================================================================
--- trunk/samba/debian/patches/fhs.patch	2007-09-18 04:11:02 UTC (rev 1515)
+++ trunk/samba/debian/patches/fhs.patch	2007-09-23 21:31:43 UTC (rev 1516)
@@ -42,10 +42,10 @@
       grep -r lp_lockdir source/ | grep -vE \
          '%s/smb_(tmp_)*krb5|source/(lib/util|param/loadparm|dynconfig|utils/testparm)\.c|WINBINDD_PRIV_SOCKET_SUBDIR|(directory_exist|mkdir)\(lp_lockdir\(\),|koplock\.%d|%s/sync\.%d'
 
-Index: samba-3.0.25c/source/Makefile.in
+Index: samba-3.0.26a/source/Makefile.in
 ===================================================================
---- samba-3.0.25c.orig/source/Makefile.in	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/Makefile.in	2007-08-26 13:08:59.419847863 +0200
+--- samba-3.0.26a.orig/source/Makefile.in
++++ samba-3.0.26a/source/Makefile.in
 @@ -106,6 +106,13 @@
  # the directory where lock files go
  LOCKDIR = @lockdir@
@@ -82,10 +82,10 @@
  
  installswat: installdirs installmsg
  	@$(SHELL) $(srcdir)/script/installswat.sh $(DESTDIR) $(SWATDIR) $(srcdir)
-Index: samba-3.0.25c/source/configure.in
+Index: samba-3.0.26a/source/configure.in
 ===================================================================
---- samba-3.0.25c.orig/source/configure.in	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/configure.in	2007-08-26 13:08:59.419847863 +0200
+--- samba-3.0.26a.orig/source/configure.in
++++ samba-3.0.26a/source/configure.in
 @@ -40,7 +40,7 @@
  [  --with-fhs              Use FHS-compliant paths (default=no)],
  [ case "$withval" in
@@ -116,10 +116,10 @@
  AC_SUBST(rootsbindir)
  AC_SUBST(pammodulesdir)
  
-Index: samba-3.0.25c/source/dynconfig.c
+Index: samba-3.0.26a/source/dynconfig.c
 ===================================================================
---- samba-3.0.25c.orig/source/dynconfig.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/dynconfig.c	2007-08-26 13:08:59.419847863 +0200
+--- samba-3.0.26a.orig/source/dynconfig.c
++++ samba-3.0.26a/source/dynconfig.c
 @@ -53,6 +53,13 @@
  pstring dyn_LMHOSTSFILE = LMHOSTSFILE;
  
@@ -162,10 +162,10 @@
 +	return lp_lockdir();
 +#endif
 +}
-Index: samba-3.0.25c/source/include/dynconfig.h
+Index: samba-3.0.26a/source/include/dynconfig.h
 ===================================================================
---- samba-3.0.25c.orig/source/include/dynconfig.h	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/include/dynconfig.h	2007-08-26 13:08:59.419847863 +0200
+--- samba-3.0.26a.orig/source/include/dynconfig.h
++++ samba-3.0.26a/source/include/dynconfig.h
 @@ -31,8 +31,12 @@
  extern pstring dyn_CONFIGFILE;
  extern pstring dyn_LOGFILEBASE, dyn_LMHOSTSFILE;
@@ -179,10 +179,10 @@
 +
 +char *dyn_STATEDIR(void);
 +char *dyn_CACHEDIR(void);
-Index: samba-3.0.25c/source/intl/lang_tdb.c
+Index: samba-3.0.26a/source/intl/lang_tdb.c
 ===================================================================
---- samba-3.0.25c.orig/source/intl/lang_tdb.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/intl/lang_tdb.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/intl/lang_tdb.c
++++ samba-3.0.26a/source/intl/lang_tdb.c
 @@ -131,7 +131,7 @@
  	if (!lang) 
  		return True;
@@ -192,10 +192,10 @@
  	if (stat(msg_path, &st) != 0) {
  		/* the msg file isn't available */
  		DEBUG(10, ("lang_tdb_init: %s: %s\n", msg_path, 
-Index: samba-3.0.25c/source/lib/util.c
+Index: samba-3.0.26a/source/lib/util.c
 ===================================================================
---- samba-3.0.25c.orig/source/lib/util.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/lib/util.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/lib/util.c
++++ samba-3.0.26a/source/lib/util.c
 @@ -2632,6 +2632,61 @@
  }
  
@@ -258,10 +258,10 @@
   * @brief Returns the platform specific shared library extension.
   *
   * @retval Pointer to a static #fstring containing the extension.
-Index: samba-3.0.25c/source/lib/util_unistr.c
+Index: samba-3.0.26a/source/lib/util_unistr.c
 ===================================================================
---- samba-3.0.25c.orig/source/lib/util_unistr.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/lib/util_unistr.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/lib/util_unistr.c
++++ samba-3.0.26a/source/lib/util_unistr.c
 @@ -88,11 +88,11 @@
  	}
  	initialised = 1;
@@ -285,10 +285,10 @@
  	if (valid_file) {
  		valid_table = valid_file;
  		mapped_file = 1;
-Index: samba-3.0.25c/source/libsmb/samlogon_cache.c
+Index: samba-3.0.26a/source/libsmb/samlogon_cache.c
 ===================================================================
---- samba-3.0.25c.orig/source/libsmb/samlogon_cache.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/libsmb/samlogon_cache.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/libsmb/samlogon_cache.c
++++ samba-3.0.26a/source/libsmb/samlogon_cache.c
 @@ -34,7 +34,7 @@
  BOOL netsamlogon_cache_init(void)
  {
@@ -307,10 +307,10 @@
  				   WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE,
  				   TDB_DEFAULT, O_RDWR, 0600);
  		if (!tdb) {
-Index: samba-3.0.25c/source/nmbd/nmbd_serverlistdb.c
+Index: samba-3.0.26a/source/nmbd/nmbd_serverlistdb.c
 ===================================================================
---- samba-3.0.25c.orig/source/nmbd/nmbd_serverlistdb.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/nmbd/nmbd_serverlistdb.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/nmbd/nmbd_serverlistdb.c
++++ samba-3.0.26a/source/nmbd/nmbd_serverlistdb.c
 @@ -325,7 +325,7 @@
  
  	updatecount++;
@@ -320,10 +320,10 @@
  	trim_char(fname,'\0' ,'/');
  	pstrcat(fname,"/");
  	pstrcat(fname,SERVER_LIST);
-Index: samba-3.0.25c/source/nmbd/nmbd_winsserver.c
+Index: samba-3.0.26a/source/nmbd/nmbd_winsserver.c
 ===================================================================
---- samba-3.0.25c.orig/source/nmbd/nmbd_winsserver.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/nmbd/nmbd_winsserver.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/nmbd/nmbd_winsserver.c
++++ samba-3.0.26a/source/nmbd/nmbd_winsserver.c
 @@ -585,7 +585,7 @@
  
  	add_samba_names_to_subnet(wins_server_subnet);
@@ -342,10 +342,10 @@
  	all_string_sub(fname,"//", "/", 0);
  	slprintf(fnamenew,sizeof(fnamenew)-1,"%s.%u", fname, (unsigned int)sys_getpid());
  
-Index: samba-3.0.25c/source/passdb/login_cache.c
+Index: samba-3.0.26a/source/passdb/login_cache.c
 ===================================================================
---- samba-3.0.25c.orig/source/passdb/login_cache.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/passdb/login_cache.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/passdb/login_cache.c
++++ samba-3.0.26a/source/passdb/login_cache.c
 @@ -36,7 +36,7 @@
  	/* skip file open if it's already opened */
  	if (cache) return True;
@@ -355,11 +355,11 @@
  	if (cache_fname)
  		DEBUG(5, ("Opening cache file at %s\n", cache_fname));
  	else {
-Index: samba-3.0.25c/source/nsswitch/winbindd_cache.c
+Index: samba-3.0.26a/source/nsswitch/winbindd_cache.c
 ===================================================================
---- samba-3.0.25c.orig/source/nsswitch/winbindd_cache.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/nsswitch/winbindd_cache.c	2007-08-26 13:08:59.919823466 +0200
-@@ -2180,7 +2180,7 @@
+--- samba-3.0.26a.orig/source/nsswitch/winbindd_cache.c
++++ samba-3.0.26a/source/nsswitch/winbindd_cache.c
+@@ -2181,7 +2181,7 @@
  		return True;
  
  	/* when working offline we must not clear the cache on restart */
@@ -368,7 +368,7 @@
  				WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE, 
  				lp_winbind_offline_logon() ? TDB_DEFAULT : (TDB_DEFAULT | TDB_CLEAR_IF_FIRST), 
  				O_RDWR|O_CREAT, 0600);
-@@ -2223,9 +2223,9 @@
+@@ -2224,9 +2224,9 @@
  		tdb_close(wcache->tdb);
  		wcache->tdb = NULL;
  
@@ -380,7 +380,7 @@
  				strerror(errno) ));
  			return False;
  		}
-@@ -2487,7 +2487,7 @@
+@@ -2488,7 +2488,7 @@
  		return;
  
  	/* when working offline we must not clear the cache on restart */
@@ -389,10 +389,10 @@
  				WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE, 
  				lp_winbind_offline_logon() ? TDB_DEFAULT : (TDB_DEFAULT | TDB_CLEAR_IF_FIRST), 
  				O_RDWR|O_CREAT, 0600);
-Index: samba-3.0.25c/source/param/loadparm.c
+Index: samba-3.0.26a/source/param/loadparm.c
 ===================================================================
---- samba-3.0.25c.orig/source/param/loadparm.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/param/loadparm.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/param/loadparm.c
++++ samba-3.0.26a/source/param/loadparm.c
 @@ -108,6 +108,9 @@
  	char *szAddPrinterCommand;
  	char *szDeletePrinterCommand;
@@ -403,7 +403,7 @@
  	char *szLockDir;
  	char *szPidDir;
  	char *szRootdir;
-@@ -1194,8 +1197,13 @@
+@@ -1200,8 +1203,13 @@
  	{"config file", P_STRING, P_GLOBAL, &Globals.szConfigFile, NULL, NULL, FLAG_HIDE}, 
  	{"preload", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_ADVANCED}, 
  	{"auto services", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_ADVANCED}, 
@@ -417,10 +417,19 @@
  	{"pid directory", P_STRING, P_GLOBAL, &Globals.szPidDir, NULL, NULL, FLAG_ADVANCED}, 
  #ifdef WITH_UTMP
  	{"utmp directory", P_STRING, P_GLOBAL, &Globals.szUtmpDir, NULL, NULL, FLAG_ADVANCED}, 
-Index: samba-3.0.25c/source/passdb/secrets.c
+@@ -1664,7 +1672,7 @@
+ 	Globals.bASUSupport       = False;
+ 	
+ 	/* User defined shares. */
+-	pstrcpy(s, dyn_LOCKDIR);
++	pstrcpy(s, dyn_STATEDIR());
+ 	pstrcat(s, "/usershares");
+ 	string_set(&Globals.szUsersharePath, s);
+ 	string_set(&Globals.szUsershareTemplateShare, "");
+Index: samba-3.0.26a/source/passdb/secrets.c
 ===================================================================
---- samba-3.0.25c.orig/source/passdb/secrets.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/passdb/secrets.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/passdb/secrets.c
++++ samba-3.0.26a/source/passdb/secrets.c
 @@ -58,8 +58,7 @@
  	if (tdb)
  		return True;
@@ -431,10 +440,10 @@
  
  	tdb = tdb_open_log(fname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
  
-Index: samba-3.0.25c/source/printing/nt_printing.c
+Index: samba-3.0.26a/source/printing/nt_printing.c
 ===================================================================
---- samba-3.0.25c.orig/source/printing/nt_printing.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/printing/nt_printing.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/printing/nt_printing.c
++++ samba-3.0.26a/source/printing/nt_printing.c
 @@ -551,28 +551,28 @@
   
  	if (tdb_drivers)
@@ -479,10 +488,10 @@
  		pstrcat(printdb_path, sharename);
  		pstrcat(printdb_path, ".tdb");
  
-Index: samba-3.0.25c/source/printing/printing.c
+Index: samba-3.0.26a/source/printing/printing.c
 ===================================================================
---- samba-3.0.25c.orig/source/printing/printing.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/printing/printing.c	2007-08-26 13:08:59.919823466 +0200
+--- samba-3.0.26a.orig/source/printing/printing.c
++++ samba-3.0.26a/source/printing/printing.c
 @@ -185,8 +185,8 @@
  	int services = lp_numservices();
  	int snum;
@@ -494,10 +503,10 @@
  	mkdir(printing_path,0755);
  
  	/* handle a Samba upgrade */
-Index: samba-3.0.25c/source/printing/printing_db.c
+Index: samba-3.0.26a/source/printing/printing_db.c
 ===================================================================
---- samba-3.0.25c.orig/source/printing/printing_db.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/printing/printing_db.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/printing/printing_db.c
++++ samba-3.0.26a/source/printing/printing_db.c
 @@ -91,7 +91,7 @@
  		DLIST_ADD(print_db_head, p);
  	}
@@ -507,10 +516,10 @@
  	pstrcat(printdb_path, printername);
  	pstrcat(printdb_path, ".tdb");
  
-Index: samba-3.0.25c/source/smbd/lanman.c
+Index: samba-3.0.26a/source/smbd/lanman.c
 ===================================================================
---- samba-3.0.25c.orig/source/smbd/lanman.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/smbd/lanman.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/smbd/lanman.c
++++ samba-3.0.26a/source/smbd/lanman.c
 @@ -1088,9 +1088,9 @@
  	BOOL local_list_only;
  	int i;
@@ -523,10 +532,10 @@
  		return 0;
  	}
  
-Index: samba-3.0.25c/source/registry/reg_db.c
+Index: samba-3.0.26a/source/registry/reg_db.c
 ===================================================================
---- samba-3.0.25c.orig/source/registry/reg_db.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/registry/reg_db.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/registry/reg_db.c
++++ samba-3.0.26a/source/registry/reg_db.c
 @@ -234,12 +234,12 @@
  	if ( tdb_reg )
  		return True;
@@ -557,10 +566,10 @@
  	}
  
  	unbecome_root();
-Index: samba-3.0.25c/source/lib/account_pol.c
+Index: samba-3.0.26a/source/lib/account_pol.c
 ===================================================================
---- samba-3.0.25c.orig/source/lib/account_pol.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/lib/account_pol.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/lib/account_pol.c
++++ samba-3.0.26a/source/lib/account_pol.c
 @@ -213,9 +213,9 @@
  		return True;
  	}
@@ -573,10 +582,10 @@
  		if (!tdb) {
  			DEBUG(0,("Failed to open account policy database\n"));
  			return False;
-Index: samba-3.0.25c/source/registry/reg_perfcount.c
+Index: samba-3.0.26a/source/registry/reg_perfcount.c
 ===================================================================
---- samba-3.0.25c.orig/source/registry/reg_perfcount.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/registry/reg_perfcount.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/registry/reg_perfcount.c
++++ samba-3.0.26a/source/registry/reg_perfcount.c
 @@ -46,7 +46,7 @@
  	
  	fstr_sprintf( path, "%s/%s", PERFCOUNTDIR, dbname );
@@ -595,10 +604,10 @@
  
  	/* no registry keys; just create the perfmon directory */
  	
-Index: samba-3.0.25c/source/rpc_server/srv_eventlog_lib.c
+Index: samba-3.0.26a/source/rpc_server/srv_eventlog_lib.c
 ===================================================================
---- samba-3.0.25c.orig/source/rpc_server/srv_eventlog_lib.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/rpc_server/srv_eventlog_lib.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/rpc_server/srv_eventlog_lib.c
++++ samba-3.0.26a/source/rpc_server/srv_eventlog_lib.c
 @@ -67,7 +67,7 @@
  {
  	fstring path;
@@ -617,10 +626,10 @@
  	if ( !directory_exist( eventlogdir, NULL ) )
  		mkdir( eventlogdir, 0755 );	
  	
-Index: samba-3.0.25c/source/passdb/pdb_tdb.c
+Index: samba-3.0.26a/source/passdb/pdb_tdb.c
 ===================================================================
---- samba-3.0.25c.orig/source/passdb/pdb_tdb.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/passdb/pdb_tdb.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/passdb/pdb_tdb.c
++++ samba-3.0.26a/source/passdb/pdb_tdb.c
 @@ -1559,7 +1559,7 @@
  	uint32 rid;
  	BOOL ret = False;
@@ -639,10 +648,10 @@
  		pfile = tdbfile;
  	}
  	pstrcpy( tdbsam_filename, pfile );
-Index: samba-3.0.25c/source/groupdb/mapping_tdb.c
+Index: samba-3.0.26a/source/groupdb/mapping_tdb.c
 ===================================================================
---- samba-3.0.25c.orig/source/groupdb/mapping_tdb.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/groupdb/mapping_tdb.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/groupdb/mapping_tdb.c
++++ samba-3.0.26a/source/groupdb/mapping_tdb.c
 @@ -39,7 +39,7 @@
  	if (tdb)
  		return True;
@@ -652,10 +661,10 @@
  	if (!tdb) {
  		DEBUG(0,("Failed to open group mapping database\n"));
  		return False;
-Index: samba-3.0.25c/source/nsswitch/idmap_tdb.c
+Index: samba-3.0.26a/source/nsswitch/idmap_tdb.c
 ===================================================================
---- samba-3.0.25c.orig/source/nsswitch/idmap_tdb.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/nsswitch/idmap_tdb.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/nsswitch/idmap_tdb.c
++++ samba-3.0.26a/source/nsswitch/idmap_tdb.c
 @@ -247,7 +247,7 @@
  	}
  
@@ -665,10 +674,10 @@
  	if (!tdbfile) {
  		DEBUG(0, ("Out of memory!\n"));
  		ret = NT_STATUS_NO_MEMORY;
-Index: samba-3.0.25c/source/utils/smbcontrol.c
+Index: samba-3.0.26a/source/utils/smbcontrol.c
 ===================================================================
---- samba-3.0.25c.orig/source/utils/smbcontrol.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/utils/smbcontrol.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/utils/smbcontrol.c
++++ samba-3.0.26a/source/utils/smbcontrol.c
 @@ -832,10 +832,10 @@
  	/* Remove the entry in the winbindd_cache tdb to tell a later
  	   starting winbindd that we're online. */
@@ -698,10 +707,10 @@
  		return False;
  	}
  
-Index: samba-3.0.25c/source/lib/sharesec.c
+Index: samba-3.0.26a/source/lib/sharesec.c
 ===================================================================
---- samba-3.0.25c.orig/source/lib/sharesec.c	2007-08-26 13:07:02.925532676 +0200
-+++ samba-3.0.25c/source/lib/sharesec.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/lib/sharesec.c
++++ samba-3.0.26a/source/lib/sharesec.c
 @@ -47,10 +47,10 @@
  		return True;
  	}
@@ -715,10 +724,10 @@
  		return False;
  	}
   
-Index: samba-3.0.25c/source/libgpo/gpo_fetch.c
+Index: samba-3.0.26a/source/libgpo/gpo_fetch.c
 ===================================================================
---- samba-3.0.25c.orig/source/libgpo/gpo_fetch.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/libgpo/gpo_fetch.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/libgpo/gpo_fetch.c
++++ samba-3.0.26a/source/libgpo/gpo_fetch.c
 @@ -60,7 +60,7 @@
  		return NT_STATUS_NO_MEMORY;
  	}
@@ -737,10 +746,10 @@
  	char *current_dir;
  	fstring tok;
  
-Index: samba-3.0.25c/source/nsswitch/idmap_cache.c
+Index: samba-3.0.26a/source/nsswitch/idmap_cache.c
 ===================================================================
---- samba-3.0.25c.orig/source/nsswitch/idmap_cache.c	2007-08-26 13:07:03.425508276 +0200
-+++ samba-3.0.25c/source/nsswitch/idmap_cache.c	2007-08-26 13:09:00.419799070 +0200
+--- samba-3.0.26a.orig/source/nsswitch/idmap_cache.c
++++ samba-3.0.26a/source/nsswitch/idmap_cache.c
 @@ -55,7 +55,7 @@
  		return NULL;
  	}




More information about the Pkg-samba-maint mailing list