Replace index() with strchr(). Bug #313563.

merge-requests/1/head
Rolf Bensch 2012-03-06 11:10:44 +01:00
rodzic d897992226
commit 66fb96d9ad
2 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -1,3 +1,6 @@
2012-03-06 Rolf Bensch <rolf at bensch hyphen online dot de>
* backend/pixma_bjnp.c: Replace index() with strchr(). Bug #313563.
2012-02-29 Rolf Bensch <rolf at bensch hyphen online dot de>
* backend/pixma.[ch], backend/pixma_common.c,
backend/pixma_sane_options.[ch]: New device specific option

Wyświetl plik

@ -196,7 +196,7 @@ truncate_hostname (char *hostname, char *short_hostname)
{
/* this is a hostname, not an ip-address, so remove domain part of the name */
if ((dot = index (short_hostname, '.')) != NULL)
if ((dot = strchr (short_hostname, '.')) != NULL)
*dot = '\0';
}
return short_hostname;