aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c71
1 files changed, 1 insertions, 70 deletions
diff --git a/util.c b/util.c
index 4c8277db3c..7a84868b08 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.14 1999/04/06 16:24:49 gram Exp $
+ * $Id: util.c,v 1.15 1999/06/12 09:10:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -174,72 +174,3 @@ simple_dialog_cancel_cb(GtkWidget *w, gpointer win) {
*btn_mask = ESD_BTN_CANCEL;
gtk_widget_destroy(GTK_WIDGET(win));
}
-
-/* Tries to mv a file. If unsuccessful, tries to cp the file.
- * Returns 0 on failure to do either, 1 on success of either
- */
-int
-file_mv(char *from, char *to)
-{
-
-#define COPY_BUFFER_SIZE 8192
-
- int retval;
-
- /* try a hard link */
- retval = link(from, to);
-
- /* or try a copy */
- if (retval < 0) {
- retval = file_cp(from, to);
- if (!retval) {
- return 0;
- }
- }
-
- unlink(from);
- return 1;
-}
-
-/* Copies a file.
- * Returns 0 on failure to do either, 1 on success of either
- */
-int
-file_cp(char *from, char *to)
-{
-
-#define COPY_BUFFER_SIZE 8192
-
- int from_fd, to_fd, nread;
- char *buffer;
- gint dialogue_button = ESD_BTN_OK;
-
- buffer = g_malloc(COPY_BUFFER_SIZE);
-
- from_fd = open(from, O_RDONLY);
- if (from_fd < 0) {
- simple_dialog(ESD_TYPE_WARN, &dialogue_button,
- "Cannot open from-file for copying.");
- return 0;
- }
-
- to_fd = creat(to, 0644);
- if (to_fd < 0) {
- simple_dialog(ESD_TYPE_WARN, &dialogue_button,
- "Cannot open to-file for copying.");
- close(from_fd);
- return 0;
- }
-
- while( (nread = read(from_fd, buffer, COPY_BUFFER_SIZE)) > 0) {
- if (write(to_fd, buffer, nread) < nread) {
- close(from_fd);
- close(to_fd);
- return 0;
- }
- }
- close(from_fd);
- close(to_fd);
-
- return 1;
-}