Skip to content

Commit

Permalink
Fix build warning in locarchive.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddhesh Poyarekar committed Nov 20, 2013
1 parent 0417b20 commit 4712799
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
2013-11-20 Siddhesh Poyarekar <siddhesh@redhat.com>

* locale/programs/locarchive.c (open_archive): Add const
qualifier to ARCHIVEFNAME and copy default fname to
DEFAULT_FNAME.

[BZ #15601]
* libio/tst-widetext.input: Rename Oriya to Odia.
* locale/iso-639.def: Likewise.
Expand Down
6 changes: 3 additions & 3 deletions locale/programs/locarchive.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,15 +564,15 @@ open_archive (struct locarhandle *ah, bool readonly)
int retry = 0;
size_t prefix_len = output_prefix ? strlen (output_prefix) : 0;
char default_fname[prefix_len + sizeof (ARCHIVE_NAME)];
char *archivefname = ah->fname;
const char *archivefname = ah->fname;

/* If ah has a non-NULL fname open that otherwise open the default. */
if (archivefname == NULL)
{
archivefname = default_fname;
if (output_prefix)
memcpy (archivefname, output_prefix, prefix_len);
strcpy (archivefname + prefix_len, ARCHIVE_NAME);
memcpy (default_fname, output_prefix, prefix_len);
strcpy (default_fname + prefix_len, ARCHIVE_NAME);
}

while (1)
Expand Down

0 comments on commit 4712799

Please sign in to comment.