[24059] in Source-Commits
/svn/athena r23663 - in trunk/athena/bin/delete: . debian
daemon@ATHENA.MIT.EDU (Evan Broder)
Sun Mar 29 15:56:15 2009
Date: Sun, 29 Mar 2009 15:56:03 -0400
From: Evan Broder <broder@MIT.EDU>
Message-Id: <200903291956.n2TJu3Ej009269@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: broder
Date: 2009-03-29 15:56:03 -0400 (Sun, 29 Mar 2009)
New Revision: 23663
Modified:
trunk/athena/bin/delete/debian/changelog
trunk/athena/bin/delete/stack.c
Log:
In delete:
* Apply patches from jik:
- Fix compiler nit by including <string.h> in stack.c
Modified: trunk/athena/bin/delete/debian/changelog
===================================================================
--- trunk/athena/bin/delete/debian/changelog 2009-03-29 19:55:50 UTC (rev 23662)
+++ trunk/athena/bin/delete/debian/changelog 2009-03-29 19:56:03 UTC (rev 23663)
@@ -9,6 +9,7 @@
- When printing an amount of space, print it in friendly units, e.g.,
KB, MB or GB, rather than always printing kb.
- Fix a double free in lsdel
+ - Fix compiler nit by including <string.h> in stack.c
-- Evan Broder <broder@mit.edu> Sun, 29 Mar 2009 14:59:32 -0400
Modified: trunk/athena/bin/delete/stack.c
===================================================================
--- trunk/athena/bin/delete/stack.c 2009-03-29 19:55:50 UTC (rev 23662)
+++ trunk/athena/bin/delete/stack.c 2009-03-29 19:56:03 UTC (rev 23663)
@@ -13,6 +13,7 @@
static char rcsid_stack_c[] = "$Id: stack.c,v 1.13 1999-01-22 23:09:06 ghudson Exp $";
#endif
+#include <string.h>
#include <sys/types.h>
#include <stdio.h>
#include <errno.h>