From: mmj Date: Fri, 25 Jun 2004 07:48:15 +0000 (+1000) Subject: Get rid of openrandexclrw since we're not using it anyway. And we hate dead code X-Git-Tag: RELEASE_1_0_0~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44d24fef82c0c23bcdc98a494bed8d2fa6393f06;p=thirdparty%2Fmlmmj.git Get rid of openrandexclrw since we're not using it anyway. And we hate dead code --- diff --git a/src/Makefile.am b/src/Makefile.am index 056561df..453e56fe 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -41,9 +41,8 @@ mlmmj_unsub_SOURCES = mlmmj-unsub.c writen.c mylocking.c \ mlmmj_bounce_SOURCES = mlmmj-bounce.c print-version.c log_error.c \ subscriberfuncs.c strgen.c random-int.c writen.c \ - prepstdreply.c mygetline.c openrandexclrw.c chomp.c \ - getlistaddr.c memory.c + prepstdreply.c mygetline.c chomp.c getlistaddr.c \ + memory.c mlmmj_maintd_SOURCES = mlmmj-maintd.c print-version.c log_error.c mygetline.c \ - strgen.c random-int.c chomp.c writen.c \ - openrandexclrw.c memory.c + strgen.c random-int.c chomp.c writen.c memory.c diff --git a/src/openrandexclrw.c b/src/openrandexclrw.c deleted file mode 100644 index e582ef2a..00000000 --- a/src/openrandexclrw.c +++ /dev/null @@ -1,52 +0,0 @@ -/* Copyright (C) 2004 Mads Martin Joergensen , - * Morten K. Poulsen - * - * $Id$ - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to - * deal in the Software without restriction, including without limitation the - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - * sell copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - * IN THE SOFTWARE. - */ - -#include -#include -#include -#include -#include - -#include "strgen.h" -#include "wrappers.h" -#include "memory.h" - -int openrandexclrw(const char *dir, const char *prefix, mode_t mode) -{ - int fd; - char *filename = NULL, *randomstr; - - do { - randomstr = random_str(); - myfree(filename); /* It is OK to free NULL, as this - will do in the first iteration. */ - filename = concatstr(4, dir, "/", prefix, randomstr); - myfree(randomstr); - - fd = open(filename, O_RDWR|O_CREAT|O_EXCL, mode); - - } while ((fd < 0) && (errno == EEXIST)); - - return fd; -}