Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=15ca36fb994923b454df44e5d7aa14b84ce5aee4
Commit:     15ca36fb994923b454df44e5d7aa14b84ce5aee4
Parent:     d9727bb2d516bc16bafee4216eec91cd2be5f30a
Author:     David S. Miller <[EMAIL PROTECTED]>
AuthorDate: Thu Dec 27 16:43:38 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:00:08 2008 -0800

    [LIBERTAS]: Remove last stray user of MAC_FMT.
    
    Reported by Denis V. Lunev
    
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/debugfs.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/libertas/debugfs.c 
b/drivers/net/wireless/libertas/debugfs.c
index 0bda0b5..95dd4ed 100644
--- a/drivers/net/wireless/libertas/debugfs.c
+++ b/drivers/net/wireless/libertas/debugfs.c
@@ -243,7 +243,8 @@ static void libertas_parse_bssid(char *buf, size_t count,
        if (!hold)
                return;
        hold += 6;
-       sscanf(hold, MAC_FMT, mac, mac+1, mac+2, mac+3, mac+4, mac+5);
+       sscanf(hold, "%02x:%02x:%02x:%02x:%02x:%02x",
+              mac, mac+1, mac+2, mac+3, mac+4, mac+5);
        memcpy(scan_cfg->bssid, mac, ETH_ALEN);
 }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to