summaryrefslogtreecommitdiff
path: root/news/nntpclnt/patches/patch-aa
blob: e702e8a4236bcdc34a99804b6784be64ebc8da48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$NetBSD: patch-aa,v 1.3 2002/09/18 06:28:06 tron Exp $

--- uname.c.orig	Thu Aug 11 23:37:53 1994
+++ uname.c	Wed Sep 18 08:26:34 2002
@@ -16,6 +16,7 @@
 
 #include <stdio.h>
 #include "config.h"
+#include <strings.h>
 
 #ifdef DOUNAME
 # define DONE
@@ -66,14 +67,13 @@
 char *uptr;
 {
     FILE * uucpf;
-    char * hostname;
+    char * p;
     if ((uucpf = fopen(HOSTFILE,"r")) == NULL) {
 	fprintf(stderr,"Couldn't open %s to determine hostname. Contact your system administrator.\n", 
 		HOSTFILE); 
 	exit(1);
     } else {
 	fgets(uptr, 256, uucpf);
-	fclose(tmpfp);
     }
 	p = index(uptr, '\n');
 	if (p)