From 63c475d4009fa898865391f112704d67717d6a22 Mon Sep 17 00:00:00 2001 From: Martin Baulig Date: Sun, 14 Jun 1998 17:04:57 +0000 Subject: [PATCH] Committing changes from `src/daemon' --- lib/gnuclient.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/gnuclient.c b/lib/gnuclient.c index 41137abd..9048bd16 100644 --- a/lib/gnuclient.c +++ b/lib/gnuclient.c @@ -198,7 +198,7 @@ filename_expand (char *fullpath, char *filename) /* Encase the string in quotes, escape all the backslashes and quotes in string. */ static char * -clean_string (CONST char *s) +clean_string (const char *s) { int i = 0; char *p, *res; @@ -256,7 +256,7 @@ clean_string (CONST char *s) /* A strdup immitation. */ static char * -my_strdup (CONST char *s) +my_strdup (const char *s) { char *new = malloc (strlen (s) + 1); if (new)