diff options
author | hasso <hasso> | 2004-10-11 12:53:17 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-11 12:53:17 +0000 |
commit | 993ae793113345587d2ced43b9f775b2bfef9ecf (patch) | |
tree | 700e279bb57a99b537f030f1a6bb0237540316b6 /lib/sockunion.c | |
parent | aa90e847f1a2412a74ae37ed29edb03e0ce50cc5 (diff) | |
download | quagga-993ae793113345587d2ced43b9f775b2bfef9ecf.tar.bz2 quagga-993ae793113345587d2ced43b9f775b2bfef9ecf.tar.xz |
Some more const string fixes.
Diffstat (limited to 'lib/sockunion.c')
-rw-r--r-- | lib/sockunion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sockunion.c b/lib/sockunion.c index 587b324a..eb29ced2 100644 --- a/lib/sockunion.c +++ b/lib/sockunion.c @@ -133,7 +133,7 @@ inet_sutop (union sockunion *su, char *str) } int -str2sockunion (char *str, union sockunion *su) +str2sockunion (const char *str, union sockunion *su) { int ret; |