Changes by: flatcap
Update of /cvsroot/linux-ntfs/linux-ntfs/ntfstools
In directory usw-pr-cvs1:/tmp/cvs-serv19400
Modified Files:
ntfsundelete.c
Log Message:
cut'n'paste classic
Index: ntfsundelete.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/ntfstools/ntfsundelete.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -U2 -r1.15 -r1.16
--- ntfsundelete.c 17 Jul 2002 10:51:15 -0000 1.15
+++ ntfsundelete.c 17 Jul 2002 10:54:53 -0000 1.16
@@ -263,13 +263,13 @@
* 0 Error, the string was malformed
*/
-int parse_time (const char *string, time_t *since)
+int parse_time (const char *value, time_t *since)
{
time_t result, now;
char *suffix = NULL;
- if (!string || !since)
+ if (!value || !since)
return -1;
- Dprintf ("parsing time '%s' ago\n", string);
+ Dprintf ("parsing time '%s' ago\n", value);
result = strtoll (value, &suffix, 10);
|