public inbox for linux-tegra@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cbootimage: allow working with paths that contain '@'
@ 2016-03-12 11:18 Patrick Georgi
       [not found] ` <1457781529-20302-1-git-send-email-patrick-WyKcznhUmzJg9hUCZPvPmw@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Patrick Georgi @ 2016-03-12 11:18 UTC (permalink / raw)
  To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
  Cc: pgeorgi-hpIqsD4AKlfQT0dZR+AlfA, Patrick Georgi

Signed-off-by: Patrick Georgi <patrick-WyKcznhUmzJg9hUCZPvPmw@public.gmane.org>
---
 src/parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/parse.c b/src/parse.c
index 6f37dad..39d746c 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -249,7 +249,7 @@ parse_filename(char *str, char *name, int chars_remaining)
 	 * Check if the filename buffer is out of space, preserving one
 	 * character to null terminate the string.
 	 */
-	while (isalnum(*str) || strchr("\\/~_-+:.", *str)) {
+	while (isalnum(*str) || strchr("\\/~_-+:.@", *str)) {
 
 		chars_remaining--;
 
-- 
2.6.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-14 16:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-12 11:18 [PATCH] cbootimage: allow working with paths that contain '@' Patrick Georgi
     [not found] ` <1457781529-20302-1-git-send-email-patrick-WyKcznhUmzJg9hUCZPvPmw@public.gmane.org>
2016-03-14 16:14   ` Stephen Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox