]> git.pld-linux.org Git - packages/samba.git/commitdiff
obsolete
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Wed, 18 Apr 2001 00:34:17 +0000 (00:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    samba-awk_path.patch -> 1.2
    samba-glibc21.patch -> 1.2

samba-awk_path.patch [deleted file]
samba-glibc21.patch [deleted file]

diff --git a/samba-awk_path.patch b/samba-awk_path.patch
deleted file mode 100644 (file)
index 80e13d7..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
---- samba-2.0.7/source/script/addtosmbpass     Fri Sep 25 00:35:16 1998
-+++ samba-2.0.7-p/source/script/addtosmbpass   Wed Jan  3 15:05:46 2001
-@@ -1,4 +1,4 @@
--#!/usr/bin/awk -f
-+#!/bin/awk -f
- # edit the line above to point to your real location of awk interpreter
- # awk program for adding new entries in smbpasswd files
diff --git a/samba-glibc21.patch b/samba-glibc21.patch
deleted file mode 100644 (file)
index 3027a29..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
---- samba-2.0.5/source/include/includes.h.glibc21      Tue Jul 20 21:25:05 1999
-+++ samba-2.0.5/source/include/includes.h      Wed Jul 21 10:42:47 1999
-@@ -647,11 +647,6 @@
- #endif /* strcpy */
- #define strcpy(dest,src) __ERROR__XX__NEVER_USE_STRCPY___;
--#ifdef strcat
--#undef strcat
--#endif /* strcat */
--#define strcat(dest,src) __ERROR__XX__NEVER_USE_STRCAT___;
--
- #ifdef sprintf
- #undef sprintf
- #endif /* sprintf */
---- samba-2.0.5/source/client/smbmount.c.glibc21       Tue Jul 20 21:25:02 1999
-+++ samba-2.0.5/source/client/smbmount.c       Wed Jul 21 10:49:28 1999
-@@ -96,8 +96,11 @@
- static void close_our_files(int client_fd)
- {
-+      struct rlimit limits;
-       int i;
--      for (i = 0; i < 256; i++) {
-+
-+      getrlimit(RLIMIT_NOFILE,&limits);
-+      for (i = 0; i < limits.rlim_max; i++) {
-               if (i == client_fd) continue;
-               close(i);
-       }
This page took 0.069806 seconds and 4 git commands to generate.