Use Gnulib's quote function in ftp-opie.c.

This commit is contained in:
Steven Schubiger 2008-04-16 12:01:00 +02:00
parent 0edf98a6d9
commit bb1813ebb1
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
* connect.c: Likewise.
* convert.c: Likewise.
* cookies.c: Likewise.
* ftp-opie.c: Likewise.
2008-04-16 Steven Schubiger <schubiger@gmail.com>

View File

@ -2157,7 +2157,7 @@ btoe (char *store, const unsigned char *c)
memcpy (store, &Wp[extract (cp, 55, 11)][0], 4);
store[4] = '\0'; /* make sure the string is terminated */
DEBUGP (("wrote `%s' to STORE\n", store_beg));
DEBUGP (("wrote %s to STORE\n", quote (store_beg)));
return store_beg;
}