Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 203777 | Differences between
and this patch

Collapse All | Expand All

(-)cd-info.c (-3 / +3 lines)
Lines 1-7 Link Here
1
/*
1
/*
2
    $Id: cd-info.c,v 1.150 2007/12/30 15:09:00 rocky Exp $
2
    $Id: cd-info.c,v 1.151 2008/01/03 14:39:29 rocky Exp $
3
3
4
    Copyright (C) 2003, 2004, 2005, 2007 Rocky Bernstein <rocky@gnu.org>
4
    Copyright (C) 2003, 2004, 2005, 2007, 2008 Rocky Bernstein <rocky@gnu.org>
5
    Copyright (C) 1996, 1997, 1998  Gerd Knorr <kraxel@bytesex.org>
5
    Copyright (C) 1996, 1997, 1998  Gerd Knorr <kraxel@bytesex.org>
6
         and Heiko Eißfeldt <heiko@hexco.de>
6
         and Heiko Eißfeldt <heiko@hexco.de>
7
7
Lines 539-545 Link Here
539
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
539
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
540
      char *psz_iso_name = p_statbuf->filename;
540
      char *psz_iso_name = p_statbuf->filename;
541
      char _fullname[4096] = { 0, };
541
      char _fullname[4096] = { 0, };
542
      char *translated_name = (char *) alloca(strlen(psz_iso_name+1));
542
      char *translated_name = (char *) alloca(strlen(psz_iso_name)+1);
543
543
544
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
544
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
545
	iso9660_name_translate_ext(psz_iso_name, translated_name, 
545
	iso9660_name_translate_ext(psz_iso_name, translated_name, 
(-)iso-info.c (-2 / +2 lines)
Lines 1-5 Link Here
1
/*
1
/*
2
    $Id: iso-info.c,v 1.36 2007/12/30 15:09:00 rocky Exp $
2
    $Id: iso-info.c,v 1.37 2008/01/03 14:39:29 rocky Exp $
3
3
4
    Copyright (C) 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com>
4
    Copyright (C) 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com>
5
5
Lines 224-230 Link Here
224
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
224
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
225
      char *psz_iso_name = p_statbuf->filename;
225
      char *psz_iso_name = p_statbuf->filename;
226
      char _fullname[4096] = { 0, };
226
      char _fullname[4096] = { 0, };
227
      char *translated_name = (char *) alloca(strlen(psz_iso_name+1));
227
      char *translated_name = (char *) alloca(strlen(psz_iso_name)+1);
228
228
229
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
229
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
230
	iso9660_name_translate_ext(psz_iso_name, translated_name, 
230
	iso9660_name_translate_ext(psz_iso_name, translated_name, 

Return to bug 203777