[Xfce4-commits] r25265 - squeeze/trunk/libsqueeze
Stephan Arts
stephan at xfce.org
Fri Mar 23 11:42:50 CET 2007
Author: stephan
Date: 2007-03-23 10:42:49 +0000 (Fri, 23 Mar 2007)
New Revision: 25265
Modified:
squeeze/trunk/libsqueeze/command-builder-zip.c
Log:
little hack to make it refresh zip too
Modified: squeeze/trunk/libsqueeze/command-builder-zip.c
===================================================================
--- squeeze/trunk/libsqueeze/command-builder-zip.c 2007-03-23 10:04:17 UTC (rev 25264)
+++ squeeze/trunk/libsqueeze/command-builder-zip.c 2007-03-23 10:42:49 UTC (rev 25265)
@@ -204,7 +204,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE)/*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_length*/
+ if(!TRUE)/*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_length*/
{
line[n]='\0';
length = g_ascii_strtoull(line + a, NULL, 0);
@@ -217,7 +217,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_method*/
+ if(!TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_method*/
{
line[n] = '\0';
props[i] = line + a;
@@ -229,7 +229,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_size*/
+ if(!TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_size*/
{
line[n]='\0';
size = g_ascii_strtoull(line + a, NULL, 0);
@@ -242,7 +242,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_ratio*/
+ if(!TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_ratio*/
{
line[n] = '\0';
props[i] = line + a;
@@ -254,7 +254,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_date*/
+ if(!TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_date*/
{
line[n] = '\0';
props[i] = line + a;
@@ -266,7 +266,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE) /* LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_time */
+ if(!TRUE) /* LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_time */
{
line[n] = '\0';
props[i] = line + a;
@@ -278,7 +278,7 @@
a = n;
for(; n < linesize && line[n] != ' '; n++);
- if(TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_crc_32 */
+ if(!TRUE) /*LSQ_ARCHIVE_SUPPORT_ZIP(support)->_view_crc_32 */
{
line[n] = '\0';
props[i] = line + a;
More information about the Xfce4-commits
mailing list