aboutsummaryrefslogtreecommitdiff
path: root/ftp/vsftpd-ext/files
diff options
context:
space:
mode:
authorMichael Scheidell <scheidell@FreeBSD.org>2012-01-09 16:39:53 +0000
committerMichael Scheidell <scheidell@FreeBSD.org>2012-01-09 16:39:53 +0000
commitd477272613e55562e6c5e618379321877e4045e4 (patch)
tree80d309fb7ea8d4240877bf72141ba9674e421acc /ftp/vsftpd-ext/files
parent8a9861292e28ebec5d43632ff6dbe50f8ce964b2 (diff)
downloadports-d477272613e55562e6c5e618379321877e4045e4.tar.gz
ports-d477272613e55562e6c5e618379321877e4045e4.zip
Notes
Diffstat (limited to 'ftp/vsftpd-ext/files')
-rw-r--r--ftp/vsftpd-ext/files/patch-sysdeputil.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/ftp/vsftpd-ext/files/patch-sysdeputil.c b/ftp/vsftpd-ext/files/patch-sysdeputil.c
deleted file mode 100644
index becc2bdb4970..000000000000
--- a/ftp/vsftpd-ext/files/patch-sysdeputil.c
+++ /dev/null
@@ -1,31 +0,0 @@
---- sysdeputil.c.orig 2010-03-26 06:25:33.000000000 +0300
-+++ sysdeputil.c 2011-05-17 20:51:35.350022421 +0400
-@@ -57,7 +57,7 @@
- #endif
- #define VSF_SYSDEP_HAVE_SHADOW
- #define VSF_SYSDEP_HAVE_USERSHELL
--#define VSF_SYSDEP_HAVE_LIBCAP
-+#undef VSF_SYSDEP_HAVE_LIBCAP
- #define VSF_SYSDEP_HAVE_UTMPX
-
- #define __USE_GNU
-@@ -1213,7 +1213,9 @@ vsf_insert_uwtmp(const struct mystr* p_u
- setutxent();
- (void) pututxline(&s_utent);
- endutxent();
-+#if !defined(__FreeBSD__)
- updwtmpx(WTMPX_FILE, &s_utent);
-+#endif
- }
-
- void
-@@ -1232,7 +1234,9 @@ vsf_remove_uwtmp(void)
- (void) pututxline(&s_utent);
- endutxent();
- s_utent.ut_tv.tv_sec = vsf_sysutil_get_time_sec();
-+#if !defined(__FreeBSD__)
- updwtmpx(WTMPX_FILE, &s_utent);
-+#endif
- }
-
- #endif /* !VSF_SYSDEP_HAVE_UTMPX */